Parent: Strong induction . This child page is a drill hall . We build one table of every kind of case strong induction can throw at you, then work each cell to the ground. If you have not met the domino picture or the "assume all below, prove the next" idea yet, read the parent first — here we assume you know what strong induction is and we grind on how to actually do it.
Definition Two symbols we will reuse everywhere
n 0 is the starting index of the induction — the smallest value of n for which the claim P ( n ) is meant to hold (e.g. n 0 = 1 for a sum formula, n 0 = 2 for "has a prime divisor", n 0 = 12 for the stamps). It is the floor of the staircase.
d is the largest reach-back of the inductive step: if proving P ( n ) ever refers to P ( n − d ) (and never to anything further below), then d is that biggest jump. For a step using only P ( n − 1 ) , d = 1 ; for one using P ( n − 1 ) and P ( n − 2 ) , d = 2 .
Before any example, let us list every class of case a strong-induction problem can belong to. Each row is a "cell." Every worked example below is tagged with the cell it fills, so by the end no scenario is left unshown.
Cell
What makes it this case
How far the step reaches back
Base cases needed
A — single reach-back
step uses only P ( n − 1 )
1 step
1
B — fixed multi reach-back
step uses P ( n − 1 ) and P ( n − 2 )
2 steps
2
C — uncontrolled reach-back
step splits n = ab , a , b unknown but < n
anywhere below
1 (smallest)
D — jump-by-d reach-back
step uses P ( n − d ) for fixed d > 1
d steps
d (fill the base zone)
E — degenerate / boundary
smallest inputs, or the step would point below the floor
—
must plug the gap
F — limiting / growth behaviour
what the bound does as n → ∞
—
—
G — real-world word problem
phrased in coins/stamps/tiles
depends
depends
H — exam twist
a "too few base cases" trap or a false claim
—
—
Intuition Read the matrix like a checklist
The only thing that changes between rows is: how far back does the inductive step point, and does the base zone cover everywhere it can land? Every mistake in strong induction is a mismatch between those two. Keep that single question in your head for every example.
Now, one guiding rule that resolves all of them (recall n 0 = starting index, d = largest reach-back, both defined just above):
Claim P ( n ) : for all n ≥ 1 , the sum 1 + 2 + ⋯ + n = 2 n ( n + 1 ) . (Here the starting index n 0 = 1 .)
Forecast: guess — does this need one base case or more? (Only P ( n − 1 ) is used, so d = 1 … one base.)
Base P ( 1 ) : left side = 1 , right side = 2 1 ⋅ 2 = 1 . ✅
Why this step? n = 1 is the floor n 0 ; nothing smaller exists, so we verify it directly.
Strong step: assume P ( k ) for all 1 ≤ k < n . We only need k = n − 1 :
1 + 2 + ⋯ + n = = 2 ( n − 1 ) n by hypothesis ( 1 + ⋯ + ( n − 1 )) + n .
Why this step? Peel off the last term so the remaining sum is a smaller case the hypothesis covers.
Simplify:
2 ( n − 1 ) n + n = 2 ( n − 1 ) n + 2 n = 2 n 2 + n = 2 n ( n + 1 ) .
Why this step? Common denominator 2 , then factor n — this must land on the target formula.
Verify: n = 4 : 1 + 2 + 3 + 4 = 10 and 2 4 ⋅ 5 = 10 . ✅ Here strong induction is overkill — ordinary induction would do — which is exactly the point of Cell A: single reach-back never needs the full history.
Claim: a 1 = 2 , a 2 = 5 , a n = 5 a n − 1 − 6 a n − 2 for n ≥ 3 . Find and prove a closed form for a n .
Forecast: before proving, guess the closed form's shape . A two-term linear recurrence is built from two "growth bases," so expect a n = A ⋅ r 1 n + B ⋅ r 2 n for two numbers r 1 , r 2 we must still find. Guess how many base cases pin A and B : two.
Intuition What the figure shows
The teal dots are the actual sequence 2 , 5 , 13 , 35 , … plotted on a log scale (so exponential growth looks like a straight-ish rise). Into the point at n = 6 come two coloured arrows — an orange one from n − 1 and a plum one from n − 2 . That pair of arrows is the whole personality of Cell B: the value at n is unreachable from a single predecessor; you genuinely need both, so the strong hypothesis must hold at n − 1 and n − 2 .
Find the growth bases: the recurrence a n = 5 a n − 1 − 6 a n − 2 has characteristic equation x 2 = 5 x − 6 , i.e. x 2 − 5 x + 6 = 0 , with roots x = 2 and x = 3 . So a n = A ⋅ 2 n + B ⋅ 3 n .
Why this step? A two-term linear recurrence is solved by its two roots; the general solution is their weighted sum.
Fit the two bases: A ⋅ 2 + B ⋅ 3 = 2 and A ⋅ 4 + B ⋅ 9 = 5 . From the first, 2 A = 2 − 3 B ⇒ A = 1 − 2 3 B ; substitute into the second: 4 ( 1 − 2 3 B ) + 9 B = 5 ⇒ 4 + 3 B = 5 ⇒ B = 3 1 , A = 2 1 .
a n = 2 1 ⋅ 2 n + 3 1 ⋅ 3 n = 2 n − 1 + 3 n − 1 .
Why this step? The two base values pin the two unknowns — exactly why Cell B needs two base cases.
Strong step (proving the closed form): assume a k = 2 k − 1 + 3 k − 1 for all k < n , in particular k = n − 1 , n − 2 . Then
a n = 5 ( 2 n − 2 + 3 n − 2 ) − 6 ( 2 n − 3 + 3 n − 3 ) .
Group powers of 2 : 5 ⋅ 2 n − 2 − 6 ⋅ 2 n − 3 = 2 n − 3 ( 10 − 6 ) = 4 ⋅ 2 n − 3 = 2 n − 1 .
Group powers of 3 : 5 ⋅ 3 n − 2 − 6 ⋅ 3 n − 3 = 3 n − 3 ( 15 − 6 ) = 9 ⋅ 3 n − 3 = 3 n − 1 .
So a n = 2 n − 1 + 3 n − 1 . ✅
Why this step? Substitute both predecessors — a single one is useless here, which is the signature of Cell B (the two arrows in the figure).
Verify: a 1 = 2 0 + 3 0 = 2 ✅, a 2 = 2 1 + 3 1 = 5 ✅, a 3 = 5 ⋅ 5 − 6 ⋅ 2 = 13 = 2 2 + 3 2 = 4 + 9 ✅.
Common mistake Skipping the base check
Always plug n = n 0 into a guessed closed form before believing it. If you never verify the base cases, a wrong guess can sail through the algebra and you "prove" a falsehood — that trap is Example 8.
Claim P ( n ) : every integer n ≥ 2 has a prime divisor. (Starting index n 0 = 2 .)
Forecast: how many base cases? The split n = ab can land anywhere below n — so we cannot predict n − 1 vs n − 7 . Guess: one base (n = 2 ), full history hypothesis.
Base P ( 2 ) : 2 is prime, so it divides itself — a prime divisor exists. ✅
Why this step? Smallest possible input n 0 = 2 ; there is no room to factor.
Strong step: assume every k with 2 ≤ k < n has a prime divisor. Take n .
If n is prime: n is its own prime divisor. Done.
If n is composite: n = ab with 2 ≤ a < n . By the strong hypothesis a has a prime divisor p , and p ∣ a ∣ n , so p ∣ n .
Why this step? We do not know which smaller number a is — that is exactly why ordinary induction (only n − 1 ) cannot help. Cell C demands the whole history.
Verify: n = 91 = 7 ⋅ 13 ; a = 7 is < 91 , its prime divisor 7 divides 91 . ✅ We never needed P ( 90 ) .
Claim: every amount n ≥ 12 cents is payable with 4 - and 5 -cent stamps. (Starting index n 0 = 12 .)
Forecast: the step will subtract one stamp — the smallest useful jump is 4 . So Cell D with d = 4 ⇒ four base cases.
Base zone n = 12 , 13 , 14 , 15 :
12 = 4 + 4 + 4 , 13 = 4 + 4 + 5 , 14 = 4 + 5 + 5 , 15 = 5 + 5 + 5. ✅
Why four? By the base-zone rule with n 0 = 12 , d = 4 we need n 0 , … , n 0 + 3 = 12 , 13 , 14 , 15 .
Strong step for n ≥ 16 : assume all of [ 12 , n ) payable. Since n ≥ 16 , we have n − 4 ≥ 12 , so n − 4 is payable; add one 4 -cent stamp.
Why this step? The reach-back is a fixed 4 , and the base zone is exactly 4 wide, so n − 4 always lands inside proven territory.
Verify: n = 23 : subtract one 4 -cent stamp to get 19 ; 19 = 4 + 5 + 5 + 5 (one 4 , three 5 s). Adding the removed 4 : 23 = 4 + 4 + 5 + 5 + 5 , i.e. two 4 -cent and three 5 -cent stamps, and 2 ⋅ 4 + 3 ⋅ 5 = 8 + 15 = 23 . ✅
Claim: the Fibonacci numbers F 1 = 1 , F 2 = 1 , F n = F n − 1 + F n − 2 satisfy F n < 2 n for all n ≥ 1 . (Starting index n 0 = 1 .)
Forecast: the step reaches back two (d = 2 , Cell B pattern) — but watch the boundary : at n = 2 the step would want F 0 , which is below the floor n 0 = 1 . Cell E is about that gap. Guess: two base cases patch it.
Intuition What the figure shows
Three curves on a log scale: the orange line 2 n on top, the plum line 1. 5 n − 2 on the bottom, and the teal Fibonacci dots living inside the shaded band between them. The picture is the whole point of the proof: F n never pokes above the orange ceiling 2 n (this example) and never sinks below the plum floor (Example 6). Watch the teal dots hug the band as n grows — that "trapped forever" look is what the algebra guarantees.
Claim: with the same Fibonacci sequence, F n ≥ ( 2 3 ) n − 2 for all n ≥ 1 — a lower growth bound. Combined with Example 5 this pins the growth rate as n → ∞ .
Forecast: two reach-back terms (d = 2 ) ⇒ two base cases. And the interesting part is Cell F: what does the pair of bounds say about ∞ ?
Bases n = 1 , 2 : F 1 = 1 ≥ ( 2 3 ) − 1 = 3 2 ✅; F 2 = 1 ≥ ( 2 3 ) 0 = 1 ✅.
Why? Two-term recurrence again — anchor two.
Strong step (n ≥ 3 ): assume F k ≥ ( 2 3 ) k − 2 for k < n .
F n = F n − 1 + F n − 2 ≥ ( 2 3 ) n − 3 + ( 2 3 ) n − 4 .
Why this step? Lower-bound each term by its hypothesis value.
Factor: = ( 2 3 ) n − 4 ( 2 3 + 1 ) = ( 2 3 ) n − 4 ⋅ 2 5 . Since 2 5 ≥ ( 2 3 ) 2 = 4 9 = 2.25 , we get F n ≥ ( 2 3 ) n − 4 ( 2 3 ) 2 = ( 2 3 ) n − 2 . ✅
Why this step? We compare 2 5 = 2.5 against ( 2 3 ) 2 = 2.25 ; the surplus lets us fold the constant into the exponent.
Limiting reading (Cell F), see the figure in Example 5: the plum floor 1. 5 n − 2 and orange ceiling 2 n from that same picture together bracket the teal dots:
( 2 3 ) n − 2 ≤ F n < 2 n .
As n → ∞ the band between plum and orange widens on the log plot but F n stays trapped inside it forever, so F n grows exponentially with base somewhere between 1.5 and 2 — the two strong-induction proofs are the two walls of that visual squeeze.
Verify: n = 8 : F 8 = 21 ; lower bound ( 2 3 ) 6 = 64 729 ≈ 11.39 ; upper 2 8 = 256 . 11.39 ≤ 21 < 256 ✅.
Claim (tiling): a 2 × n strip can be fully covered by 1 × 2 dominoes for every n ≥ 1 , and the number of tilings T n obeys T n = T n − 1 + T n − 2 (so T n = F n + 1 ).
Forecast: placing the last tile either vertical (covers the last column, uses T n − 1 ) or two horizontals (covers last two columns, uses T n − 2 ). Two reach-backs (d = 2 ) ⇒ Cell B/G, two bases.
Bases: T 1 = 1 (one vertical domino), T 2 = 2 (two verticals or two horizontals). ✅
Why two? The recurrence looks back two columns.
Strong step (n ≥ 3 ): every tiling of the 2 × n strip ends in exactly one of two ways — a vertical domino in column n (rest is a 2 × ( n − 1 ) strip) or two stacked horizontal dominoes in columns n − 1 , n (rest is 2 × ( n − 2 ) ). These cases are disjoint and exhaustive, so T n = T n − 1 + T n − 2 .
Why strong not ordinary? The count of the 2 × ( n − 2 ) sub-strip is needed directly — a single predecessor cannot supply it.
Verify: T 3 = T 2 + T 1 = 2 + 1 = 3 . By hand: strip 2 × 3 has tilings { three verticals; V + two horiz; two horiz + V} = 3 . ✅ And T 3 = F 4 = 3 . ✅
Twisted claim (FALSE): "For a 1 = 1 , a 2 = 8 , a n = 2 a n − 1 for n ≥ 3 … by strong induction with one base case a 1 = 1 , we prove a n = 2 n − 1 ."
Forecast: spot the crack before reading on. The recurrence uses only a n − 1 (Cell A, d = 1 ) but the closed form is contradicted by a 2 . Does one base case suffice?
Test the alleged formula at the given data: a 2 = 8 , but 2 2 − 1 = 2 . So a 2 = 2 1 . The claim is false at n = 2 .
Why this step? An exam "proof" that never checks n = 2 hides that a 2 was defined as 8 , breaking 2 n − 1 immediately.
Where the false proof cheats: the recurrence only holds for n ≥ 3 , so a 2 is a second base value that must be checked, not derived. It was skipped. This is the Cell H trap: missing the base case that the recurrence does not cover .
Why this matters: Cell E and H are cousins — always ask "for which n does my step actually apply?" The step here runs only for n ≥ 3 , so both a 1 and a 2 are bases, and a 2 kills the formula.
Correct closed form: from a 3 = 2 a 2 = 16 , a 4 = 32 , … we get for n ≥ 2 , a n = 8 ⋅ 2 n − 2 = 2 n + 1 ; but a 1 = 1 = 2 2 . So there is no single clean formula for all n ≥ 1 ; the sequence is 1 , 8 , 16 , 32 , 64 , … .
Verify: a 3 = 2 ⋅ 8 = 16 and 2 3 + 1 = 16 ✅; a 4 = 2 ⋅ 16 = 32 = 2 5 ✅; and 2 2 − 1 = 2 = 8 = a 2 confirming the original claim false. ✅
Recall Did we hit every cell?
A ::: Example 1 (single reach-back, one base).
B ::: Example 2 (two predecessors, two bases, characteristic roots).
C ::: Example 3 (uncontrolled split n = ab , full history).
D ::: Example 4 (jump-by-4 stamps, four bases).
E ::: Example 5 (Fibonacci upper bound, boundary F 0 patched by two bases).
F ::: Example 6 (lower bound + limiting squeeze 1. 5 n − 2 ≤ F n < 2 n ).
G ::: Example 7 (domino tiling word problem).
H ::: Example 8 (too-few-base-cases exam trap, false formula).
"Count the reach, cover the beach." Find the biggest reach -back d your step uses, then cover exactly that many consecutive base cases on the "beach" (base zone), starting at the floor n 0 . Mismatch = broken proof.
Strong induction — the parent principle these examples drill.
Mathematical Induction (ordinary) — Example 1 shows a Cell-A case where ordinary induction already suffices.
Recurrence Relations — Examples 2, 5, 6, 7, 8 are all recurrences.
Prime Factorisation — Example 3 is the smallest brick of the Fundamental Theorem.
Well-Ordering Principle — an alternative engine for the same proofs.
Sequences & Series — closed forms of recursively defined sequences.
Cover d consecutive bases
Cell C uncontrolled split
Cell F limiting behaviour
Cell H too few bases trap