The Principle of Mathematical Induction

Mathematical induction is a rigorous proof method, specially used to prove propositions related to positive integers. Understanding its principle gives you a powerful proof tool.

The Basic Principle

The principle of mathematical induction

To prove that the proposition P(n)P(n) holds for all positive integers nn0n \geq n_0, it suffices to prove:

  1. The base case: P(n0)P(n_0) holds
  2. The inductive step: assuming P(k)P(k) holds (the inductive hypothesis), prove that P(k+1)P(k+1) also holds

The Steps of the Proof

The standard steps for proving a proposition using mathematical induction:

Step 1: The Base Case

Verify that the proposition holds for the initial value n=n0n = n_0 (usually 1).

Example: prove that P(1)P(1) holds

Step 2: The Inductive Hypothesis

Assume that the proposition holds for n=kn = k (kn0k \geq n_0).

Example: assume P(k)P(k) holds

Step 3: The Inductive Step

On the basis of the inductive hypothesis, prove that the proposition also holds for n=k+1n = k+1.

Example: using the fact that P(k)P(k) holds, prove that P(k+1)P(k+1) holds

Step 4: Conclusion

By the principle of mathematical induction, the proposition holds for all nn0n \geq n_0.

Why is mathematical induction valid?

The validity of mathematical induction rests on the well-ordering property of the natural numbers: every nonempty set of natural numbers has a least element.

Suppose the proposition P(n)P(n) does not hold for all nn0n \geq n_0. Then there exists a least m>n0m > n_0 such that P(m)P(m) does not hold.

But:

  • P(n0)P(n_0) holds (the base case)
  • P(m1)P(m-1) holds (because mm is the least counterexample)
  • By the inductive step, P(m)P(m) should hold

This is a contradiction! So the proposition holds for all nn0n \geq n_0.

This is why both steps are indispensable:

  • Without the base case, the first domino does not fall
  • Without the inductive step, there is no chain reaction among the dominoes

Simple Examples

Example 1: Proving a Summation Formula

Proposition: prove that 1+2+3++n=n(n+1)21 + 2 + 3 + \cdots + n = \frac{n(n+1)}{2} for all positive integers nn.

Proof:

Base case: when n=1n = 1, left side=1,right side=1×22=1\text{left side} = 1, \quad \text{right side} = \frac{1 \times 2}{2} = 1 The equality holds.

Inductive hypothesis: assume the equality holds for n=kn = k, i.e., 1+2+3++k=k(k+1)21 + 2 + 3 + \cdots + k = \frac{k(k+1)}{2}

Inductive step: prove that the equality also holds for n=k+1n = k+1.

1+2+3++k+(k+1)=k(k+1)2+(k+1)(using the inductive hypothesis)=k(k+1)+2(k+1)2=(k+1)(k+2)2=(k+1)[(k+1)+1]2\begin{aligned} 1 + 2 + 3 + \cdots + k + (k+1) &= \frac{k(k+1)}{2} + (k+1) \quad \text{(using the inductive hypothesis)} \\ &= \frac{k(k+1) + 2(k+1)}{2} \\ &= \frac{(k+1)(k+2)}{2} \\ &= \frac{(k+1)[(k+1)+1]}{2} \end{aligned}

This is exactly the form of the formula for n=k+1n = k+1.

Conclusion: by mathematical induction, the equality holds for all positive integers nn.

Example 2: Proving a Power Inequality

Proposition: prove that 2n>n2^n > n for all positive integers nn.

Proof:

Base case: when n=1n = 1, 21=2>12^1 = 2 > 1, holds.

Inductive hypothesis: assume 2k>k2^k > k.

Inductive step:

2k+1=22k>2k(using the inductive hypothesis)>k+1(because when k12kk+1)\begin{aligned} 2^{k+1} &= 2 \cdot 2^k \\ &> 2k \quad \text{(using the inductive hypothesis)} \\ &> k + 1 \quad \text{(because when $k \geq 1$, $2k \geq k+1$)} \end{aligned}

Conclusion: by mathematical induction, 2n>n2^n > n for all positive integers nn.

Common Mistakes

Practice Problems

Exercise 1

Use mathematical induction to prove: 1+3+5++(2n1)=n21 + 3 + 5 + \cdots + (2n-1) = n^2

Reference Answer(1 个标签)
mathematical induction

Proof:

Base case: when n=1n = 1, the left side =1= 1 and the right side =12=1= 1^2 = 1, holds.

Inductive hypothesis: assume it holds for n=kn = k, i.e., 1+3+5++(2k1)=k21 + 3 + 5 + \cdots + (2k-1) = k^2

Inductive step:

1+3+5++(2k1)+(2(k+1)1)=k2+(2k+1)=k2+2k+1=(k+1)2\begin{aligned} &1 + 3 + 5 + \cdots + (2k-1) + (2(k+1)-1) \\ &= k^2 + (2k+1) \\ &= k^2 + 2k + 1 \\ &= (k+1)^2 \end{aligned}

Conclusion: by mathematical induction, the equality holds for all positive integers nn.

Exercise 2

Use mathematical induction to prove: 12+22+32++n2=n(n+1)(2n+1)61^2 + 2^2 + 3^2 + \cdots + n^2 = \frac{n(n+1)(2n+1)}{6}

Reference Answer(1 个标签)
mathematical induction

Proof:

Base case: when n=1n = 1, the left side =1= 1 and the right side =1×2×36=1= \frac{1 \times 2 \times 3}{6} = 1, holds.

Inductive hypothesis: assume it holds for n=kn = k.

Inductive step:

12+22++k2+(k+1)2=k(k+1)(2k+1)6+(k+1)2=k(k+1)(2k+1)+6(k+1)26=(k+1)[k(2k+1)+6(k+1)]6=(k+1)(2k2+7k+6)6=(k+1)(k+2)(2k+3)6=(k+1)[(k+1)+1][2(k+1)+1]6\begin{aligned} &1^2 + 2^2 + \cdots + k^2 + (k+1)^2 \\ &= \frac{k(k+1)(2k+1)}{6} + (k+1)^2 \\ &= \frac{k(k+1)(2k+1) + 6(k+1)^2}{6} \\ &= \frac{(k+1)[k(2k+1) + 6(k+1)]}{6} \\ &= \frac{(k+1)(2k^2 + 7k + 6)}{6} \\ &= \frac{(k+1)(k+2)(2k+3)}{6} \\ &= \frac{(k+1)[(k+1)+1][2(k+1)+1]}{6} \end{aligned}

Conclusion: by mathematical induction, the equality holds.

Exercise 3

Use mathematical induction to prove: 3n>2n+13^n > 2n + 1 for all n1n \geq 1.

Reference Answer(1 个标签)
mathematical induction

Proof:

Base case: when n=1n = 1, 31=3>2×1+1=33^1 = 3 > 2 \times 1 + 1 = 3… no, actually 333 \not> 3.

Let us start from n=2n = 2: 32=9>2×2+1=53^2 = 9 > 2 \times 2 + 1 = 5, holds.

Inductive hypothesis: assume 3k>2k+13^k > 2k + 1.

Inductive step:

3k+1=33k>3(2k+1)(inductive hypothesis)=6k+3>2k+3(because when k26k>2k)=2(k+1)+1\begin{aligned} 3^{k+1} &= 3 \cdot 3^k \\ &> 3(2k + 1) \quad \text{(inductive hypothesis)} \\ &= 6k + 3 \\ &> 2k + 3 \quad \text{(because when $k \geq 2$, $6k > 2k$)} \\ &= 2(k+1) + 1 \end{aligned}

Conclusion: by mathematical induction, the inequality holds for all n2n \geq 2.


Summary

Symbols Used in This Article

符号类型读音/说明在本文中的含义
P(n)P(n)命题P of nA proposition about nn
n0n_0常数n sub 0The initial value
kk变量kThe variable in the inductive hypothesis

中英对照

中文术语英文术语音标说明
数学归纳法mathematical induction/ˌmæθəˈmætɪkəl ɪnˈdʌkʃən/A method for proving propositions about natural numbers
基础步骤base case/beɪs keɪs/Verifying the initial case
归纳假设inductive hypothesis/ɪnˈdʌktɪv haɪˈpɒθəsɪs/Assuming the proposition holds for n=kn=k
归纳步骤inductive step/ɪnˈdʌktɪv step/Deriving from n=kn=k to n=k+1n=k+1