Discrete Math Tutor

Proof / Induction Basics

Least You Need to Know: Induction Basics

Mathematical induction proves a statement for **every** integer in a sequence by establishing a base case and an induction step.

The least you need to know

Key notation

P(n) the statement at integer n
k an arbitrary integer in the induction step
k+1 the next case to prove

Tiny worked example

  • To prove 1 + 2 + ... + n = n(n+1)/2, first check n = 1.\n- Then assume it is true for n = k.\n- Replace 1 + 2 + ... + k with k(k+1)/2 and add k+1.\n- Simplify to get (k+1)(k+2)/2.

Common mistakes

How to recognize this kind of problem

Start practice