3.3.10 · D2Sequences & Series

Visual walkthrough — Strong induction

1,872 words9 min readBack to topic

We use only these ideas, and we will build each one before using it:

  • an integer — a whole number like ;
  • a statement — a claim that is either true or false for each (e.g. " is a product of primes");
  • means "greater than or equal to"; means "strictly less than".

Step 1 — What "a statement for every number" even looks like

WHAT. Line up the integers starting from some smallest one, (read: "-naught", the starting number). Above each integer we place a lamp. Lamp is lit if the statement is true, and dark if we have not yet shown it.

WHY. Before proving anything we need a picture of the goal: we want every lamp lit, all the way to infinity. Ordinary and strong induction are just two different strategies for lighting them all.

PICTURE. Below, the row of lamps sits above the number line. Right now only the very first lamp is lit — that is all we will get "for free".


Step 2 — Ordinary induction: each lamp lights the next one

WHAT. Ordinary induction gives you exactly two tools:

  1. a base case — lamp is lit;
  2. a single-step rule — a wire from each lamp to the one immediately after it: "if lamp is lit, then lamp lights."

WHY. This is the classic domino chain. Because each wire reaches forward by exactly , one push at cascades forever — but only if every lamp truly depends on just its single predecessor.

Here the left term is the assumption (one lamp), the arrow is the wire, the right term is the conclusion (the next lamp).

PICTURE. Short green wires, each spanning a single gap. Watch how the "lit" wave rolls right, one lamp at a time.


Step 3 — Why we need to reach further back

WHAT. Some statements are wired to several earlier lamps at once. In Prime Factorisation, to show factors into primes, you need lamps and lit — and can be anywhere below , not just at .

WHY. A single forward wire cannot deliver this. We want a rule whose input is "every lamp below is lit," so that whichever earlier lamps we happen to need are guaranteed available.

PICTURE. Long coral wires fan out from all earlier lamps into lamp . Compare with Step 2's lone short wire.


Step 4 — The trick: bundle the history into ONE lamp

WHAT. We invent a new row of lamps, one per integer, but a -lamp lights only when a whole block of -lamps is lit:

WHY. This is the master move. Ordinary induction only understands single-step wires. So we repackage "all of the history" into a single -lamp. Then a one-step wire on the -row secretly carries all the history on the -row. Note here (including ) — different from Step 3's strict — because records everything up to and including .

PICTURE. Each coral -lamp sits over a bracket hugging all the -lamps it summarises. Lighting means the entire bracket underneath is lit.


Step 5 — Base of : the first bundle lights for free

WHAT. says "all -lamps from up to are lit" — that is a bundle of exactly one lamp, namely . And is our strong-induction base case, which we assumed true.

WHY. Ordinary induction on the -row needs its own base case to anchor the chain. We just showed it costs us nothing extra: it is the base case we already have.

PICTURE. The leftmost -bracket wraps a single lit -lamp. Green check: anchored.


Step 6 — Inductive step of : one short wire carries all the history

WHAT. Assume (the whole bundle is lit). Read it a second way: it is exactly the strong hypothesis " for all ". So the strong-step rule fires and lights . Add that freshly-lit lamp to the bundle and you have lit — which is .

WHY. This is the whole payoff. A single ordinary-induction wire on the top row is powered by the many-wire strong rule on the bottom row. We converted "all history" into "one predecessor" without losing anything.

PICTURE. A short green wire on the -row; underneath, the coral fan of the strong rule doing the real work. The bracket grows by one.


Step 7 — Fire ordinary induction on , and read off

WHAT. The -row now has a base (Step 5) and a single-step wire (Step 6). That is precisely ordinary induction. So every -lamp lights. And because each contains , every -lamp is lit too.

WHY. We never introduced a new axiom. Strong induction is ordinary induction applied to the bundled statement — the parent's central claim, now seen as a picture.

PICTURE. Both rows fully lit; a dashed arrow drops from each -lamp to the -lamp it guarantees.


Step 8 — Degenerate & edge cases (nothing left uncovered)

WHAT & WHY. Three boundary situations the picture must survive:

  1. The very first strong step (vacuous history). At there are no lamps strictly below . The strong hypothesis " for all " is then vacuously true (an empty bundle). That is why must be proved directly as a base — the rule gives nothing to stand on there.
  2. Reach-back distance . If the step needs , then for the lamp doesn't exist. Fix: supply base cases so every reach-back lands inside the lit base zone.
  3. Never assume . The bundle in that feeds the step is strictly below the lamp being lit; is the output, never an input. Assuming it is circular.

PICTURE. Left: empty coral bracket at (vacuous). Middle: a two-step wire falling off the left edge unless two bases are pre-lit. Right: a "❌" wire looping a lamp back to itself.

Recall Check yourself

At , how many lamps are strictly below it? ::: Zero — the strong hypothesis is vacuously true, so the base must be proved directly. If the step uses , how many base cases? ::: Three, so the reach-back never leaves the lit base zone. Is ever an input to its own step? ::: No — the hypothesis is strictly .


The one-picture summary

WHAT. Everything at once: the bottom -row with its many-wire strong rule, the top -row with its single-step ordinary wire, the base anchor on the left, and the drop-down arrows recovering every from every .

Recall Feynman retelling — the whole walkthrough in plain words

Picture two shelves of lamps. On the bottom shelf each lamp needs help from lots of lamps behind it — that's the awkward "strong" wiring, and plain domino-induction can't handle so many wires. So we build a top shelf: a top lamp lights only when a whole run of bottom lamps behind it is already glowing. Now here's the magic — a top lamp only needs the one top lamp just before it, because that previous top lamp already guarantees the whole run underneath. One neat forward wire on top secretly drags all the messy bottom wires along. The first top lamp lights because the first bottom lamp is our given base. From there ordinary dominoes light the whole top shelf, and every top lamp, once lit, guarantees its bottom lamp underneath. So the entire bottom shelf lights too — no new magic, just clever bundling. And if a bottom lamp reaches back two spots, we simply hand-light two starter lamps so nothing falls off the left edge.


Connections

  • Strong induction — the parent this walkthrough visualises.
  • Mathematical Induction (ordinary) — the engine we run on the bundled statement .
  • Well-Ordering Principle — an equivalent route controlling an entire initial segment.
  • Recurrence Relations — where multi-lamp reach-backs come from.
  • Prime Factorisation — the flagship " anywhere below " example.
  • Sequences & Series — closed forms proved by exactly this scheme.