Discrete Math Tutor

Induction / Recurrences

Least You Need to Know: Recurrences and Strong Induction

Recurrence claims often need **strong induction** because the next term depends on several earlier terms, not just one.

The least you need to know

Key notation

a_n the nth term of a sequence
a_n = a_{n-1}+a_{n-2} a recurrence
P(1),…,P(k) strong induction hypothesis

Tiny worked example

  • Suppose `a_n = a_{n-1}+a_{n-2}` for `n≥3`.
  • To prove a property of all terms, a strong induction step may use both `P(k)` and `P(k-1)`.
  • That is why base cases for the first terms matter.

Common mistakes

How to recognize this kind of problem

Start practice