Mathematical Induction — Strong Form, Well-Ordering, Typical Proof Patterns

medium CBSE JEE-MAIN 4 min read

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 P(n)P(n) is true for all natural numbers nn0n \geq n_0.

Step 1 — Base case: Verify P(n0)P(n_0) is true (usually n0=1n_0 = 1).

Step 2 — Inductive hypothesis: Assume P(k)P(k) is true for some arbitrary kn0k \geq n_0.

Step 3 — Inductive step: Using the assumption, prove P(k+1)P(k+1) is true.

If both steps succeed, P(n)P(n) holds for all nn0n \geq n_0.

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 P(k)P(k), we assume P(n0),P(n0+1),,P(k)P(n_0), P(n_0+1), \ldots, P(k) are ALL true. Then we prove P(k+1)P(k+1).

Use strong induction when proving P(k+1)P(k+1) needs more than just P(k)P(k) — for example, when the recurrence depends on P(k1)P(k-1) or earlier terms.

Classic example: Proving every integer n2n \geq 2 can be written as a product of primes. To factor n=a×bn = a \times b, we need both aa and bb (both less than nn) to have prime factorisations — this requires the hypothesis for ALL values less than nn, not just n1n-1.

Pattern 1 — Sum formulas: Prove 1+2++n=n(n+1)21 + 2 + \ldots + n = \frac{n(n+1)}{2}. In the inductive step, add (k+1)(k+1) to both sides of P(k)P(k).

Pattern 2 — Divisibility: Prove n3nn^3 - n is divisible by 6. Write (k+1)3(k+1)=(k3k)+3k(k+1)(k+1)^3 - (k+1) = (k^3 - k) + 3k(k+1) and show each part is divisible by 6.

Pattern 3 — Inequality: Prove 2n>n2^n > n for all n1n \geq 1. Use 2k+1=22k>2kk+12^{k+1} = 2 \cdot 2^k > 2k \geq k + 1 (for k1k \geq 1).


Why This Works

Induction works because of the well-ordering principle: every non-empty set of natural numbers has a smallest element. If P(n)P(n) failed for some nn, there would be a smallest such nn. But the base case covers the smallest starting point, and the inductive step means failure at nn implies failure at n1n-1 — 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, 1+2++n=n(n+1)21 + 2 + \ldots + n = \frac{n(n+1)}{2} 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 P(k)P(k) be true” to algebraic manipulation without explicitly writing what P(k)P(k) says. In board exams, this costs marks. Always write: “Assume P(k)P(k) is true, i.e., [write the full statement with kk].”

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →