When one domino back isn't enough
Ordinary induction hands you a single piece of free loot in the step: the immediately preceding case . Usually that's plenty — sums and divisibility formulas connect neatly to . But sometimes the natural way to break down reaches back further than one step, to cases you can't predict in advance.
Strong induction fixes this by handing you all the previous loot:
- Base case(s). Prove for the starting value(s).
- Strong inductive step. Prove that for every , if all hold, then holds.
The only difference from ordinary induction is the strong inductive hypothesis: instead of assuming just , you assume every case from the base up through . More free loot, same domino logic — if all earlier dominoes have fallen, the next one falls too, and the chain still reaches every natural number.
And here's the reassuring part: strong induction is not a more powerful axiom. Anything provable by strong induction is provable by ordinary induction and vice versa — they're logically equivalent. The Federation of Boring Textbook Authors loves to present them as separate, mysterious techniques; they're the same damn principle in two outfits. "Strong" refers only to the convenience of the hypothesis, not to extra deductive muscle. Use it whenever splitting lands you on cases smaller than .
Worked: every integer ≥ 2 is a product of primes
This is the existence half of the Fundamental Theorem of Arithmetic — that every integer factors into primes — and it's the poster child for strong induction, because factoring a number splits it into two smaller numbers, not into "." Ordinary induction would be completely helpless here, which is why I need you to understand both tools.
Theorem. Every integer is a product of one or more primes.
Proof (by strong induction on ).
Base case (): is prime, so it's a product of a single prime (itself). ✓
Strong inductive step: Let , and assume the strong IH: every integer with is a product of primes. We must show is a product of primes. Two cases:
- is prime. Then it's a product of one prime (itself). Done.
- is composite. By definition of composite, for some integers with and (both factors are at least and strictly less than ). Now spend the strong IH on both and : since each lies in the range , each is a product of primes. Multiplying those two prime factorizations together expresses as a product of primes.
Either way, is a product of primes. By strong induction, every integer is a product of primes.
Why ordinary induction can't do this cleanly: when you factor , the factors and could be anywhere in — not necessarily itself. You need the factorizations of and to be already available, and only the strong hypothesis ("everything up to works") guarantees that. This is exactly the situation strong induction was built for. (Recall: in proof-by-contradiction we used the fact that every integer has a prime factor, without proving it, to finish Euclid's theorem. We're now closing that debt. I don't leave debts open.)
The Well-Ordering Principle
Now a statement that looks almost too obvious to bother with, yet powers some of the cleanest proofs you'll ever write.
Well-Ordering Principle (WOP). Every nonempty subset of has a least element.
That's it. Any nonempty collection of natural numbers, however weird and pathological, contains a smallest member. ("Nonempty" is essential — the empty set has no least element, having no elements at all, a fact that will bite you if you're sloppy.) This fails for other number systems: the positive rationals have no least element (whatever tiny positive fraction you name, half of it is smaller, and so on forever), and so do the integers as a whole (no least integer). WOP is special to , riding on the successor structure from the very first lesson — you can't descend forever through the naturals, because there's a hard floor at . The reactor has a floor.
WOP is equivalent to induction. They prove each other; assuming one, you can derive the other. So you're free to use whichever makes a given proof shortest — they're the same principle in two outfits, and I want you comfortable in both.
Using WOP: the smallest counterexample
WOP unlocks a devastating proof style — really a flavor of proof by contradiction (from two lessons ago) — called the minimal criminal or smallest counterexample argument. The shape:
- Suppose, for contradiction, the claim is false for some naturals. Then the set of counterexamples (the where fails) is nonempty.
- By WOP, has a least element — call it , the smallest criminal: the smallest for which fails.
- Derive a contradiction by producing an even smaller counterexample, or by showing can't actually fail . Since was the smallest criminal, an even smaller one is impossible — contradiction.
- Therefore is empty: there are no counterexamples, so holds for all .
The genius is step 3: by grabbing the minimal offender, you give yourself a powerful extra fact — everything below obeys the rule — and you weaponize it to break itself. It's strong induction wearing a trench coat, and it is deeply satisfying to watch. Let's see it bite.
Example claim. Every integer has a prime divisor.
Proof (smallest counterexample via WOP). Suppose not. Then the set of integers with no prime divisor is nonempty, so by WOP it has a least element . Now has no prime divisor — in particular is not prime (a prime divides itself), so is composite: with . Since and was the smallest criminal, is not a counterexample, so has a prime divisor . But and , so (divisibility is transitive — from Direct Proof). So has a prime divisor — contradicting . Hence is empty, and every integer has a prime divisor.
That's the fact Euclid borrowed in the previous lesson. Notice how WOP, strong induction, and contradiction are really the same machine: "the smallest place it could go wrong can't actually go wrong, so nowhere does." Three names, one weapon — the same weapon that runs through every floor of this building. Now go wield it.