Strong Induction
Another kind of proof-by-induction is the proof-by-strong-induction. This is a proof structured according to the axiom of strong induction:
Axiom: Strong Induction. Let be any predicate. If is true, if are all true, then More formally:
The only difference between ordinary induction and strong induction is that with ordinary induction, we are attempting to prove that In strong induction, we are trying to prove that However, he technique is no different. We are still trying to prove an implication, so we assume that is true, is true, is true, all the way to It is called strong induction because we are allowed to assume much more that just If we look closely, we wonder if a proof-by-induction can be done with a proof-by-strong-induction. This is in fact the case. Any proof-by-induction can be rewritten as a proof-by-strong induction.
Fair question: Why not use proof-by-strong-induction all the time then? Because some problems are much easier to solve with an ordinary proof-by-induction rather than with a proof-by-strong-induction.
To explore how a proof-by-strong-induction looks like, we consider another game, stack split. We start with a stack of 8 blocks. In the first move, the player must divide the stack into 2 substacks. If the player divides the stack into 3 and 5, the player receives 15 points: In the next move, the player divides either substack into 2 substacks. For example, if the player divides the stack of 5 into 4 and 1, the player receives 4 points. The player must keep dividing the substacks until they have 8 stacks of height 1. The last move is dividing a 2-block substack into 2 substacks of 1 block, returning the player 1 point. The player's total score is the sum of all points received on each move. The goal: Obtain the most number of points.
It turns out that no matter how we divide the stacks, the final score will always be 28. Let's state the proposition:
Conjecture. All strategies for the block game produce the same score,
Following this conjecture, we saw that So, let's begin the proof. First, we state the inductive hypothesis: "All strategies produce the same score " Second, we verify that the base case is correct. At the score is 0, since we never made a move. Thus, Now we make the inductive step: Assume is true to prove
Now, given blocks, we can split the stack in a stack of blocks or a stack of blocks, where
The resulting score is If we split the block of blocks, then we have points.Thus, the resulting score from spliting blocks is And if we split the stack, we get Thus, our total score for the game is:
Recall what are trying to prove: The total score just depends on not In other words:
It seems like we're stuck. In every term, there is a Whenever we're stuck with inductive proof like this, we want to make a stronger inductive hypothesis. To make the hypothesis stronger, we want represent as a formula. This appears to be summing a pattern of numbers, and those numbers are formed by divisions. But, the formula should work for every possible way we could divide. The simplest way to divide would be to just take one stack off at a time, 1 and 7, 1 and 6, 1 and 5, 1 and 4, 1 and 3, 1 and 2, 1 and 1. The resulting score is the sum of and so on. More generally, given numbers in order, this just the sum of numbers:
Checking this formula against the base case, it works: So, let's try it on our total score thus far:
It's better than magic. The formula for is This establishes the stronger hypothesis, thereby proving that all strategies for an game result in the same score,