Follow Us
Select Medium / माध्यम चुनें:
Eng (English) Beng (বাংলা) Hindi (हिन्दी)
WBB • Class XI • Mathematics • Ch 8
Estimated Time: 75 minutes
Study Progress: In Progress

Principle of Mathematical Induction

The Principle of Mathematical Induction (PMI) is an indispensable, foundational proof technique in discrete mathematics and algebra designed to rigorously prove that a given mathematical proposition P(n) holds true for all natural numbers n. Unlike empirical induction in the natural sciences which infers probable generalizations from finite observed instances, mathematical induction is a purely deductive, infallible logical method grounded in the Peano axioms and the Well-Ordering Principle of natural numbers. The execution of mathematical induction consists of two vital stages: the Base Step (or Basis of Induction), where the truth of the statement is explicitly verified for the initial natural number n = 1 (or a designated starting integer n₀), and the Inductive Step, where one assumes that the statement P(k) is valid for an arbitrary positive integer k (the Inductive Hypothesis) and uses this assumption to deduce with strict deductive certainty that P(k + 1) must also be true. Once both stages are established, an infinite logical cascade ensures that the statement is universally valid across all natural numbers, much like an unbroken sequence of falling dominoes. In the WBCHSE Class 11 curriculum, mathematical induction is systematically applied across three major mathematical paradigms: verifying summation formulas for algebraic and geometric series, establishing divisibility properties of polynomial and exponential expressions, and confirming structural inequalities across discrete domains.

Why This Chapter Matters

Mathematical induction is not merely an exam technique; it is the theoretical bedrock of modern computer science, algorithm design, software verification, and formal logic. In computer science and software engineering, recursive functions, dynamic programming algorithms, and inductive data structures such as linked lists, binary trees, and graphs are verified and proven correct using structural induction. Program verification engines and safety-critical aerospace software—such as flight control systems and space navigation code—use automated inductive theorem provers to prove that loops terminate and that algorithms never produce buffer overflows or catastrophic division-by-zero errors. In blockchain architecture and smart contracts, inductive formal verification guarantees that multi-million dollar decentralized protocols remain mathematically secure against state re-entrancy exploits. In pure mathematics and number theory, induction is used to prove fundamental theorems including the Binomial Theorem, the fundamental theorem of arithmetic, and matrix exponentiation identities. Mastery of mathematical induction in WBCHSE Class 11 cultivates impeccable deductive rigor, abstract algebraic reasoning, and precision thinking essential for high scores in board examinations as well as WBJEE, JEE Main, and advanced STEM careers.

Chapter Roadmap & Progression

1 1. Deductive vs. Inductive Reasonin...
2 2. The Principle of Mathematical In...
3 3. Application Category 1: Algebrai...
4 4. Application Category 2: Divisibi...
5 5. Application Category 3: Inequali...
6 6. Strong (Complete) Induction & Cl...

Complete Concept Guide (100% Curriculum Coverage)

1. Deductive vs. Inductive Reasoning, Mathematical Statements & Foundations

Mathematical induction occupies a unique position in epistemology: while carrying the name "induction," it is in fact an absolute, deductive proof method of unquestionable mathematical validity.

1.1 Deductive Reasoning vs. Empirical Induction
  • Empirical (Scientific) Induction: Observes a finite set of specific instances and infers a general law. For example, observing 1,000 white swans and concluding "all swans are white." This form of induction can never provide mathematical certainty, because a single counterexample (e.g., a black swan in Australia) destroys the hypothesis.
  • Deductive Reasoning: Derives specific truths necessarily and logically from accepted general axioms or premises. Mathematical induction belongs completely to deductive logic: it proves that a statement holds for infinitely many numbers without examining each one individually.
1.2 Mathematical Statements Involving Natural Numbers

A mathematical statement or proposition involving natural numbers is denoted by $P(n)$, where $n \in \mathbb{N} = \{1, 2, 3, 4, \dots\}$.

Example: Let $P(n)$ be the statement: $1 + 2 + 3 + \dots + n = \frac{n(n + 1)}{2}$.

  • For $n = 1$: $P(1)$ is the assertion $1 = \frac{1(1 + 1)}{2} = 1$ (True).
  • For $n = 2$: $P(2)$ is the assertion $1 + 2 = \frac{2(2 + 1)}{2} = 3$ (True).
  • Verifying $P(1), P(2), \dots, P(100)$ does NOT prove the statement for all $n$, because it might fail at $n = 101$. Only the Principle of Mathematical Induction provides universal proof.
1.3 The Well-Ordering Principle of Natural Numbers
Axiom (Well-Ordering Principle): Every non-empty subset of natural numbers $\mathbb{N}$ has a least (smallest) element.

The Principle of Mathematical Induction is logically equivalent to the Well-Ordering Principle: if a statement $P(n)$ were false for some natural numbers, the set of counterexamples would possess a smallest member, leading directly to a contradiction of the inductive step.

2. The Principle of Mathematical Induction (PMI) & The Domino Analogy

The Principle of Mathematical Induction formalizes an algorithmic procedure to guarantee universal truth over the infinite set of natural numbers in exactly two steps.

2.1 Formal Statement of PMI
Theorem (Principle of Mathematical Induction): Suppose there is a given statement $P(n)$ involving natural numbers $n$ such that:
  1. Base Step (Basis of Induction): The statement is true for $n = 1$, i.e., $\mathbf{P(1) \text{ is true}}$.
  2. Inductive Step: If the statement is true for an arbitrary positive integer $k$, i.e., assuming $\mathbf{P(k) \text{ is true}}$, it can be logically deduced that the statement is also true for $n = k + 1$, i.e., $\mathbf{P(k + 1) \text{ is true}}$.
Then, the proposition $\mathbf{P(n) \text{ is true for all natural numbers } n \in \mathbb{N}}$.
2.2 The Domino Cascade Analogy

To grasp the mechanics of mathematical induction intuitively, consider an endless line of dominoes stood on end, labeled $1, 2, 3, \dots, k, k + 1, \dots$:

  • The Base Step: Pushing over the first domino ($P(1)$ falls).
  • The Inductive Step: Ensuring the spacing is such that whenever any $k$-th domino falls, it must inevitably knock over the $(k + 1)$-th domino ($P(k) \implies P(k + 1)$).
  • The Inevitable Conclusion: As a consequence of the two conditions, every domino in the infinite chain will fall!
2.3 The Three Standard Writing Steps in Board Examinations
Phase Formal Name Required Board Action
Step 1 Base Step ($n = 1$) Evaluate LHS and RHS for $n = 1$; demonstrate LHS = RHS to confirm $P(1)$ is true.
Step 2 Inductive Hypothesis Write: "Let us assume that $P(k)$ is true for some positive integer $k \ge 1$." State the assumed equation/inequality.
Step 3 Inductive Step ($n = k + 1$) Prove $P(k + 1)$ is true using the truth of $P(k)$. Conclude: "Hence, by the Principle of Mathematical Induction, $P(n)$ is true for all $n \in \mathbb{N}$."

3. Application Category 1: Algebraic Summation Identities & Series

Summation identities form the most frequent category of induction questions in WBCHSE board examinations.

3.1 Standard Natural Number Summation Formulas
Core Classical Formulas:
  1. $$\sum_{r=1}^n r = 1 + 2 + 3 + \dots + n = \mathbf{\frac{n(n + 1)}{2}}$$
  2. $$\sum_{r=1}^n r^2 = 1^2 + 2^2 + 3^2 + \dots + n^2 = \mathbf{\frac{n(n + 1)(2n + 1)}{6}}$$
  3. $$\sum_{r=1}^n r^3 = 1^3 + 2^3 + 3^3 + \dots + n^3 = \mathbf{\left[\frac{n(n + 1)}{2}\right]^2} = \left(\sum_{r=1}^n r\right)^2$$
  4. $$\sum_{r=1}^n (2r - 1) = 1 + 3 + 5 + \dots + (2n - 1) = \mathbf{n^2}$$
3.2 The Inductive Transition in Series Proofs

In all series summation proofs, the inductive step follows a uniform, systematic algebraic pattern:

  1. By hypothesis, the sum of the first $k$ terms is known: $S_k = f(k)$.
  2. To find the sum of the first $(k + 1)$ terms, split the expression into the first $k$ terms plus the $(k + 1)$-th term: $$S_{k+1} = \underbrace{T_1 + T_2 + \dots + T_k}_{S_k} + T_{k+1} = f(k) + T_{k+1}$$
  3. Substitute the inductive hypothesis for $S_k$, factor out common terms (never expand polynomials prematurely!), and simplify into $f(k + 1)$.
3.3 Series of Reciprocal Products

Another classic archetype involves fractions with products in denominators:

$$\frac{1}{1 \cdot 2} + \frac{1}{2 \cdot 3} + \frac{1}{3 \cdot 4} + \dots + \frac{1}{n(n + 1)} = \mathbf{\frac{n}{n + 1}}$$ $$\frac{1}{1 \cdot 4} + \frac{1}{4 \cdot 7} + \frac{1}{7 \cdot 10} + \dots + \frac{1}{(3n - 2)(3n + 1)} = \mathbf{\frac{n}{3n + 1}}$$

4. Application Category 2: Divisibility Properties & Splitting Techniques

Proving that an expression $f(n)$ is divisible by a fixed integer $d$ for all $n \in \mathbb{N}$ requires a powerful algebraic decomposition strategy.

4.1 Meaning of Divisibility in $\mathbb{N}$

An expression $f(n)$ is divisible by an integer $d$ if and only if there exists an integer $\lambda$ such that:

$$f(n) = d \cdot \lambda, \quad \lambda \in \mathbb{Z}$$
4.2 The Master Splitting Technique for $f(k + 1)$

When proving that $f(n)$ is divisible by $d$:

  1. Assume the inductive hypothesis: $f(k) = d \cdot \lambda$ for some integer $\lambda$.
  2. Express the $(k + 1)$-th form $f(k + 1)$ so that the term $f(k)$ is isolated: $$\mathbf{f(k + 1) = A \cdot f(k) + \text{remainder term}}$$
  3. Substitute $f(k) = d \cdot \lambda$: $$f(k + 1) = A(d \cdot \lambda) + \text{remainder term} = d \cdot [A \lambda + \mu]$$
  4. Demonstrate that the remainder term is also an explicit multiple of $d$, thus proving $f(k + 1)$ is divisible by $d$.
4.3 Prototypical Divisibility Examples
  • Example A: $(x^n - y^n)$ is divisible by $(x - y)$ for all $n \in \mathbb{N}$. $$x^{k+1} - y^{k+1} = x \cdot x^k - y \cdot y^k = x(x^k - y^k) + y^k(x - y) = x[(x - y)\lambda] + y^k(x - y) = (x - y)[x\lambda + y^k]$$
  • Example B: $(7^n - 3^n)$ is divisible by $4$ for all $n \in \mathbb{N}$. $$7^{k+1} - 3^{k+1} = 7 \cdot 7^k - 3 \cdot 3^k = 7(7^k - 3^k) + 4 \cdot 3^k = 7(4\lambda) + 4 \cdot 3^k = 4[7\lambda + 3^k]$$
  • Example C: $(10^{2n-1} + 1)$ is divisible by $11$ for all $n \in \mathbb{N}$.

5. Application Category 3: Inequalities & Shifted Base Cases ($n \ge n_0$)

Inequality proofs require careful manipulation because inequalities, unlike equations, only transmit in one direction via transitivity.

5.1 Shifted Base Cases ($n \ge n_0$)

Many mathematical statements are not true for $n = 1, 2, \dots$, but become true after a certain threshold integer $n_0 > 1$.

Modified PMI Theorem: If a statement $P(n)$ satisfies:
  1. $P(n_0)$ is true for some initial integer $n_0 \in \mathbb{Z}$.
  2. For any $k \ge n_0$, the truth of $P(k)$ implies the truth of $P(k + 1)$.
Then $P(n)$ is true for all integers $\mathbf{n \ge n_0}$.

Example: $2^n < n!$ is false for $n = 1$ ($2 < 1$ false), $n = 2$ ($4 < 2$ false), and $n = 3$ ($8 < 6$ false). But for $n = 4$: $2^4 = 16 < 4! = 24$ (True!). Hence the base step begins at $\mathbf{n_0 = 4}$.

5.2 The Transitive Law of Inequalities

To prove $L(k + 1) < R(k + 1)$ from $L(k) < R(k)$:

$$\text{If } L(k + 1) \le M \quad \text{and} \quad M < R(k + 1) \implies \mathbf{L(k + 1) < R(k + 1)}$$
5.3 Bernoulli's Inequality
Theorem (Bernoulli's Inequality): For any real number $x > -1$ and any natural number $n \in \mathbb{N}$: $$\mathbf{(1 + x)^n \ge 1 + nx}$$

Proof by Induction:

  • For $n = 1$: $(1 + x)^1 = 1 + 1x$ (True with equality).
  • Assume true for $n = k$: $(1 + x)^k \ge 1 + kx$. Since $x > -1 \implies (1 + x) > 0$, multiply both sides by $(1 + x)$: $$(1 + x)^{k+1} \ge (1 + kx)(1 + x) = 1 + x + kx + kx^2 = 1 + (k + 1)x + \underbrace{kx^2}_{\ge 0} \ge 1 + (k + 1)x$$
  • Hence $P(k + 1)$ is true, completing the proof.

6. Strong (Complete) Induction & Classic Proof Fallacies

In advanced combinatorial and algebraic problems, the standard (weak) induction hypothesis is sometimes insufficient, necessitating the Principle of Strong Mathematical Induction.

6.1 Principle of Strong (Complete) Mathematical Induction
Definition: Let $P(n)$ be a statement concerning natural numbers $n$. Suppose:
  1. $P(1)$ is true.
  2. For any $k \ge 1$, if $\mathbf{P(1), P(2), P(3), \dots, P(k) \text{ are ALL true}}$, then $P(k + 1)$ is also true.
Then $P(n)$ is true for all natural numbers $n \in \mathbb{N}$.

Key Application: Proving the Fundamental Theorem of Arithmetic (every integer $n > 1$ can be factored into prime numbers). Factoring $k + 1 = a \cdot b$ requires inductive hypotheses on both $a$ and $b$, which are smaller than $k$, rather than merely on $k$.

6.2 Classic Induction Fallacy: "All Horses Are the Same Colour"

Consider the infamous false "proof" that all horses have the same colour:

  • Claim: In any set of $n$ horses, all horses have the same colour.
  • Base Step: For $n = 1$, a set of 1 horse trivially has only one colour.
  • Inductive Step: Consider a set of $k + 1$ horses $\{H_1, H_2, \dots, H_k, H_{k+1}\}$. Remove $H_{k+1}$; the remaining $k$ horses $\{H_1, \dots, H_k\}$ share the same colour by hypothesis. Next remove $H_1$; the remaining $k$ horses $\{H_2, \dots, H_{k+1}\}$ share the same colour. Since the two groups overlap, all $k+1$ horses must be the same colour!
  • The Critical Fallacy: The argument fails when transitioning from $k = 1$ to $k + 1 = 2$! For $n = 2$, the two subsets are $\{H_1\}$ and $\{H_2\}$; they have NO OVERLAPPING HORSE. Thus, the domino chain is severed between $1$ and $2$.

Key Formulas, Identities & Theorems

Principle of Mathematical Induction
Base Step + Inductive Step
Base step establishes the initial domino; inductive step proves the implication P(k) ⇒ P(k+1).
Sum of First n Natural Numbers
n(n + 1) / 2
Standard triangular number formula; first algebraic identity verified by PMI.
Sum of Squares of Natural Numbers
n(n + 1)(2n + 1) / 6
Crucial for calculus Riemann sums and variance calculations in statistics.
Sum of Cubes of Natural Numbers
[n(n + 1) / 2]²
The sum of the first n cubes equals the square of the sum of the first n integers.
Algebraic Divisibility Identity
(x - y) divides (xⁿ - yⁿ)
Proven inductively using x^(k+1) - y^(k+1) = x(x^k - y^k) + y^k(x - y).
Bernoulli's Inequality
(1 + x)ⁿ ≥ 1 + nx
Essential inequality in mathematical analysis, limit proofs, and financial compounding bounds.

Conceptual Solved Examples & Case Studies

Example 1
State the Principle of Mathematical Induction and verify the base case for the statement: \(1 + 3 + 5 + \dots + (2n - 1) = n^2\). [2 marks]
Step-by-Step Solution:
Solution:
Statement of the Principle of Mathematical Induction: Let $P(n)$ be a mathematical statement concerning natural numbers $n$. If:
  1. $P(1)$ is true (Base Step), and
  2. Assuming $P(k)$ is true implies that $P(k + 1)$ is true (Inductive Step),
then $P(n)$ is true for all natural numbers $n \in \mathbb{N}$.
Verification of the Base Case for $n = 1$: Let $P(n): 1 + 3 + 5 + \dots + (2n - 1) = n^2$. $$\text{LHS for } n = 1: \quad 2(1) - 1 = 1$$ $$\text{RHS for } n = 1: \quad 1^2 = 1$$ Since $\text{LHS} = \text{RHS} = 1$, the base proposition $P(1)$ is true.
Example 2
Prove by the Principle of Mathematical Induction that for all \(n \in \mathbb{N}\): \(1 \cdot 2 + 2 \cdot 3 + 3 \cdot 4 + \dots + n(n + 1) = \frac{n(n + 1)(n + 2)}{3}\). [3 marks]
Step-by-Step Solution:
Solution: Let $P(n)$ be the statement: $$P(n): 1 \cdot 2 + 2 \cdot 3 + 3 \cdot 4 + \dots + n(n + 1) = \frac{n(n + 1)(n + 2)}{3}$$
Step 1: Base Step ($n = 1$): $$\text{LHS} = 1 \cdot (1 + 1) = 1 \cdot 2 = 2$$ $$\text{RHS} = \frac{1(1 + 1)(1 + 2)}{3} = \frac{1 \cdot 2 \cdot 3}{3} = 2$$ Since $\text{LHS} = \text{RHS} = 2$, $P(1)$ is true.
Step 2: Inductive Hypothesis: Assume that $P(k)$ is true for some positive integer $k \ge 1$: $$1 \cdot 2 + 2 \cdot 3 + \dots + k(k + 1) = \frac{k(k + 1)(k + 2)}{3} \quad \text{--- (Equation 1)}$$
Step 3: Inductive Step ($n = k + 1$): We must show that $P(k + 1)$ is true, i.e.: $$1 \cdot 2 + 2 \cdot 3 + \dots + k(k + 1) + (k + 1)(k + 2) = \frac{(k + 1)(k + 2)(k + 3)}{3}$$ Starting from the LHS of $P(k + 1)$: $$\text{LHS} = \underbrace{1 \cdot 2 + 2 \cdot 3 + \dots + k(k + 1)}_{\text{Using Equation 1}} + (k + 1)(k + 2)$$ $$= \frac{k(k + 1)(k + 2)}{3} + (k + 1)(k + 2)$$ Factor out the common factor $(k + 1)(k + 2)$: $$= (k + 1)(k + 2) \left[\frac{k}{3} + 1\right] = (k + 1)(k + 2) \left[\frac{k + 3}{3}\right] = \frac{(k + 1)(k + 2)(k + 3)}{3} = \text{RHS}$$ Thus, $P(k + 1)$ is true whenever $P(k)$ is true.
Conclusion: By the Principle of Mathematical Induction, $P(n)$ is true for all $n \in \mathbb{N}$.
Example 3
Prove by Mathematical Induction that \(7^n - 3^n\) is divisible by \(4\) for all natural numbers \(n\). [3 marks]
Step-by-Step Solution:
Solution: Let $P(n)$ be the statement: $$P(n): 7^n - 3^n \text{ is divisible by } 4$$
Step 1: Base Step ($n = 1$): For $n = 1$: $$7^1 - 3^1 = 7 - 3 = 4 = 4 \times 1$$ Since $4$ is divisible by $4$, $P(1)$ is true.
Step 2: Inductive Hypothesis: Assume that $P(k)$ is true for some positive integer $k \ge 1$: $$7^k - 3^k = 4\lambda \quad \text{for some integer } \lambda \implies 7^k = 4\lambda + 3^k \quad \text{--- (Equation 1)}$$
Step 3: Inductive Step ($n = k + 1$): We must show that $7^{k+1} - 3^{k+1}$ is divisible by $4$: $$7^{k+1} - 3^{k+1} = 7 \cdot 7^k - 3^{k+1}$$ Substitute $7^k = 4\lambda + 3^k$ from Equation 1: $$= 7(4\lambda + 3^k) - 3^{k+1} = 7(4\lambda) + 7 \cdot 3^k - 3 \cdot 3^k$$ $$= 4(7\lambda) + (7 - 3) \cdot 3^k = 4(7\lambda) + 4 \cdot 3^k = 4[7\lambda + 3^k]$$ Since $\lambda$ and $k$ are positive integers, $[7\lambda + 3^k]$ is an integer $\mu$. $$7^{k+1} - 3^{k+1} = 4\mu, \quad \text{which is divisible by } 4.$$ Thus, $P(k + 1)$ is true whenever $P(k)$ is true.
Conclusion: By the Principle of Mathematical Induction, $7^n - 3^n$ is divisible by $4$ for all $n \in \mathbb{N}$.
Example 4
Prove by Mathematical Induction that for all \(n \in \mathbb{N}\): \(1^2 + 2^2 + 3^2 + \dots + n^2 = \frac{n(n + 1)(2n + 1)}{6}\). [4 marks]
Step-by-Step Solution:
Solution: Let $P(n)$ be the statement: $$P(n): 1^2 + 2^2 + 3^2 + \\dots + n^2 = \frac{n(n + 1)(2n + 1)}{6}$$
Step 1: Base Step ($n = 1$): $$\text{LHS} = 1^2 = 1$$ $$\text{RHS} = \frac{1(1 + 1)(2 \cdot 1 + 1)}{6} = \frac{1 \cdot 2 \cdot 3}{6} = \frac{6}{6} = 1$$ Since $\text{LHS} = \text{RHS} = 1$, $P(1)$ is true.
Step 2: Inductive Hypothesis: Assume that $P(k)$ is true for some positive integer $k \ge 1$: $$1^2 + 2^2 + 3^2 + \\dots + k^2 = \frac{k(k + 1)(2k + 1)}{6} \quad \text{--- (Equation 1)}$$
Step 3: Inductive Step ($n = k + 1$): We must show that $P(k + 1)$ is true: $$\text{LHS} = \underbrace{1^2 + 2^2 + \\dots + k^2}_{\text{Using Equation 1}} + (k + 1)^2 = \frac{k(k + 1)(2k + 1)}{6} + (k + 1)^2$$ Factor out the common term $(k + 1)$: $$= (k + 1) \left[\frac{k(2k + 1)}{6} + (k + 1)\right] = (k + 1) \left[\frac{2k^2 + k + 6k + 6}{6}\right]$$ $$= \frac{(k + 1)(2k^2 + 7k + 6)}{6}$$ Factor the quadratic polynomial $2k^2 + 7k + 6 = (k + 2)(2k + 3)$: $$= \frac{(k + 1)(k + 2)(2k + 3)}{6} = \frac{(k + 1)[(k + 1) + 1][2(k + 1) + 1]}{6} = \text{RHS of } P(k + 1)$$ Thus, $P(k + 1)$ is true whenever $P(k)$ is true.
Conclusion: By the Principle of Mathematical Induction, $P(n)$ is true for all $n \in \mathbb{N}$.
Example 5
Prove by Mathematical Induction that \(2^n < n!\) for all natural numbers \(n \ge 4\). [4 marks]
Step-by-Step Solution:
Solution: Let $P(n)$ be the statement: $$P(n): 2^n < n!, \quad \text{for } n \ge 4$$
Step 1: Base Step ($n = 4$): Since the proposition is defined for $n \ge 4$, our initial base integer is $n_0 = 4$: $$\text{LHS} = 2^4 = 16$$ $$\text{RHS} = 4! = 4 \times 3 \times 2 \times 1 = 24$$ Since $16 < 24$, the base statement $P(4)$ is strictly true.
Step 2: Inductive Hypothesis: Assume that $P(k)$ is true for an arbitrary integer $k \ge 4$: $$2^k < k! \quad \text{--- (Equation 1)}$$
Step 3: Inductive Step ($n = k + 1$): We must show that $2^{k+1} < (k + 1)!$: $$\text{LHS of } P(k + 1) = 2^{k+1} = 2 \cdot 2^k$$ By the inductive hypothesis (Equation 1), $2^k < k!$. Multiplying both sides by $2 > 0$: $$2 \cdot 2^k < 2 \cdot k! \implies 2^{k+1} < 2 \cdot k!$$ Since $k \ge 4$, it is obvious that $2 < k + 1$ (because $k \ge 4 \implies k + 1 \ge 5 > 2$). Therefore: $$2 \cdot k! < (k + 1) \cdot k! = (k + 1)!$$ By the transitive law of inequality: $$2^{k+1} < 2 \cdot k! < (k + 1)! \implies 2^{k+1} < (k + 1)!$$ Thus, $P(k + 1)$ is true whenever $P(k)$ is true for $k \ge 4$.
Conclusion: By the Principle of Mathematical Induction, $2^n < n!$ for all natural numbers $n \ge 4$.
Example 6
(i) Prove by Mathematical Induction that \(10^{2n-1} + 1\) is divisible by \(11\) for all \(n \in \mathbb{N}\). (ii) Prove that \(\frac{1}{1 \cdot 4} + \frac{1}{4 \cdot 7} + \dots + \frac{1}{(3n - 2)(3n + 1)} = \frac{n}{3n + 1}\). [5 marks]
Step-by-Step Solution:
Solution:
Part (i): Prove $10^{2n-1} + 1$ is divisible by $11$: [2.5 marks] Let $P(n): 10^{2n-1} + 1$ is divisible by $11$.
  • Base Step ($n = 1$): $10^{2(1)-1} + 1 = 10^1 + 1 = 11 = 11 \times 1$. Divisible by $11$. Thus $P(1)$ is true.
  • Hypothesis: Assume $P(k)$ is true: $10^{2k-1} + 1 = 11\lambda \implies 10^{2k-1} = 11\lambda - 1$.
  • Inductive Step ($n = k + 1$): $$10^{2(k+1)-1} + 1 = 10^{2k+1} + 1 = 10^2 \cdot 10^{2k-1} + 1 = 100(11\lambda - 1) + 1$$ $$= 100(11\lambda) - 100 + 1 = 100(11\lambda) - 99 = 11[100\lambda - 9]$$ Since $[100\lambda - 9]$ is an integer, $10^{2(k+1)-1} + 1$ is divisible by $11$.
Hence by PMI, $10^{2n-1} + 1$ is divisible by $11$ for all $n \in \mathbb{N}$.
Part (ii): Prove $\sum_{r=1}^n \frac{1}{(3r - 2)(3r + 1)} = \frac{n}{3n + 1}$: [2.5 marks] Let $Q(n): \frac{1}{1 \cdot 4} + \frac{1}{4 \cdot 7} + \dots + \frac{1}{(3n - 2)(3n + 1)} = \frac{n}{3n + 1}$.
  • Base Step ($n = 1$): $\text{LHS} = \frac{1}{1 \cdot 4} = \frac{1}{4}$; $\text{RHS} = \frac{1}{3(1) + 1} = \frac{1}{4}$. True!
  • Hypothesis: Assume $Q(k)$ is true: $\sum_{r=1}^k \frac{1}{(3r - 2)(3r + 1)} = \frac{k}{3k + 1}$.
  • Inductive Step ($n = k + 1$): $$\text{LHS} = \frac{k}{3k + 1} + \frac{1}{[3(k + 1) - 2][3(k + 1) + 1]} = \frac{k}{3k + 1} + \frac{1}{(3k + 1)(3k + 4)}$$ $$= \frac{1}{3k + 1} \left[k + \frac{1}{3k + 4}\right] = \frac{1}{3k + 1} \left[\frac{3k^2 + 4k + 1}{3k + 4}\right]$$ Factoring $3k^2 + 4k + 1 = (3k + 1)(k + 1)$: $$= \frac{(3k + 1)(k + 1)}{(3k + 1)(3k + 4)} = \frac{k + 1}{3k + 4} = \frac{k + 1}{3(k + 1) + 1} = \text{RHS of } Q(k + 1)$$
Hence by PMI, $Q(n)$ is true for all $n \in \mathbb{N}$.

Common Misconceptions & Examiner Traps

Common Misconception

Omitting the Base Step P(1) and jumping directly to the inductive step

Scientific Reality & Correction

Always explicitly test and verify the base case P(1) (or P(n₀)).

Common Misconception

Circular Reasoning: Assuming P(k+1) is true to prove P(k+1)

Scientific Reality & Correction

Start strictly from the LHS of P(k+1), inject the inductive hypothesis P(k), and simplify forward until it matches the RHS.

Common Misconception

Premature polynomial expansion in series summation proofs

Scientific Reality & Correction

Always factor out common terms like (k + 1) immediately before expanding remaining terms.

Common Misconception

Failing to isolate f(k) in divisibility proofs

Scientific Reality & Correction

Decompose f(k+1) explicitly into A·f(k) plus a residual term: f(k+1) = A·(d·λ) + d·μ.

Common Misconception

Testing the wrong base case in inequality proofs with shifted domains (n ≥ n₀)

Scientific Reality & Correction

Carefully read domain restrictions: if n ≥ 4, the base case is n₀ = 4, not n = 1.

Mathematical Induction Architecture, Domino Cascade & Proof Steps Diagram

P(n) Principle of Mathematical Induction Architecture Inductive Reasoning | Base & Induction Steps | Series, Divisibility & Inequalities | Domino Cascade The Domino Effect (Induction Cascade) P(1) Base Step P(1) P(2) ••• P(k) Hypothesis P(k) P(k+1) Inductive Step P(k+1) ∀ n ∈ ℕ Propagates to all n ∈ ℕ The 3 Golden Steps of Mathematical Induction 1 Step 1 (Base Step): Prove statement P(1) is true (or n₀) 2 Step 2 (Inductive Hypothesis): Assume P(k) is true for k ≥ 1 3 Step 3 (Inductive Step): Deduce that P(k+1) is true using P(k) ∴ By PMI, statement P(n) is true for all n ∈ ℕ Standard Summation Identities 1 + 2 + ... + n = n(n+1)/2 1² + 2² + ... + n² = n(n+1)(2n+1)/6 1³ + 2³ + ... + n³ = [n(n+1)/2]² Divisibility Theorems (xⁿ - yⁿ) is divisible by (x - y) 7ⁿ - 3ⁿ is divisible by 4 for all n ∈ ℕ Algebraic trick: f(k+1) = A·f(k) + remainder Inequalities & Custom Bases (n ≥ n₀) Bernoulli: (1 + x)ⁿ ≥ 1 + nx for x > -1 2ⁿ < n! for all n ≥ 4 (Base case n₀ = 4) Transitivity: A > B and B > C ⇒ A > C Weak vs Strong Induction Weak Induction: P(k) ⇒ P(k+1) Strong Induction: P(1) ∧ ... ∧ P(k) ⇒ P(k+1) Well-Ordering Principle of Natural Numbers

Chapter Summary & 10 Key Takeaways

Takeaway 1
Mathematical induction is a deductive proof technique used to establish universal mathematical statements P(n) for all natural numbers n ∈ ℕ.
Takeaway 2
Base Step: Proves that the proposition P(1) is true (or P(n₀) for statements defined for n ≥ n₀).
Takeaway 3
Inductive Hypothesis: Assumes that the proposition P(k) is true for an arbitrary positive integer k.
Takeaway 4
Inductive Step: Rigorously proves that the truth of P(k) necessitates the truth of P(k + 1).
Takeaway 5
Conclusion: If both the Base Step and Inductive Step are validated, P(n) is true for all n ∈ ℕ by the Principle of Mathematical Induction.
Takeaway 6
Sum of first n natural numbers: 1 + 2 + ... + n = n(n + 1)/2; sum of squares: n(n + 1)(2n + 1)/6; sum of cubes: [n(n + 1)/2]².
Takeaway 7
Divisibility proofs rely on splitting f(k + 1) to extract the inductive hypothesis f(k): e.g., 7^(k+1) - 3^(k+1) = 7(7^k - 3^k) + 4·3^k.
Takeaway 8
Inequality proofs often involve base steps starting at n₀ > 1 (e.g., 2ⁿ < n! is valid for all n ≥ 4).
Takeaway 9
Bernoulli's Inequality states that (1 + x)ⁿ ≥ 1 + nx for all x > -1 and n ∈ ℕ.
Takeaway 10
Strong Mathematical Induction assumes P(1), P(2), ..., P(k) are all true to deduce P(k + 1), logically equivalent to standard weak induction.

Check Your Understanding (Diagnostic Practice Questions)

Diagnostic questions testing core conceptual clarity. Answers are hidden initially — solve each problem first, then click to reveal the step-by-step verified solution.

1
What are the two essential steps required to complete a proof by Mathematical Induction?
Reveal Answer & Explanation
Answer: The two essential steps are: (1) The Base Step: proving P(1) is true, and (2) The Inductive Step: proving that if P(k) is assumed true, then P(k + 1) must also be true.
Recall the domino analogy: pushing the first domino and ensuring each domino knocks the next.
2
For what smallest positive integer n₀ does the inequality 2ⁿ > n² become true?
Reveal Answer & Explanation
Answer: For n ≥ 5, the inequality 2ⁿ > n² holds true for all subsequent integers (smallest continuous threshold n₀ = 5).
Test small values of n: for n=1 (2>1, true), n=2 (4>4, false), n=3 (8>9, false), n=4 (16>16, false), n=5 (32>25, true).
3
In proving 2^(3n) - 1 is divisible by 7, what is the value of 2^(3(1)) - 1 in the base step?
Reveal Answer & Explanation
Answer: For n = 1, 2^(3·1) - 1 = 2³ - 1 = 8 - 1 = 7, which is divisible by 7.
Substitute n = 1 into 2^(3n) - 1.
4
Evaluate the sum 1³ + 2³ + 3³ + ... + 10³ using the standard induction formula.
Reveal Answer & Explanation
Answer: [10 × 11 / 2]² = [55]² = 3,025.
Use [n(n + 1)/2]² with n = 10.
5
Why does the statement "n = n + 1" fail under the Principle of Mathematical Induction?
Reveal Answer & Explanation
Answer: The base step fails completely: for n = 1, 1 = 1 + 1 ⇒ 1 = 2, which is false. Without a valid base step, induction cannot begin.
Check whether the base step P(1) holds.
Finished Studying This Chapter?
READY TO PRACTICE?

Timed CBT Practice Tests (Exam Simulator)

Put your concepts to the test with official curriculum-aligned Foundation and Advanced practice tests. Get instant accuracy scores, time metrics, and step-by-step verified explanations.