Proving Inequalities

Proving inequalities with mathematical induction requires more technique, especially since the inductive step often needs clever magnification or reduction.

Proof Strategy

The key to proving the inequality f(n)≥g(n)f(n) \geq g(n) (or f(n)≤g(n)f(n) \leq g(n)):

Common methods of magnification and reduction:

  • Adding or subtracting positive terms
  • Using known inequalities (e.g., 2n>n2^n > n)
  • Fraction magnification or reduction

Worked Examples

Example 1: Exponential Greater Than Polynomial

Proposition: prove that 2n>n22^n > n^2 for all n≥5n \geq 5.

Proof:

Base case: when n=5n = 5, 25=32>25=522^5 = 32 > 25 = 5^2, holds.

Inductive hypothesis: assume 2k>k22^k > k^2 (k≥5k \geq 5)

Inductive step: we need to prove 2k+1>(k+1)22^{k+1} > (k+1)^2

2k+1=2⋅2k>2k2(inductive hypothesis)\begin{aligned} 2^{k+1} &= 2 \cdot 2^k \\ &> 2k^2 \quad \text{(inductive hypothesis)} \end{aligned}

Now we need to prove 2k2>(k+1)2=k2+2k+12k^2 > (k+1)^2 = k^2 + 2k + 1

That is, prove k2>2k+1k^2 > 2k + 1, i.e., k2−2k−1>0k^2 - 2k - 1 > 0

When k≥5k \geq 5, k2−2k−1=(k−1)2−2≥16−2=14>0k^2 - 2k - 1 = (k-1)^2 - 2 \geq 16 - 2 = 14 > 0

Therefore 2k+1>2k2>(k+1)22^{k+1} > 2k^2 > (k+1)^2

Conclusion: by mathematical induction, the inequality holds for all n≥5n \geq 5.

Example 2: Bernoulli’s Inequality

Proposition: prove that (1+x)n≥1+nx(1+x)^n \geq 1 + nx, where x>−1x > -1 and n∈N∗n \in \mathbb{N}^*

Proof:

Base case: when n=1n = 1, (1+x)1=1+x≥1+x(1+x)^1 = 1 + x \geq 1 + x, holds.

Inductive hypothesis: assume (1+x)k≥1+kx(1+x)^k \geq 1 + kx

Inductive step:

(1+x)k+1=(1+x)k⋅(1+x)≥(1+kx)(1+x)(inductive hypothesis, since 1+x>0)=1+kx+x+kx2=1+(k+1)x+kx2≥1+(k+1)x(since kx2≥0)\begin{aligned} (1+x)^{k+1} &= (1+x)^k \cdot (1+x) \\ &\geq (1 + kx)(1 + x) \quad \text{(inductive hypothesis, since $1+x > 0$)} \\ &= 1 + kx + x + kx^2 \\ &= 1 + (k+1)x + kx^2 \\ &\geq 1 + (k+1)x \quad \text{(since $kx^2 \geq 0$)} \end{aligned}

Conclusion: by mathematical induction, the inequality holds.

Example 3: The Harmonic Series Diverges

Proposition: prove that 1+12+13+⋯+12n>n21 + \frac{1}{2} + \frac{1}{3} + \cdots + \frac{1}{2^n} > \frac{n}{2} for all n≥1n \geq 1.

Proof:

Base case: when n=1n = 1, 1+12=32>121 + \frac{1}{2} = \frac{3}{2} > \frac{1}{2}, holds.

Inductive hypothesis: assume 1+12+⋯+12k>k21 + \frac{1}{2} + \cdots + \frac{1}{2^k} > \frac{k}{2}

Inductive step:

1+12+⋯+12k+12k+1+⋯+12k+1>k2+12k+1+⋯+12k+1(inductive hypothesis)\begin{aligned} &1 + \frac{1}{2} + \cdots + \frac{1}{2^k} + \frac{1}{2^k+1} + \cdots + \frac{1}{2^{k+1}} \\ &> \frac{k}{2} + \frac{1}{2^k+1} + \cdots + \frac{1}{2^{k+1}} \quad \text{(inductive hypothesis)} \end{aligned}

There are 2k2^k terms from 2k+12^k+1 to 2k+12^{k+1}, and each term is ≥12k+1\geq \frac{1}{2^{k+1}}:

>k2+2k⋅12k+1=k2+12=k+12\begin{aligned} &> \frac{k}{2} + 2^k \cdot \frac{1}{2^{k+1}} \\ &= \frac{k}{2} + \frac{1}{2} \\ &= \frac{k+1}{2} \end{aligned}

Conclusion: by mathematical induction, the inequality holds.

Practice Problems

Exercise 1

Prove: n!>2nn! > 2^n for all n≥4n \geq 4.

Reference Answer(2 个标签)
mathematical inductioninequality proof

Base case: when n=4n = 4, 4!=24>16=244! = 24 > 16 = 2^4, holds.

Inductive hypothesis: assume k!>2kk! > 2^k (k≥4k \geq 4)

Inductive step:

(k+1)!=(k+1)⋅k!>(k+1)⋅2k(inductive hypothesis)>2⋅2k(because k+1>2 when k≥4)=2k+1\begin{aligned} (k+1)! &= (k+1) \cdot k! \\ &> (k+1) \cdot 2^k \quad \text{(inductive hypothesis)} \\ &> 2 \cdot 2^k \quad \text{(because $k+1 > 2$ when $k \geq 4$)} \\ &= 2^{k+1} \end{aligned}

Conclusion: by mathematical induction, the inequality holds.

Exercise 2

Prove: 1n+1+1n+2+⋯+12n>1324\frac{1}{n+1} + \frac{1}{n+2} + \cdots + \frac{1}{2n} > \frac{13}{24} for all n≥2n \geq 2.

Reference Answer(2 个标签)
mathematical inductioninequality proof

Base case: when n=2n = 2, 13+14=712>1324\frac{1}{3} + \frac{1}{4} = \frac{7}{12} > \frac{13}{24}, holds.

Inductive hypothesis: assume 1k+1+⋯+12k>1324\frac{1}{k+1} + \cdots + \frac{1}{2k} > \frac{13}{24}

Inductive step:

1k+2+⋯+12k+12k+1+12k+2=(1k+1+⋯+12k)−1k+1+12k+1+12k+2>1324−1k+1+12k+1+12k+2\begin{aligned} &\frac{1}{k+2} + \cdots + \frac{1}{2k} + \frac{1}{2k+1} + \frac{1}{2k+2} \\ &= \left(\frac{1}{k+1} + \cdots + \frac{1}{2k}\right) - \frac{1}{k+1} + \frac{1}{2k+1} + \frac{1}{2k+2} \\ &> \frac{13}{24} - \frac{1}{k+1} + \frac{1}{2k+1} + \frac{1}{2k+2} \end{aligned}

We need to prove −1k+1+12k+1+12k+2>0-\frac{1}{k+1} + \frac{1}{2k+1} + \frac{1}{2k+2} > 0

i.e., 12k+1+12k+2>1k+1\frac{1}{2k+1} + \frac{1}{2k+2} > \frac{1}{k+1}

This holds for k≥2k \geq 2.

Conclusion: by mathematical induction, the inequality holds.


Summary

Symbols Used in This Article

符号类型读音/说明在本文中的含义
f(n),g(n)f(n), g(n)数学符号f/g of nThe expressions on the two sides of the inequality
n,kn, k数学符号n, kNatural numbers
≥\geq数学符号greater than or equal toGreater than or equal to
≤\leq数学符号less than or equal toLess than or equal to
xx数学符号xThe variable in Bernoulli’s inequality
N∗\mathbb{N}^*数学符号positive integersThe set of positive integers
n!n!数学符号n factorialThe factorial of nn
1n\frac{1}{n}数学符号one over nThe reciprocal

中英对照

中文术语英文术语音标说明
放缩法magnification-reduction/ˌmæɡnɪfɪˈkeɪʃən rɪˈdʌkʃən/Establishing inequalities by magnifying or reducing
伯努利不等式Bernoulli’s inequality/bɜːˈnuːli ɪnɪˈkwɒləti/(1+x)n≥1+nx(1+x)^n \geq 1+nx
调和级数harmonic series/hɑːˈmɒnɪk ˈsɪəriːz/∑1n\sum \frac{1}{n}
数学归纳法mathematical induction/ˌmæθəˈmætɪkəl ɪnˈdʌkʃən/A proof method from the base case to the general
阶乘factorial/fækˈtɔːriəl/n!=1×2×⋯×nn! = 1 \times 2 \times \cdots \times n