Neural Sync Active
Mathematical Induction
Registry Synced
Mathematical Induction
1293 words
6 min read
Reading compass
Now · 🎯 Learning Objectives
Mathematical Induction
🎯 Learning Objectives
- State the principle of mathematical induction (weak form)
- Apply induction to prove formulas, inequalities, and divisibility
- Use strong induction when multiple previous cases are needed
- Recognise which form of induction is appropriate
- Construct complete inductive proofs with base case and inductive step
4.1 Intuition: The Domino Effect
Mathematical induction works like a row of dominoes:
- Base case: Knock over the first domino.
- Inductive step: If domino k falls, domino k+1 falls.
- Conclusion: All dominoes fall.
🔑 Key Insight: Induction proves statements about infinitely many natural numbers using only two steps.
4.2 Weak (Simple) Induction
Principle
To prove P(n) for all n∈N (starting from some n0):
- Base case: Prove P(n0) is true.
- Inductive hypothesis: Assume P(k) is true for some k≥n0.
- Inductive step: Show P(k)→P(k+1).
- Conclusion: By induction, P(n) is true for all n≥n0.
Example 1: Sum of First n Natural Numbers
Theorem: 1+2+3+⋯+n=2n(n+1) for all n≥1.
Proof:
- Base case (n=1): LHS = 1, RHS = 21(2)=1. ✓
- Inductive hypothesis: Assume 1+2+⋯+k=2k(k+1).
- Inductive step: Show for k+1:
Which is 2(k+1)((k+1)+1). ✓ □
Example 2: Sum of Squares
Theorem: ∑i=1ni2=6n(n+1)(2n+1).
Proof:
- Base (n=1): 1=61⋅2⋅3=1. ✓
- IH: Assume for n=k.
- Step: ∑i=1k+1i2=6k(k+1)(2k+1)+(k+1)2
Example 3: Divisibility
Theorem: 7n−1 is divisible by 6 for all n≥1.
Proof:
- Base (n=1): 71−1=6, divisible by 6. ✓
- IH: Assume 7k−1 is divisible by 6, i.e., 7k=6m+1.
- Step: 7k+1−1=7⋅7k−1=7(6m+1)−1=42m+7−1=42m+6=6(7m+1). Thus 7k+1−1 is divisible by 6. □
Example 4: Inequality
Theorem: 2n>n for all n≥1.
Proof:
- Base (n=1): 21=2>1. ✓
- IH: Assume 2k>k.
- Step: 2k+1=2⋅2k>2⋅k=k+k≥k+1 (since k≥1). Thus 2k+1>k+1. □
Example 5: Sum of Odd Numbers
Theorem: The sum of the first n odd numbers is n2.
Proof:
- Base (n=1): 1=12. ✓
- IH: Assume 1+3+5+⋯+(2k−1)=k2.
- Step: Add the next odd number (2k+1):
4.3 Strong Induction
Principle
Same as weak induction, but the inductive hypothesis assumes P holds for all smaller numbers, not just k.
- Base case(s): Prove P(n0),P(n0+1),…,P(m).
- Inductive hypothesis: Assume P(j) for all j with n0≤j≤k.
- Inductive step: Use this to prove P(k+1).
When to Use Strong Induction
When proving P(k+1) requires knowing P for multiple earlier values (not just k).
Example 1: Prime Factorization
Theorem: Every integer n≥2 can be expressed as a product of primes.
Proof (strong induction):
- Base (n=2): 2 itself is prime. ✓
- IH: Assume every integer from 2 up to k has a prime factorization.
- Step: Consider n=k+1.
- If k+1 is prime, done.
- If k+1 is composite, then k+1=ab where 2≤a,b≤k.
- By IH, a and b have prime factorizations. Their product is a prime factorization of k+1. □
Example 2: Fibonacci Numbers
Theorem: The Fibonacci numbers Fn satisfy Fn≥(23)n−2 for n≥1, where F1=F2=1 and Fn=Fn−1+Fn−2.
Proof (strong induction):
- Base (n=1,2): F1=1≥(23)−1=32 ✓; F2=1≥(23)0=1 ✓.
- IH: Assume true for all j≤k.
- Step: For n=k+1:
Example 3: Binary Representation
Theorem: Every positive integer can be written as a sum of distinct powers of 2.
Proof (strong induction):
- Base (n=1): 1=20. ✓
- IH: True for all j<n.
- Step: Let 2k be the largest power of 2 with 2k≤n.
- If n=2k, done.
- If n>2k, write n=2k+r, where r<2k and r<n.
- By IH, r is a sum of distinct powers of 2, none exceeding 2k−1 (since r<2k).
- Together with 2k, we get the representation. □
4.4 Induction Pitfalls
| Mistake | Why It's Wrong | Fix |
|---|---|---|
| Skipping the base case | The dominoes never start falling | Always prove at least one base case |
| Assuming P(k+1) to prove P(k+1) | Circular reasoning | Only assume P(k) (or P(j) for j≤k ) |
| Wrong base value | Statement may be false for early n | Check the first few values |
| Weak induction when strong needed | Can't reach earlier needed cases | Use strong induction |
📊 Formula Summary
| Form | Hypothesis | Step |
|---|---|---|
| Weak induction | P(k) true | Prove P(k+1) |
| Strong induction | P(n0),…,P(k) true | Prove P(k+1) |
✅ Practice Questions
Q1: Prove 1+4+9+⋯+n2=6n(n+1)(2n+1) by induction (already done above — review it).
Q2: Prove n!≥2n−1 for n≥1.
SolutionBase (n=1): 1!=1≥20=1. ✓ IH: k!≥2k−1. Step: (k+1)!=(k+1)k!≥(k+1)2k−1≥2⋅2k−1=2k (since k+1≥2 for k≥1). Thus (k+1)!≥2k. □ Q3: Prove 2n≥n2 for n≥4. SolutionBase (n=4): 24=16≥42=16. ✓ IH: 2k≥k2 for k≥4. Step: 2k+1=2⋅2k≥2k2. Need to show 2k2≥(k+1)2=k2+2k+1. 2k2−(k2+2k+1)=k2−2k−1=(k−1)2−2. For k≥4, (k−1)2−2≥9−2=7>0. So 2k2>(k+1)2 and 2k+1≥2k2≥(k+1)2. □ Q4: Prove that any amount of postage ≥8 cents can be formed using 3-cent and 5-cent stamps. SolutionBase: 8=3+5, 9=3+3+3, 10=5+5. ✓ IH: True for all values from 8 to k. Step: For k+1≥11, consider (k+1)−3=k−2≥8. By IH, k−2 can be formed. Add one 3-cent stamp. □ Q5: Prove that Fn<2n for all n≥1 (Fibonacci numbers). SolutionBase: F1=1<21, F2=1<22. ✓ IH: Assume Fk<2k and Fk−1<2k−1. Step: Fk+1=Fk+Fk−1<2k+2k−1=3⋅2k−1=23⋅2k<2⋅2k=2k+1. □ Join Discord PreviousLogical FallaciesNextAdvanced Proofs