3.3.10 · D3Sequences & Series

Worked examples — Strong induction

2,929 words13 min readBack to topic

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.


The scenario matrix

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 1 step 1
B — fixed multi reach-back step uses and 2 steps 2
C — uncontrolled reach-back step splits , unknown but anywhere below 1 (smallest)
D — jump-by- reach-back step uses for fixed steps (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
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

Now, one guiding rule that resolves all of them (recall = starting index, = largest reach-back, both defined just above):


Example 1 — Cell A (single reach-back)


Example 2 — Cell B (two fixed predecessors) + a figure


Example 3 — Cell C (uncontrolled reach-back)


Example 4 — Cell D (jump-by-, here ) — the stamps


Example 5 — Cell E (degenerate boundary) — a figure


Example 6 — Cell F (limiting behaviour) — a figure


Example 7 — Cell G (real-world word problem)


Example 8 — Cell H (exam twist: too few base cases → false "proof")


Coverage check

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 , full history). D ::: Example 4 (jump-by-4 stamps, four bases). E ::: Example 5 (Fibonacci upper bound, boundary patched by two bases). F ::: Example 6 (lower bound + limiting squeeze ). G ::: Example 7 (domino tiling word problem). H ::: Example 8 (too-few-base-cases exam trap, false formula).


Connections

  • 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.

Concept Map

determines

d equals 1

d equals 2

d general

full history

patch gap

forgot a base

squeeze bounds

two ways to end

Biggest reach back d

Cover d consecutive bases

Cell A single reach

Cell B two predecessors

Cell C uncontrolled split

Cell D jump by d

Cell E boundary gap

Cell F limiting behaviour

Cell G word problem

Cell H too few bases trap