3.3.9Sequences & Series

Mathematical induction — principle, steps, problems

1,695 words8 min readdifficulty · medium6 backlinks

WHAT is the Principle?

The assumption "P(k)P(k) is true" used inside the inductive step is called the inductive hypothesis (IH).

WHY does this actually prove everything? Suppose PP failed somewhere. Let mm be the smallest number where it fails. Then mn0m \ne n_0 (base case holds), so m1n0m-1 \ge n_0 and P(m1)P(m-1) is true (else m1m-1 would be smaller and failing). But the inductive step says P(m1)P(m)P(m-1)\Rightarrow P(m) — contradiction. So PP never fails. This is why PMI is equivalent to the Well-Ordering Principle (every nonempty set of naturals has a least element).


HOW to write an induction proof (the ritual)

The heart is step 4: you must manufacture P(k+1)P(k+1) out of P(k)P(k), usually by adding the "next term" to both sides.


Worked Example 1 — Sum of first nn naturals

Claim: P(n): 1+2++n=n(n+1)2P(n):\ 1+2+\cdots+n = \dfrac{n(n+1)}{2}.

Base case n=1n=1: LHS =1=1, RHS =122=1=\frac{1\cdot 2}{2}=1. ✓ Why this step? Without a true starting domino, the chain proves nothing.

IH: assume 1+2++k=k(k+1)21+2+\cdots+k = \dfrac{k(k+1)}{2}.

Step: Add the next term (k+1)(k+1) to both sides: 1+2++kuse IH+(k+1)=k(k+1)2+(k+1)\underbrace{1+2+\cdots+k}_{\text{use IH}} + (k+1) = \frac{k(k+1)}{2} + (k+1) Why this step? P(k+1)P(k+1)'s LHS is just P(k)P(k)'s LHS plus one more term — so add exactly that term. =(k+1)(k2+1)=(k+1)k+22=(k+1)(k+2)2.= (k+1)\left(\frac{k}{2}+1\right) = (k+1)\cdot\frac{k+2}{2} = \frac{(k+1)(k+2)}{2}. This is precisely P(k+1)P(k+1) (replace nn by k+1k+1 in the formula). By PMI, true for all n1n\ge 1. ∎


Worked Example 2 — Sum of squares

Claim: P(n): 12+22++n2=n(n+1)(2n+1)6P(n):\ 1^2+2^2+\cdots+n^2 = \dfrac{n(n+1)(2n+1)}{6}.

Base n=1n=1: LHS =1=1, RHS =1236=1=\frac{1\cdot2\cdot3}{6}=1. ✓

IH: i=1ki2=k(k+1)(2k+1)6\sum_{i=1}^{k} i^2 = \dfrac{k(k+1)(2k+1)}{6}.

Step: add (k+1)2(k+1)^2: k(k+1)(2k+1)6+(k+1)2=(k+1)[k(2k+1)6+(k+1)].\frac{k(k+1)(2k+1)}{6} + (k+1)^2 = (k+1)\left[\frac{k(2k+1)}{6} + (k+1)\right]. Why this step? Factor out the common (k+1)(k+1) early — it's the target formula's leading factor. =(k+1)k(2k+1)+6(k+1)6=(k+1)2k2+7k+66=(k+1)(k+2)(2k+3)6.= (k+1)\cdot\frac{k(2k+1)+6(k+1)}{6} = (k+1)\cdot\frac{2k^2+7k+6}{6} = (k+1)\cdot\frac{(k+2)(2k+3)}{6}. This equals (k+1)(k+2)(2(k+1)+1)6=P(k+1)\dfrac{(k+1)(k+2)(2(k+1)+1)}{6}=P(k+1). By PMI, done. ∎


Worked Example 3 — Divisibility

Claim: P(n): n3nP(n):\ n^3 - n is divisible by 66 for all n1n\ge 1.

Base n=1n=1: 11=01-1=0, and 606\mid 0. ✓

IH: 6k3k6 \mid k^3-k, i.e. k3k=6mk^3-k = 6m for some integer mm.

Step: Compute (k+1)3(k+1)(k+1)^3-(k+1): (k+1)3(k+1)=k3+3k2+3k+1k1=(k3k)+3k2+3k.(k+1)^3-(k+1) = k^3+3k^2+3k+1-k-1 = (k^3-k) + 3k^2+3k. Why this step? We isolate the "old" chunk k3kk^3-k (divisible by 6 by IH) plus a leftover. =6m+3k(k+1).= 6m + 3k(k+1). Now k(k+1)k(k+1) is a product of two consecutive integers, so it's even, say 2t2t. Then 3k(k+1)=6t3k(k+1)=6t. Hence total =6m+6t=6(m+t)=6m+6t=6(m+t), divisible by 6. By PMI, done. ∎


Worked Example 4 — Inequality

Claim: P(n): 2n>nP(n):\ 2^n > n for all n1n\ge 1.

Base n=1n=1: 21=2>12^1=2>1. ✓

IH: 2k>k2^k > k.

Step: 2k+1=22k>2k2^{k+1} = 2\cdot 2^k > 2k (using IH). Why this step? Multiply IH by 2 to get 2k+12^{k+1}. Now is 2kk+12k \ge k+1? Yes for k1k\ge 1 since 2k(k+1)=k102k-(k+1)=k-1\ge 0. So 2k+1>2kk+12^{k+1} > 2k \ge k+1. ∎

Figure — Mathematical induction — principle, steps, problems

Strong (Complete) Induction — a stronger tool



Recall Explain to a 12-year-old (Feynman)

Line up dominoes. If you can knock over the first one, and you're sure each domino is close enough to hit the next, then you know all of them will fall — even a million of them — without watching each fall. Math induction is that trick: prove "step 1 works" and "if any step works, the next works too," and you've proved it for every number forever.


Active-Recall Flashcards

What are the two parts of the Principle of Mathematical Induction?
(1) Base case: P(n0)P(n_0) true. (2) Inductive step: P(k)P(k+1)P(k)\Rightarrow P(k+1) for all kn0k\ge n_0.
What is the "inductive hypothesis"?
The assumption that P(k)P(k) is true, used to prove P(k+1)P(k+1).
Why does induction actually prove P(n)P(n) for all nn?
It's equivalent to the Well-Ordering Principle: a smallest counterexample would contradict the inductive step.
In the inductive step for a sum formula, what do you do first?
Add the next term (the (k+1)(k+1)-th term) to both sides of the IH.
Give a famous statement that holds for n=1..40n=1..40 but fails at 4141.
n2n+41n^2-n+41 (prime up to 40, composite at 41) — checking cases is not proof.
How does strong induction differ from ordinary induction?
You assume ALL of P(n0),,P(k)P(n_0),\dots,P(k) (not just P(k)P(k)) to prove P(k+1)P(k+1).
1+2++n=?1+2+\cdots+n=?
n(n+1)2\dfrac{n(n+1)}{2}
12+22++n2=?1^2+2^2+\cdots+n^2=?
n(n+1)(2n+1)6\dfrac{n(n+1)(2n+1)}{6}
Why is k(k+1)k(k+1) always even?
It's a product of two consecutive integers, one of which must be even.
Two common fatal errors in induction proofs?
Forgetting the base case, and assuming P(k+1)P(k+1) instead of deriving it.

Connections

Concept Map

intuition for

requires

requires

assumes

used to prove

first domino

knocks over next

equivalent to

applied via

proves

proves

step adds

step adds

Domino picture

Principle of Induction

Base case P of n0

Inductive step

Inductive hypothesis P of k

P of k+1

Chain covers all n

Well-Ordering Principle

4-step ritual

Sum of naturals formula

Sum of squares formula

Add next term to both sides

Hinglish (regional understanding)

Intuition Hinglish mein samjho

Mathematical Induction ek domino wala idea hai. Socho ek lambi line mein dominoes khade hain aur tumhe prove karna hai ki saare gir jayenge. Har domino ko haath se girana toh impossible hai (infinite kaam). Toh tum sirf do cheezein dikhate ho: pehla domino girta hai (yeh hai base case, usually n=1n=1), aur agar koi bhi domino girta hai toh woh apne agle ko bhi gira deta hai (yeh hai inductive step, P(k)P(k+1)P(k)\Rightarrow P(k+1)). Bas! Dono sach hain toh logically saare gir gaye.

Proof likhne ka fixed ritual hai — yaad rakho B-H-S: pehle Base case verify karo (LHS = RHS check), phir Hypothesis maan lo ki P(k)P(k) true hai, phir Step mein us hypothesis ko use karke P(k+1)P(k+1) prove karo. Sum formulas mein trick simple hai: dono taraf next term (yaani (k+1)(k+1)-th term) add kar do, aur algebra se target formula bana lo.

Sabse common galtiyan: (1) base case bhool jaana — bina pehle domino ke poori chain bekaar. (2) Sirf n=1,2,3n=1,2,3 check karke keh dena "ho gaya" — yeh proof nahi hai, kyunki n2n+41n^2-n+41 jaise example n=40n=40 tak prime dete hain par 4141 pe fail ho jaate hain. (3) Jo prove karna hai (P(k+1)P(k+1)) wahi maan lena — circular ho gaya. Yaad rakho: P(k)P(k) assume karte ho, P(k+1)P(k+1) derive karte ho. Jab problem mein ek se zyada purane cases chahiye (jaise Fibonacci), tab strong induction use karo jahan P(1)P(k)P(1)\dots P(k) sab maan sakte ho.

Go deeper — visual, from zero

Test yourself — Sequences & Series

Connections