The Big Idea
How do you prove that a statement is true for every natural number — not just 1, 2, 3, but ALL of them, infinitely many?
Mathematical induction is the answer. It’s like a chain of dominoes: you show that the first domino falls (base case), and that whenever one domino falls, the next one falls too (inductive step). Then every domino must eventually fall.
This chapter appears in CBSE Class 11 (Chapter 4) and is straightforward once you get the format right. JEE Main rarely tests pure induction but the technique underlies many proofs across topics.
The Principle
The Principle of Mathematical Induction (PMI) states:
Let P(n) be a statement involving the natural number n. If:
- Base case: P(1) is true (or P(n0) for some starting value n0)
- Inductive step: Whenever P(k) is true for some arbitrary k≥1, then P(k+1) is also true
Then P(n) is true for all natural numbers n≥1 (or n≥n0).
The structure of every induction proof is identical. Learn it like a template: (1) State P(n). (2) Verify P(1). (3) Assume P(k) (the inductive hypothesis). (4) Prove P(k+1) using the assumption. (5) Conclude. Never deviate from this structure.
Strong vs Weak Induction
Weak (simple) induction: Assumes P(k) is true to prove P(k+1).
Strong induction: Assumes P(1),P(2),…,P(k) are all true to prove P(k+1). Useful when P(k+1) depends not just on P(k) but on multiple earlier cases (e.g., Fibonacci-type recurrences).
For CBSE and most JEE problems, weak induction suffices.
Worked Examples
Prove: 1+2+3+⋯+n=2n(n+1) for all n∈N.
Step 1: State P(n)
P(n):k=1∑nk=2n(n+1)
Step 2: Base Case — P(1)
LHS =1. RHS =21×2=1. LHS = RHS, so P(1) is true. ✓
Step 3: Inductive Hypothesis
Assume P(k) is true for some k≥1:
1+2+⋯+k=2k(k+1)
Step 4: Prove P(k+1)
We need to show: 1+2+⋯+k+(k+1)=2(k+1)(k+2)
Starting from the left:
1+2+⋯+k+(k+1)=2k(k+1)+(k+1)
=(k+1)(2k+1)=(k+1)⋅2k+2=2(k+1)(k+2)
This is exactly the RHS of P(k+1). ✓
Step 5: Conclusion
By the Principle of Mathematical Induction, P(n) is true for all n∈N.
Example 2 — Sum of Squares
Prove: 12+22+⋯+n2=6n(n+1)(2n+1) for all n∈N.
Base case (n=1): LHS =1, RHS =61⋅2⋅3=1. ✓
Inductive hypothesis: Assume k=1∑mk2=6m(m+1)(2m+1) for some m≥1.
Inductive step: Show the formula holds for m+1.
k=1∑m+1k2=6m(m+1)(2m+1)+(m+1)2
=(m+1)[6m(2m+1)+(m+1)]
=(m+1)⋅6m(2m+1)+6(m+1)
=(m+1)⋅62m2+m+6m+6=(m+1)⋅62m2+7m+6
=6(m+1)(m+2)(2m+3)=6(m+1)[(m+1)+1][2(m+1)+1]
This is P(m+1). ✓ Conclusion: true for all n∈N.
Example 3 — Divisibility Proof
Prove: 7n−1 is divisible by 6 for all n∈N.
Base case (n=1): 71−1=6=6×1. Divisible by 6. ✓
Inductive hypothesis: Assume 6∣(7k−1), i.e., 7k−1=6m for some integer m.
So 7k=6m+1.
Inductive step: Show 6∣(7k+1−1).
7k+1−1=7⋅7k−1=7(6m+1)−1=42m+7−1=42m+6=6(7m+1)
Since 7m+1 is an integer, 6∣(7k+1−1). ✓
Conclusion: 7n−1 is divisible by 6 for all n∈N.
Example 4 — Inequality Proof (JEE Level)
Prove: 2n>n for all n∈N.
Base case (n=1): 21=2>1. ✓
Inductive hypothesis: Assume 2k>k for some k≥1.
Inductive step: Show 2k+1>k+1.
2k+1=2⋅2k>2k(using inductive hypothesis)
We need 2k>k+1, which means k>1. For k≥2, this is true.
For k=1 (base case already checked): 22=4>2. ✓
So for k≥1: 2k+1=2⋅2k>2k≥k+1 (since k≥1⇒2k≥k+1).
Therefore 2k+1>k+1. ✓ Conclusion holds for all n≥1.
Example 5 — De Moivre’s Theorem Preview
Prove: (cosθ+isinθ)n=cos(nθ)+isin(nθ) for all n∈N.
Base case (n=1): (cosθ+isinθ)1=cosθ+isinθ=cos(1⋅θ)+isin(1⋅θ). ✓
Inductive hypothesis: Assume (cosθ+isinθ)k=cos(kθ)+isin(kθ).
Inductive step:
(cosθ+isinθ)k+1=(cosθ+isinθ)k⋅(cosθ+isinθ)
=[cos(kθ)+isin(kθ)][cosθ+isinθ]
=cos(kθ)cosθ−sin(kθ)sinθ+i[cos(kθ)sinθ+sin(kθ)cosθ]
=cos(kθ+θ)+isin(kθ+θ)=cos((k+1)θ)+isin((k+1)θ)
This is P(k+1). ✓ De Moivre’s theorem is proved.
Common Mistakes to Avoid
Mistake 1: Proving only the base case and claiming the result is proved. The inductive step is mandatory. Without it, you’ve only checked one value — not all infinitely many.
Mistake 2: In the inductive step, assuming what you want to prove (circular reasoning). The correct flow is: assume P(k) → then prove P(k+1). Never start by assuming P(k+1) is true.
Mistake 3: Forgetting to state the inductive hypothesis explicitly. CBSE examiners mark off for missing “Assume P(k) is true” — even if the rest of the proof is correct.
Mistake 4: In divisibility proofs, not substituting properly. When P(k) says 6∣(7k−1), write 7k=6m+1 explicitly before working on 7k+1. Algebraic substitution is the key step that most students skip.
Mistake 5: Ending the proof without a conclusion. Always write “By the Principle of Mathematical Induction, P(n) is true for all n∈N.” This closing line is required in CBSE for full marks.
Practice Questions
Q1. Prove by induction: 1+3+5+⋯+(2n−1)=n2.
Base: n=1: LHS = 1, RHS = 1. ✓. Assume 1+3+⋯+(2k−1)=k2. Add (2k+1): LHS = k2+(2k+1)=(k+1)2 = RHS for n=k+1. ✓ Sum of first n odd numbers = n2.
Q2. Prove: n3+2n is divisible by 3 for all n∈N.
Base: 13+2(1)=3, divisible by 3. ✓ Assume k3+2k=3m. (k+1)3+2(k+1)=k3+3k2+3k+1+2k+2=(k3+2k)+3k2+3k+3=3m+3(k2+k+1)=3(m+k2+k+1). Divisible by 3. ✓
Q3. Prove: 2n≥n+1 for all n≥1.
Base: 21=2≥2=1+1. ✓ Assume 2k≥k+1. Then 2k+1=2⋅2k≥2(k+1)=2k+2≥k+2=(k+1)+1 (since k≥1 gives 2k+2≥k+2). ✓
Q4. Prove by induction: 1⋅2+2⋅3+⋯+n(n+1)=3n(n+1)(n+2).
Base (n=1): LHS = 1×2 = 2, RHS = 31⋅2⋅3=2. ✓ Assume true for k. Adding (k+1)(k+2): 3k(k+1)(k+2)+(k+1)(k+2)=(k+1)(k+2)(3k+1)=(k+1)(k+2)⋅3k+3=3(k+1)(k+2)(k+3). ✓
FAQs
Can induction be used to prove something false?
If you make an error in the inductive step, you can “prove” false statements. A famous example is the “all horses are the same colour” pseudo-proof, where the inductive step secretly fails at n=2. This is why carefully writing out the proof step-by-step matters.
What’s the difference between proof by induction and proof by contradiction?
Induction proves statements about all natural numbers by establishing a chain of implications. Contradiction assumes the statement is false and derives a logical impossibility. Both are valid proof techniques; the right one depends on the problem structure. Induction shines for recursive formulas and divisibility; contradiction works well for irrationality proofs.
What if the base case is n=0 or n=2?
The base case doesn’t have to be n=1. If you want to prove P(n) for all n≥0, your base case is P(0). If the statement only holds for n≥2, start with P(2) as the base case. The conclusion then reads “true for all n≥2.”
Does induction prove a formula or discover it?
Induction only proves a formula — it cannot discover it. You must already know (or guess) the formula before using induction. Discovery usually comes from pattern observation or other techniques (like the Gauss trick for sum of natural numbers).
Is there a “backward” version of induction?
Yes — “downward induction” starts from a large value and proves the statement for smaller values. This is rarely tested in CBSE/JEE but is used in some advanced proofs (like AM-GM for all n using Cauchy’s forward-backward induction).
Additional Worked Examples
Prove: (1+11)(1+21)⋯(1+n1)=n+1 for all n∈N.
Base case (n=1): (1+11)=2=1+1. ✓
Inductive hypothesis: Assume the product up to k equals k+1.
Inductive step: Multiply both sides by (1+k+11):
(k+1)×(1+k+11)=(k+1)×k+1k+2=k+2=(k+1)+1
This is P(k+1). ✓
Example 7 — Recurrence relation
Prove: If a1=1 and an+1=2an+1, then an=2n−1 for all n≥1.
Base case: a1=21−1=1. ✓
Inductive hypothesis: ak=2k−1.
Inductive step: ak+1=2ak+1=2(2k−1)+1=2k+1−2+1=2k+1−1. ✓
For recurrence relation proofs, the inductive step always substitutes the hypothesis into the recurrence formula. The pattern: assume the closed form for k, plug into the recurrence to get the closed form for k+1.
Common Induction Patterns in JEE
| Pattern | Example | Key technique |
|---|
| Sum formulas | ∑k=n(n+1)/2 | Add (k+1) to both sides |
| Divisibility | 7n−1 divisible by 6 | Write 7k=6m+1 |
| Inequalities | 2n>n | Use 2k≥k+1 for k≥1 |
| Products | (1+1)(1+1/2)⋯=n+1 | Multiply both sides |
| Recurrences | an+1=2an+1 | Substitute closed form |
Additional Practice Questions
Q5. Prove: 1⋅21+2⋅31+⋯+n(n+1)1=n+1n.
Base (n=1): 21=21. ✓
Assume ∑i=1ki(i+1)1=k+1k. Add (k+1)(k+2)1:
k+1k+(k+1)(k+2)1=(k+1)(k+2)k(k+2)+1=(k+1)(k+2)k2+2k+1=(k+1)(k+2)(k+1)2=k+2k+1. ✓
Q6. Prove that n!>2n for all n≥4.
Base (n=4): 4!=24>16=24. ✓
Assume k!>2k for some k≥4.
(k+1)!=(k+1)⋅k!>(k+1)⋅2k≥2⋅2k=2k+1 (since k+1≥5>2). ✓