The domino principle, made rigorous
You want to prove is true for every natural number (or ). Induction says you only need two things:
- Base case. Prove — the first domino falls.
- Inductive step. Prove that for every , if holds then holds — each domino knocks over the next.
If you establish both, the principle of mathematical induction guarantees holds for all . Why? Because is true (base case), and the step carries it forward: , reaching every natural number in finitely many hops. The reasoning bottoms out in the successor structure of from the very first lesson — every natural is wearing finitely many 's, so induction catches every one of them.
The two parts are a package deal. The base case alone proves one thing, exactly one thing. The step alone proves "if any domino falls, the rest do" — useless if none of them falls. Together they're infinity-conquering. Apart they're nothing. Worse than nothing, actually, because they look plausible.
Anatomy of the inductive step: the hypothesis is free loot
The inductive step is where everyone freezes, so slow down. You are proving an implication: "if , then ." By everything you learned in Direct Proof, you prove an implication by assuming the hypothesis — here, assume is true. That assumption has a name: the inductive hypothesis (IH).
Students panic: "isn't assuming assuming what I'm trying to prove?!" No, and this confusion will haunt you if you don't kill it right now. You're not assuming , the thing you actually want. You're assuming — one specific, earlier domino — and using it to reach the next one. The IH is free loot: a gift you get to spend, handed to you by the logic of implication. The whole art of the inductive step is finding where to spend it — algebraically connecting back to so the IH can do its work.
Worked: 1 + 2 + ⋯ + n = n(n+1)/2
Claim. For all : .
Proof (by induction on ).
Base case (): The left side is . The right side is . Equal. ✓
Inductive step: Fix and assume the IH: . We must show , i.e. .
Start from the left side of and split off the last term to expose the IH: That substitution — replacing the first terms with — is exactly where we spent the free loot. Now just algebra: That's precisely the right side of . So . By induction, the formula holds for all .
The Gauss story, for contrast. Legend has it a child Carl Friedrich Gauss, told to add through , instantly answered . His teacher probably wanted to die. He paired the terms: , , …, pairs each summing to , giving . Same formula, totally different proof — pairing gives insight into why; induction gives a guarantee that it holds for every . Keep both in your kit: insight finds the formula, induction certifies it.
Worked: the sum of the first n odd numbers is n²
Claim. For all : .
Proof (by induction). Base (): left side , right side . ✓
Step: Assume the IH: . The -th odd number is . So That's . By induction, the sum of the first odd numbers is for all .
Worked: a divisibility example — 6 divides n³ − n
Claim. For all : .
Proof (by induction). Base (): , and . ✓
Step: Assume the IH: , i.e. for some integer . Consider and expand: The first chunk is by the IH. For the rest, , and is a product of two consecutive integers, hence even — so is divisible by . Thus for some integer , which is divisible by . So , and by induction for all .
The pattern in every inductive step is the same: carve open until the piece appears, slot in the IH, clean up. That is the entire goddamn technique. There is no secret beyond that.
Where induction fails: skip the base case and lose your mind
Both parts are mandatory, and skipping the base case produces disasters that are hilarious only if they're not yours. Behold the "all horses are the same color" non-theorem — a specimen I keep preserved in the lab as a warning:
Claim: in any group of horses, all are the same color. "Step": given horses, remove one — by IH the remaining match; put it back, remove a different one — those match too; overlap them and all match.
The inductive step looks fine for large — but it secretly fails at the very first transition, : two horses, remove one (the other is "all the same color," trivially), remove the other — but the two groups of one don't overlap, so nothing forces the two horses to match. The chain never gets off the ground. A broken or missing base case means dominoes that never start falling — and you can "prove" any insane damn thing. Always nail the base case. This is not optional. This is not a style choice. Now go conquer some infinities.