Discrete Math Tutor

Induction / Basics

Least You Need to Know: Induction Basics

Mathematical induction proves a statement for every integer in a sequence by checking a starting case and then linking one case to the next.

The least you need to know

Key notation

P(n) the statement being proved
P(1) base case at n = 1
P(k) induction hypothesis
P(k+1) next case to prove

Tiny worked example

  • Claim: 1 + 2 + ... + n = n(n+1)/2.\n- Base case: n=1 gives 1 = 1(2)/2.\n- Inductive step: assume 1+...+k = k(k+1)/2, then add k+1 to both sides and simplify to (k+1)(k+2)/2.

Common mistakes

How to recognize this kind of problem

Start practice