Discrete Math Tutor

Induction / Inequalities

Least You Need to Know: Induction for Inequalities

Induction proves inequalities by checking a base case and then comparing the `k+1` expression to something already known from the hypothesis.

The least you need to know

Key notation

P(k) the inequality at step k
P(k+1) the target next step
greater than or equal to

Tiny worked example

  • Claim: `2^n ≥ n+1` for `n≥0`.
  • Assume `2^k ≥ k+1`.
  • Then `2^{k+1}=2·2^k ≥ 2(k+1) ≥ k+2`, so the step closes.

Common mistakes

How to recognize this kind of problem

Start practice