Today: Math Induction — the 3-step framework
Pass 1 of proof writing. We meet the workhorse of olympiad proofs: "True for $n=1$, and if true for $n=k$ then true for $n=k+1$, therefore true for all $n$." Every infinite-family identity, every divisibility chain, every recurrence proof rides this same shape.
📌 What you will learn today
How this lesson is structured
- Phase 0 (Step 2): Prerequisites — what $P(n)$ means, $\Sigma$ notation, "assume $P(k)$" logic.
- Phase 1 (Step 3): Visual intuition — the dominoes picture + ladder + 3-step framework box.
- Phase 1.5 (Step 4): Formula manual — 5 sentence templates you can drop in to any proof.
- Phase 2 (Steps 5–7): Three guided derivations — the triangular sum, sum of odd numbers, $2^n > n$.
- Phase 3 (Steps 8–12): Five worked examples ⭐⭐ → ⭐⭐⭐⭐⭐, each fully written out.
- Phase 4 (Step 13): Five P1–P5 practice problems with Hint / Answer / Solution.
- Phase 5 (Step 14): AIMO 2016 Q4 — the recurrence last-digit problem, the full hint stack.
- Phase 5.5 (Step 15): Synthesis — prove $6 \mid 7^n - 1$ with the
gradeProofrubric scorer. - Steps 16–17: Atomic-skill matrix + 4 micro-validations.
- Steps 18–20: Cheat sheet, ⭐ self-assessment, error book.
- Steps 21–22: Wrap-up + bridge to Part 2 (Proof by Contradiction).
Prerequisites — $P(n)$, $\Sigma$ notation, and "assume $P(k)$"
Before we can write an induction proof, four small ideas must be totally automatic: what a statement $P(n)$ means, what counts as the base case, what "assume $P(k)$" lets you do, and how $\Sigma$ notation behaves.
① The statement $P(n)$
$P(n)$ is a statement that depends on $n$. For each natural number you pick, $P(n)$ is either true or false. Examples:
- $P(n)$: "$1 + 2 + \cdots + n = \dfrac{n(n+1)}{2}$" — an equality statement.
- $P(n)$: "$6 \mid n^3 - n$" — a divisibility statement.
- $P(n)$: "$2^n > n^2$" — an inequality statement.
Induction proves $P(n)$ is true for every $n \ge n_0$, where $n_0$ is the base case (usually $1$, sometimes $0$, $4$, $5$, depending on when the statement starts being true).
② The natural numbers $\mathbb{N}$ and the base case $n_0$
We work over $\mathbb{N} = \{1, 2, 3, \ldots\}$ (or $\{0, 1, 2, \ldots\}$ — both conventions exist). The base case $n_0$ is the smallest $n$ for which we claim $P(n)$ is true. You must verify the base case explicitly — never skip it. A famous fake proof: "$P(n)$: all horses are the same colour" fails because the inductive step requires two horses, so $n=1$ doesn't transfer to $n=2$.
③ "Assume $P(k)$ is true" — the inductive hypothesis (IH)
This is the move that scares beginners. It looks like circular reasoning: "I'm trying to prove $P$ — but I'm assuming $P$?". The trick: we're not assuming $P(k+1)$; we're only assuming $P(k)$ for a generic $k$, and using that to derive $P(k+1)$. The chain of implications $P(1) \Rightarrow P(2) \Rightarrow P(3) \Rightarrow \cdots$ then carries true-ness forward from the verified base case.
④ $\Sigma$ notation cheat-sheet
$\displaystyle \sum_{i=1}^{n} f(i) = f(1) + f(2) + \cdots + f(n)$. Useful identities:
- $\displaystyle \sum_{i=1}^{n+1} f(i) = \sum_{i=1}^{n} f(i) + f(n+1)$ — the "peel off the last term" move, which is the engine of induction.
- $\displaystyle \sum_{i=1}^{n} c \cdot f(i) = c \sum_{i=1}^{n} f(i)$ — constants pull out.
- $\displaystyle \sum_{i=1}^{n}\bigl(f(i) + g(i)\bigr) = \sum_{i=1}^{n} f(i) + \sum_{i=1}^{n} g(i)$ — linearity.
Visual — Dominoes, ladders, and the 3-step framework
Three pictures, one idea. Induction is just: (1) push the first domino, (2) make sure every domino topples its neighbour. Memorise the shape — every proof you write today follows it.
Picture ① — The dominoes
Push the first domino ($P(1)$). The "if $P(k)$ then $P(k+1)$" rule guarantees every neighbour topples. So all of $\mathbb{N}$ falls.
Picture ② — The ladder
Climbing a ladder: you stand on rung $k$ ($P(k)$ is true), then step up to rung $k+1$ ($P(k+1)$). Doing so once shows you can keep climbing forever.
Picture ③ — The 3-step framework box
The 3-step induction template. Step 1 and Step 2 are mostly writing. Step 3 is where the real algebra happens.
Formula manual — 5 sentence templates
Every clean induction proof uses the same five sentences. Memorise them. When you sit down in the exam, you write these first, then fill the algebra in afterwards.
Derivation ① — Prove $1 + 2 + \cdots + n = \dfrac{n(n+1)}{2}$
The mother of all induction examples. Follow the 3-step framework. We write all five sentences (F1–F5) explicitly.
Step 1 · Base case (F1)
When $n = 1$: LHS $= 1$. RHS $= \dfrac{1 \cdot 2}{2} = 1$. So LHS $=$ RHS, and $P(1)$ holds. ✓
Step 2 · Inductive hypothesis (F2)
Assume $P(k)$ holds for some integer $k \ge 1$. That is,
Step 3 · Inductive step (F3 + F4)
We show $P(k+1)$: that is, $1 + 2 + \cdots + k + (k+1) = \dfrac{(k+1)(k+2)}{2}$.
Step 4 · Conclusion (F5)
Therefore $P(k+1)$ holds. By induction, $P(n)$ is true for all $n \ge 1$. $\blacksquare$
Derivation ② — Prove $1 + 3 + 5 + \cdots + (2n-1) = n^2$
The sum of the first $n$ odd numbers equals a perfect square. Same 3-step shape, slightly different algebra.
Step 1 · Base case
$n = 1$: LHS $= 1$. RHS $= 1^2 = 1$. ✓
Step 2 · Inductive hypothesis
Assume $1 + 3 + 5 + \cdots + (2k-1) = k^2$ for some $k \ge 1$. (IH)
Step 3 · Inductive step
We show that $1 + 3 + 5 + \cdots + (2k-1) + (2(k+1) - 1) = (k+1)^2$.
Step 4 · Conclusion
By induction, $1 + 3 + 5 + \cdots + (2n-1) = n^2$ for all $n \ge 1$. $\blacksquare$
Derivation ③ — Prove $2^n > n$ for all $n \ge 1$
First inequality induction. The move is the same shape, but instead of an "=", we chain "$>$"s.
Step 1 · Base case
$n = 1$: $2^1 = 2 > 1$. ✓
Step 2 · Inductive hypothesis
Assume $2^k > k$ for some $k \ge 1$. (IH)
Step 3 · Inductive step
We show that $2^{k+1} > k+1$.
So $2^{k+1} > k+1$.
Step 4 · Conclusion
By induction, $2^n > n$ for all $n \ge 1$. $\blacksquare$
Worked Example 1 — Triangular sum (verify at $n = 10$)
Same identity as Derivation ①, but now you fill in the value at a specific $n$ to lock in the formula. This builds computational confidence on top of the proof.
By the formula at $n = 10$: $\dfrac{10 \cdot 11}{2} = \dfrac{110}{2} = 55$.
Worked Example 2 — Sum of squares identity
A famous identity. Worth memorising. The inductive step requires factoring a cubic — careful algebra.
Proof (sketch)
Base ($n=1$): LHS $= 1$. RHS $= \dfrac{1 \cdot 2 \cdot 3}{6} = 1$. ✓
IH: $1^2 + 2^2 + \cdots + k^2 = \dfrac{k(k+1)(2k+1)}{6}$ for some $k \ge 1$.
Step:
This matches $P(k+1)$ with $n$ replaced by $k+1$. ✓
At $n = 5$: $\dfrac{5 \cdot 6 \cdot 11}{6} = \dfrac{330}{6} = 55$.
Worked Example 3 — Divisibility: $6 \mid n^3 - n$
First divisibility induction. The inductive step needs algebraic manipulation plus a small parity observation.
Proof
Base ($n=1$): $1^3 - 1 = 0$, and $6 \mid 0$. ✓
IH: Assume $6 \mid k^3 - k$ for some $k \ge 1$.
Step: We show $6 \mid (k+1)^3 - (k+1)$.
By IH, $6 \mid (k^3 - k)$. For the other term: $k(k+1)$ is the product of two consecutive integers, so it is even, i.e. $2 \mid k(k+1)$. Therefore $6 \mid 3k(k+1)$. The sum of two multiples of $6$ is a multiple of $6$, so $6 \mid (k+1)^3 - (k+1)$.
By induction, $6 \mid n^3 - n$ for all $n \ge 1$. $\blacksquare$
Worked Example 4 — Fibonacci numbers mod 3 (find the period)
Recurrence problems and periodicity. The key idea: compute the sequence modulo $m$, find where it repeats, and exploit the period. This is the warm-up for AIMO 2016 Q4.
Computation
We work entirely mod 3:
The sequence mod 3 reads: $1, 1, 2, 0, 2, 2, 1, 0, 1, 1, \ldots$ — and $(F_9, F_{10}) = (1, 1) = (F_1, F_2)$, so the sequence repeats with period 8.
Worked Example 5 — Prove $2^n > n^2$ for $n \ge 5$
Sharper inequality induction. The base case is not at $n = 1$ — small $n$ values fail. We must start at $n = 5$.
Proof
Base ($n=5$): $2^5 = 32$, $5^2 = 25$. Since $32 > 25$, $P(5)$ holds. ✓
IH: Assume $2^k > k^2$ for some $k \ge 5$.
Step: We show $2^{k+1} > (k+1)^2$.
It remains to show $2k^2 \ge (k+1)^2$ for $k \ge 5$. Expanding:
For $k \ge 5$: $k^2 - 2k - 1 \ge 25 - 10 - 1 = 14 > 0$. So $2k^2 > (k+1)^2$, and hence $2^{k+1} > (k+1)^2$. ✓
By induction, $2^n > n^2$ for all $n \ge 5$. $\blacksquare$
Practice — 5 problems with Hint / Answer / Solution
Try each on paper. Use the buttons in order: Hint first, then Answer to check, then Solution only if you got stuck.
Prove by induction: $\displaystyle 1 + 2 + 3 + \cdots + n = \dfrac{n(n+1)}{2}$. Then compute the sum $1 + 2 + \cdots + 100$.
Prove by induction: $\displaystyle 1^3 + 2^3 + \cdots + n^3 = \left(\frac{n(n+1)}{2}\right)^2$. Compute the sum for $n = 4$.
Prove that $3 \mid n^3 + 2n$ for every $n \ge 1$.
Prove $n! > 2^n$ for all $n \ge 4$. (Hint: check base $n = 4$, then induct.)
Prove by induction: $\displaystyle 1 + r + r^2 + \cdots + r^n = \frac{r^{n+1} - 1}{r - 1}$ for any $r \ne 1$ and all $n \ge 0$.
AIMO 2016 Q4 — The 3-mark recurrence question
Now the real thing. AIMO 2016 Question 4, 3 marks. This is the canonical "recurrence sequence + last-digit + period" combo. Read carefully, then work through the 5 hints on the right.
The problem
Observe
$s_3 = 1^2 + 2^2 = 5$, $s_4 = 4 + 25 = 29$, $s_5 = 25 + 841 = 866$ — already the values are exploding. We obviously cannot compute $s_{200}$ directly. But we don't need the value — only the last digit. So we work mod 10.
Strategy
(1) Compute the sequence of last digits using only mod-10 arithmetic. (2) Watch for repetition: any time a consecutive pair $(s_j, s_{j+1}) \bmod 10$ equals $(s_1, s_2) \bmod 10 = (1, 2)$, the sequence repeats from there. (3) Use the period to find which earlier term has the same last digit as $s_{200}$.
Why this is a general technique
Any second-order recurrence mod $m$ must become periodic. Reason: there are only $m^2$ possible pairs $(a, b) \pmod m$. After $m^2 + 1$ pairs, some pair has appeared twice, and from there the sequence repeats. So the "compute mod $m$ until repetition" strategy always works for these problems — the only question is how long the period is.
Full solution
We work modulo 10 throughout, recording only the last digit of each $s_n$:
Now $(s_{13}, s_{14}) \equiv (1, 2) \equiv (s_1, s_2)$. The recurrence depends only on the previous two values, so from this point onwards the sequence repeats with period $12$:
To find $s_{200} \bmod 10$, write $200 = 16 \cdot 12 + 8$, so $200 \equiv 8 \pmod{12}$. Hence $s_{200} \equiv s_8 \equiv 4 \pmod{10}$.
Synthesis — Prove $6 \mid 7^n - 1$ for all $n \ge 1$
Write the full 3-step induction proof in the textarea below. The grader scores how many rubric keywords you used (out of 5). This trains the writing reflex.
- "base case" — verify at $n = 1$.
- "assume" — state the inductive hypothesis at $n = k$.
- "inductive" — announce the inductive step.
- "show" (or "prove") — what you intend to derive.
- "therefore" — conclude by induction.
Atomic-skill matrix — the four skills you just trained
Every induction problem you solved today decomposed into one of four atomic skills. Memorise which is which — when you face a new problem, name the skill first, then apply the standard recipe.
| Code | Skill | Trigger | Standard recipe |
|---|---|---|---|
P1-A1 |
3-step framework: state → base → step | "Prove $P(n)$ for all $n \ge n_0$." | F1 base, F2 IH, F3+F4 inductive step, F5 conclusion. Use for identities and counting formulas. |
P1-A2 |
Divisibility induction | "Prove $d \mid f(n)$ for all $n \ge n_0$." | Rewrite $f(k+1) = f(k) + (\text{a multiple of } d)$. IH gives $d \mid f(k)$, and the new term is obviously divisible by $d$. Therefore $d \mid f(k+1)$. |
P1-A3 |
Recurrence-sequence induction (periods mod $m$) | "Last digit of $a_{200}$" / "$a_n \bmod m$" / "$a_n$ defined by $a_{n+2} = \ldots$" | Compute sequence mod $m$. Watch for repeated pair $(a_j, a_{j+1})$. Period $p$ is established; use $n \bmod p$ to read off the answer. |
P1-A4 |
Inequality induction | "Prove $f(n) > g(n)$" or "$f(n) < g(n)$" for all $n \ge n_0$. | Find the right starting $n_0$ by testing small values. F1–F2 as usual. In F4, after using IH, prove an intermediate inequality (often a polynomial inequality in $k$). Chain: target $> $ IH-output $\ge $ goal. |
Micro-validations — one quick check per skill
Quick sanity checks. If you fail any of these, return to the corresponding worked example before moving on.
Cheat sheet — print this and pin it next to your desk
Every induction proof you write for the next 4 weeks should mirror this template.
- Base case ($n = n_0$): directly verify $P(n_0)$. Show LHS and RHS separately. (1 mark)
- Inductive hypothesis (IH): assume $P(k)$ holds for some integer $k \ge n_0$. Write the exact equation/inequality. (1 mark)
- Inductive step: using IH, show $P(k+1)$. Mark the IH substitution with "(by IH)" or $\stackrel{\text{IH}}{=}$. (2–3 marks)
- Close with: "By induction, $P(n)$ is true for all $n \ge n_0$. $\blacksquare$" (1 mark)
- F1: "Base case: when $n = 1$, LHS $= \ldots$ and RHS $= \ldots$. ✓"
- F2: "Assume $P(k)$ holds for some $k \ge 1$: that is, $\ldots = \ldots$."
- F3: "We now show $P(k+1)$, i.e. $\ldots = \ldots$."
- F4: "$\text{LHS}(k+1) = \text{LHS}(k) + (\text{new term}) \stackrel{\text{IH}}{=} \ldots = \text{RHS}(k+1)$."
- F5: "Therefore $P(k+1)$ holds. By induction, $P(n)$ is true for all $n \ge 1$. $\blacksquare$"
- Forgetting the base case. Without it, the chain has no first link.
- Wrong base case. $2^n > n^2$ fails for $n = 2, 3, 4$. You must check small values.
- Using $P(k+1)$ to prove $P(k+1)$. Don't assume what you want — only $P(k)$.
- Forgetting the conclusion sentence. Costs 1 mark every time.
- Not labelling the IH substitution. Marker can't see where you used the hypothesis.
⭐ Self-assessment — rate your mastery of each skill
For each atomic skill, click 1–3 stars: ⭐ = "I can follow it"; ⭐⭐ = "I can do it with a hint"; ⭐⭐⭐ = "I can write it from scratch under exam pressure".
📒 Error book — your personal mistake log
Every time you got an answer wrong today, it was silently saved here. Review these before moving on. Coming back to this list once a week is one of the highest-leverage habits in olympiad training.
🎉 Wrap-up — what you can do now
Take stock. Today's lesson installed one of the two foundational proof techniques for the entire AIMO syllabus.
Today's takeaways
- The 3-step framework is universal: base → IH → inductive step. Every induction proof you ever write follows it.
- Five sentence templates (F1–F5) give you a fill-in scaffold worth 2/5 marks before any algebra.
- Four atomic skills (P1-A1 to P1-A4) cover ~80% of olympiad induction problems: sum identities, divisibility, recurrences mod $m$, and inequalities.
- Recurrences mod $m$ always periodicise (only $m^2$ possible pairs). When you see "last digit of $a_{200}$", reach for this technique.
- Inequality induction needs the right $n_0$. Always check small values to find where the inequality first holds.
Stuck? Try in order:
- Re-read the F1–F5 sentence templates (Step 4).
- Re-do Phase 2 derivations 1, 2, 3 (Steps 5–7) on paper, watching the proof shape.
- Open the relevant worked example (Steps 8–12) and follow each calc line one at a time.
- For AIMO 2016 Q4, walk through the 5 hints in order — each unlocks a stage.
- Forgetting the "$\blacksquare$" / "Therefore by induction" — costs the conclusion mark.
- Not labelling where IH was used (e.g. "$\stackrel{\text{IH}}{=}$") — costs the substitution mark.
- For $2^n > n^2$, missing that the base case is $n = 5$ (not $n = 1$).
- For AIMO 2016 Q4, trying to compute $s_{200}$ directly instead of working mod 10.
🏁 Bridge to Part 2 — Proof by Contradiction
You've banked one of the two great Pass-1 proof techniques. Next session: the other one — proof by contradiction.
→ Open Part 2: Proof by Contradiction Basics
— End of Week 11 · Part 1 · Math Induction Basics —