3.4 Mathematical and Strong Induction
The previous sections proved universal claims by choosing an arbitrary object. Some claims are indexed by consecutive integers:
and one case naturally supports later cases. Mathematical induction turns that dependency into a proof method.
Induction does not mean checking many examples. It proves a starting case and a general transmission rule. Together they cover infinitely many cases.
The two parts of mathematical induction
To prove for every integer , ordinary induction requires:
1. Base case: prove .
2. Inductive step: for an arbitrary , assume and prove .
The temporary assumption is the inductive hypothesis. We do not assume the entire theorem. We assume one arbitrary case so we can prove that truth passes to its next case.
The logical pattern is
Why does this reach every case?
- the base establishes ;
- the step gives ;
- applying the step again gives ;
- the chain continues through every integer at or above .
The domino metaphor is useful only when both parts are remembered. Standing dominoes do not fall without a first push, and pushing one domino does not reach the rest if the spacing rule has a gap.
Change the induction stride. The rule does not connect odd and even indices. A single base case reaches only one parity chain; adding a second base case can cover the other. The simulation exposes exactly which claims the stated base and step actually prove.
A complete induction proof of a summation formula
We will prove that for every positive integer ,
The dots mean that all consecutive integers from through are added.
Define the proposition
Base case
For , the left side is , and the right side is
Therefore is true.
Inductive hypothesis
Let be arbitrary. Assume :
This assumption is a tool for proving the next case. It must be written explicitly so we know exactly what may be substituted.
Inductive step
The -case adds one new term:
Use the inductive hypothesis to replace the first block:
This final expression is exactly the formula with :
Thus follows from .
Conclusion
The base case is true, and holds for every . Therefore, by mathematical induction,
for every positive integer .
Common induction failures
Induction proofs often fail in recognizable ways:
| Failure | Why it fails |
|---|---|
| Checking only | finitely many examples do not cover all |
| Proving the step but omitting the base | the implication chain has no verified starting point |
| Assuming in order to prove | this assumes the desired result rather than deriving it |
| Ending with an expression not matching | the inductive step has not reached its target |
| Using a step of size with one base | only one parity chain may be covered |
Before finishing, point to the exact line where the inductive hypothesis is used. If it is never used, the proof may be a valid direct argument, or it may be missing the essential connection.
Strong induction may use all earlier cases
In strong induction, the inductive hypothesis assumes every case from the starting point through :
and uses them to prove .
Ordinary induction assumes alone. Strong induction gives access to a whole verified history. The two methods are logically equivalent in proving power, but one may match a problem’s dependency structure more naturally.
Strong induction is useful when the next object is built from a smaller object that is not necessarily the immediate predecessor. Examples later in the course include recursive algorithms, factorizations, and tree structures.
Worked strong-induction proof with postage
Theorem. Every integer postage amount can be formed using only -unit and -unit stamps.
First verify four consecutive base cases:
Now let and assume every amount from through can be formed. We must form .
Since
the amount lies among the earlier cases covered by the strong inductive hypothesis. Form using - and -unit stamps, then add one more -unit stamp. The result has value
Therefore can also be formed. By strong induction, every amount is possible.
Why were four base cases needed? The step reaches back by . Consecutive bases start all four residue chains; one base would leave gaps.
Change stamp denominations and the claimed starting amount. The map distinguishes verified reachability from a wishful statement that “large values should work.” For and , inspect the consecutive base window and then trace each later amount to an earlier reachable amount.
Chapter bridge
Chapter 3 assembled a proof toolkit: precise definitions, counterexamples, direct proof, cases, contraposition, contradiction, witnesses, uniqueness, and induction. Chapter 4 will use these methods to study functions and relations. The definitions will become richer, but the proof questions remain familiar: What must be shown, what evidence is sufficient, and which strategy makes the logical dependency clearest?