- #1
Mr Davis 97
- 1,462
- 44
I am a little confused about how we prove that a solution for a recurrence relation is correct. For example, say that I have the recurrence relation ##H_n = 2H_{n-1} +1##. Using an iterative process, we guess that the solution is ##2^n - 1##. Now, to prove that this is correct, it seems that it would be sufficient to just plug it into the original recurrence relation to see if everything checks out. However I have seen some sources that claim we also need to use induction on ##H_n = 2^n - 1## to verify that it is true. Why do I have to do both to prove that it is true? Why can't I just do the former or just do the latter?