Блог пользователя THERE_IS_NO_RETURN

Автор THERE_IS_NO_RETURN, история, 2 года назад, По-английски

hey every one i see alot of problems that its solutions (in editorials) depends on making an assumption then it follow it untill it reach to the solution this is very counter intutive to me what can i do to be able to be better in this kind of thinking?

  • Проголосовать: нравится
  • -5
  • Проголосовать: не нравится

»
2 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

This is common. You can study more maths and read some books about maths such as Concrete Mathematics and so on...

»
2 года назад, # |
  Проголосовать: нравится +21 Проголосовать: не нравится
  1. Set a base case: Solve your first induction problem. Perhaps prove the formula for the sum of numbers from $$$1$$$ to $$$n$$$.
  2. Create your induction hypothesis: Assume that you've solved $$$k$$$ problems so far.
  3. Induct: Solve your $$$(k+1)^\text{th}$$$ problem.

Therefore you can solve as many problems as you want!

»
2 года назад, # |
Rev. 2   Проголосовать: нравится +11 Проголосовать: не нравится

To improve in some topic you shouldn't create new accounts and should start practicing.