3.3.10 · D5Sequences & Series
Question bank — Strong induction
True or false — justify
Strong induction can prove statements that ordinary induction cannot.
False — they are logically equivalent; we derived strong induction from ordinary induction applied to the cumulative statement . It is a convenience, never extra power.
If the inductive step only ever uses , you must still use strong induction.
False — reaching back exactly one step is ordinary induction; the strong hypothesis is just unused overkill, so plain induction suffices.
The strong induction hypothesis includes itself.
False — the hypothesis is strictly for . Assuming to prove would be circular.
Every strong-induction proof needs at least two base cases.
False — the prime-factorisation proof needs only ; the number of base cases depends on how far the step reaches back, not on being "strong".
"Assume for all " and "assume " give the same proving power.
False — the first hands you the entire history so you can invoke any smaller case (like in ), which the single-predecessor form cannot reach.
A statement proven by strong induction for all says nothing about .
True — the base zone begins at ; the claim is simply not asserted below it, and there is no chain reaching .
Strong induction and the Well-Ordering Principle can each be used to prove the other.
True — they are equivalent formulations; see Well-Ordering Principle. You may prove strong induction directly by taking a least counterexample.
If you forget one base case, the proof might still be complete by luck.
False — a missing base leaves a value the step can never reach validly, so the logical chain has a permanent gap even if the formula happens to hold there.
Spot the error
"Base: . Step: assume ; then ." Find the flaw.
The step uses but only one base case () was given; for the term is fine, but was never established as a base, so the chain for has no valid . Two bases are required.
"To factor , assume for all , write , done — no base case needed." Error?
The base case is missing; without it the smallest cases have nothing beneath them and the whole tower is unfounded, even though the step itself is correct.
"Strong step for stamps: for assume the claim for all ; then ." Error?
For the value is , which is below and not payable — so the step only works for , and – must be handled as base cases.
"Assume for all , then prove ." Error?
The hypothesis illegally includes , i.e. it assumes exactly what must be proven. The correct bound is .
"We proved by ordinary induction, where means only." Error?
must mean " for all " (cumulative); if it meant only , its single-step hypothesis would be just and would not deliver the full history the strong step needs.
"Base cases all check out, so the claim holds for every ." Complete?
Not yet — bases alone prove only those four values; you still need the inductive step showing follows from to cover all larger .
Why questions
Why does the prime-factorisation proof require the full history rather than just ?
A composite splits into but neither need equal ; you cannot predict which smaller values appear, so you must have them all available.
Why do we introduce the auxiliary statement when justifying strong induction?
" holds for all " converts the many-predecessor assumption into a single-predecessor one, letting ordinary induction do the work.
Why must the number of base cases match how far the step reaches back?
If the step invokes , the smallest where the step fires would reference a value below the base — undefined or unproven — unless that value is a base case too.
Why is calling strong induction "more powerful" a category error?
Power is about which theorems are provable, and both prove exactly the same set; strong induction only changes convenience of expression, not reach.
Why can a two-term recurrence like not be handled cleanly by ordinary induction?
Ordinary induction gives only , but the recurrence also needs ; without the extra predecessor the substitution in the step is impossible. See Recurrence Relations.
Why does anchoring induction on (not ) make strong induction "not a new axiom"?
Because the entire justification stays inside ordinary induction — strong induction is a theorem about ordinary induction, so no new assumption is added.
Edge cases
What happens if is not the true smallest case, e.g. you start at but the step needs ?
The step would reference values below your base zone that were never established, so the proof is invalid; the base must cover everything the step can reach.
Can strong induction start with zero explicit base cases if the step covers the smallest value trivially?
Only if the inductive step genuinely proves the smallest case with an empty hypothesis (vacuously); otherwise the smallest case is unsupported and you need at least one base.
For the stamp claim, why exactly four base cases and not three or five?
The step subtracts , so residues each need a direct anchor to land inside the base zone; three would leave one residue class unreachable, five is redundant.
Is a single base case ever wrong for a step reaching back one?
No — one-step-back needs exactly one base; adding extras is harmless but unnecessary. The danger is too few, never too many.
What does the strong hypothesis reduce to for the very first inductive value ?
It contains only the base cases already proven (e.g. just ), so the step must succeed using only what the base guaranteed — a good sanity check on your base count.
Recall One-sentence rule of thumb
Count how far the step reaches back — that many base cases — and never let the hypothesis touch itself.
Connections
- Parent: Strong induction — the full derivation and worked examples.
- Mathematical Induction (ordinary) — the equivalent parent principle.
- Well-Ordering Principle — alternative equivalent tool for these traps.
- Recurrence Relations — source of the multi-base-case pitfalls.
- Prime Factorisation — the "full history" application.
- Sequences & Series — home chapter.