3.3.9 · D5Sequences & Series

Question bank — Mathematical induction — principle, steps, problems

1,552 words7 min readBack to topic

Reminder of the vocabulary the parent note built, so no symbol here is unearned:

  • — a statement about a natural number (one domino).
  • Base case — the first domino, , checked directly.
  • Inductive hypothesis (IH) — the assumed truth of for one fixed .
  • Inductive step — the proof that (each domino knocks the next).
  • PMI — Principle of Mathematical Induction; strong induction assumes all of .

True or false — justify

A truthful domino falls only if both the base and the step hold. Each item hides a place where one of them silently breaks.

If a statement's inductive step is valid but the base case is false, the statement is still proved for all .
False — the chain has no starting domino, so nothing is forced to fall; a working step over a false base proves nothing.
" is true for every " alone guarantees holds for all .
False — the implication may be vacuously true while every is false; you still need one true to ignite it.
Checking all true is enough to conclude for all .
False — finitely many checks never cover the infinite tail; e.g. is prime for but composite at .
Induction can prove statements about all integers (including negatives) directly.
False — ordinary PMI walks upward from a starting value; negatives need a separate downward argument or a re-indexing, not the plain template.
Strong induction can prove theorems that ordinary induction cannot.
False — they are logically equivalent; strong induction is only a convenience when leans on several earlier cases.
In a proof of "", the base case is optional because the step is obvious.
False — the step only chains once is verified; drop the base and the whole implication chain is untethered.
If the inductive step secretly uses to prove , the proof is still fine as long as the algebra checks.
False — that is circular (assuming what you must prove); a correct step derives using only earlier cases.
Well-Ordering (every nonempty set of naturals has a least element) is a consequence of induction but not equivalent to it.
False — they are logically equivalent; each can be derived from the other, which is why a "smallest counterexample" argument justifies PMI.
A single valid inductive step lets you start the chain at any you like without checking that particular .
False — the base case must be verified at the exact where you claim the chain begins; the step preserves truth but cannot create it.

Spot the error

Each of these is a plausible-looking proof with one fatal flaw. Name the exact broken link.

"To prove all horses are the same colour: base trivial; for , drop one horse then another and overlap." Where does it fail?
The overlap argument needs two horses to share, so the step fails — the very first genuine step is broken even though later steps look fine.
A student writes "Assume is true; adding the next term gives ." What's wrong?
They assumed , the thing to be proved at that stage — the IH must assume and derive the next case.
": . Step: because both sides are polynomials." Flaw?
No use of the IH occurs — a genuine step must rebuild 's LHS from 's LHS by adding the -th term, not just assert the target.
": . Base ✓. Step: since , obviously ." Is this valid induction?
The step doesn't use the IH at all — is true independently, so nothing was inferred from ; the "induction" is decorative (though the statement is trivially true anyway).
"Prove . Step: , and is divisible by 6." Which claim is unjustified without a reason?
That is divisible by 6 — it needs the fact that (two consecutive integers) is even; skipping that leaves a gap.
"Base , but the claim was stated for all ." Why is this a mismatch even if is true?
The base must be checked at the stated starting value ; verifying a different value doesn't ignite the chain you actually claimed.

Why questions

These probe why the machinery is built the way it is.

Why must the inductive hypothesis fix as one arbitrary value rather than "all "?
If you assumed it for all you'd be assuming the theorem; fixing one arbitrary and deriving is what actually chains the dominoes.
Why does adding "the next term to both sides" work so often in sum-formula proofs?
Because 's left side is literally 's left side plus one more term, so adding exactly that term converts the assumed equality into the target.
Why is factoring out the common early (as in the sum-of-squares proof) a smart move?
The target formula for already contains as a factor, so pulling it out immediately steers the algebra toward the desired shape.
Why is induction equivalent to the Well-Ordering Principle?
A failing statement would have a least counterexample ; the base rules out and the step forces from — a contradiction, so no least counterexample exists.
Why does Fibonacci naturally call for strong induction rather than ordinary?
Each term depends on the two previous terms, so proving needs both and — you must assume all earlier cases, which is exactly strong induction.
Why can the Binomial Theorem be proved by induction on ?
Multiplying by one more factor turns the assumed expansion into the next one, so mirrors the domino step.
Why is "the step looks like the whole proof" a dangerous feeling?
The step only says "if a domino falls, the next does" — it is a conditional; without the base case nothing is ever unconditionally established.

Edge cases

Boundary situations where the template needs care.

If a statement is true for all but false for , can induction still prove it?
Yes — set the base case at and run the step for ; the chain simply starts later and covers .
What happens if the inductive step is valid only for but you set the base at ?
The chain breaks between the base and where the step becomes valid; you must either fix the base at (and check separately) or make the step hold from on.
Is checking a base case at ever legitimate?
Yes — if the statement is claimed for all ; the "starting value" is whatever the theorem specifies, and is a perfectly valid natural starting point.
For "", why does the step need , and does this hold for the smallest ?
We reach from the IH, then need i.e. — which holds at the base , so the chain is unbroken from the start.
A degenerate empty sum: . Does the formula still give the right value at ?
Yes — matches the empty sum, so is a valid (if trivial) extra base check.
If fails at exactly one value , what can still be salvaged?
The chain proves only up to (from a valid base); beyond the break you'd need a fresh base at and a step valid there.
Can strong induction get by with no explicit base case?
No — at the "assume all earlier cases" set is empty, so proving then requires a genuine direct verification, which is the base case in disguise.

Connections