Question
How does mathematical induction work, what is the strong form, and what are the common proof patterns for CBSE and JEE?
Solution — Step by Step
Mathematical induction proves a statement is true for all natural numbers .
Step 1 — Base case: Verify is true (usually ).
Step 2 — Inductive hypothesis: Assume is true for some arbitrary .
Step 3 — Inductive step: Using the assumption, prove is true.
If both steps succeed, holds for all .
graph TD
A[Statement P of n to prove for all n] --> B[Step 1: Verify P of n0 - base case]
B --> C{Is P of n0 true?}
C -->|No| D[Statement is false, find counterexample]
C -->|Yes| E[Step 2: Assume P of k true]
E --> F[Step 3: Prove P of k+1 using P of k]
F --> G{Can you derive P of k+1?}
G -->|Yes| H[Done: P of n true for all n]
G -->|No| I[Try strong induction or different approach]
In strong induction, instead of assuming only , we assume are ALL true. Then we prove .
Use strong induction when proving needs more than just — for example, when the recurrence depends on or earlier terms.
Classic example: Proving every integer can be written as a product of primes. To factor , we need both and (both less than ) to have prime factorisations — this requires the hypothesis for ALL values less than , not just .
Pattern 1 — Sum formulas: Prove . In the inductive step, add to both sides of .
Pattern 2 — Divisibility: Prove is divisible by 6. Write and show each part is divisible by 6.
Pattern 3 — Inequality: Prove for all . Use (for ).
Why This Works
Induction works because of the well-ordering principle: every non-empty set of natural numbers has a smallest element. If failed for some , there would be a smallest such . But the base case covers the smallest starting point, and the inductive step means failure at implies failure at — contradicting the minimality. So no failure can exist.
For CBSE 11 boards, induction questions are almost always sum formulas or divisibility. The marking scheme gives 1 mark for the base case, 1 for stating the inductive hypothesis, and 2-3 for completing the inductive step. Never skip writing the hypothesis explicitly.
Alternative Method
Some induction problems can be solved without induction by using direct algebraic methods. For example, can be proved by the Gauss pairing trick (pair first and last terms). However, for the board exam, if the question says “prove by induction,” you MUST use induction or you get zero marks.
Common Mistake
The most common error: proving the base case and the inductive step, but never clearly STATING the inductive hypothesis. Students jump from “let be true” to algebraic manipulation without explicitly writing what says. In board exams, this costs marks. Always write: “Assume is true, i.e., [write the full statement with ].”