Finding the right hypothesis
In many cases, the induction follows immediately from the statement we want to prove, but often it helps to make the induction hypothesis stronger than the targeted statement. This might sound counter-intuitive, so let us try to absorb this idea via a few examples.
The sum of the first (positive) odd numbers is a perfect square, i.e., for some integer .
You may want to use this statement itself as an induction hypothesis, but notice that you will run into difficulty (please try!). Instead, the right hypothesis to use is the following: When , this statement is obvious. Assume that holds. To prove , notice that . The first term is by induction hypothesis, so we have which concludes the proof of .
Notice that in the above example, the induction hypothesis postulates an explicit form of the sum, while we are only aiming to prove that it is a perfect square. This is the part that apparently is counter-intuitive: Why would it be easier to prove a stronger statement? Before further discussions, let us look at another example.
.
Students might be tempted to, again, try to use the statement itself as an induction hypothesis (and will realize that induction does not work). Instead, a stronger induction hypothesis would work: Notice that is trivial. Now assume that holds. To prove , we can write . By induction hypothesis, the first term is at most , so we have
Again, the same phenomenon happens. We are trying to prove a stronger statement but it ends up being easier to prove. If we think carefully about what happened, it is not that surprising. A weaker hypothesis is too general and does not capture the true structure of the problem, while a stronger one does. Therefore, coming up with the right hypothesis requires a deeper understanding about the problem.
Consider Fibonacci sequence and for . Prove that every third Fibonacci number is even (e.g., and are even).