Recurrence Relations of Sequences

A recurrence relation is another important way to define a sequence. Unlike directly giving the general term formula, a recurrence relation defines the next term through the previous term (or previous few terms). This way of definition is very common in practical problems.

What Is a Recurrence Relation?

A recurrence relation defines later terms through earlier terms.

Examples:

  • The Fibonacci sequence: Fn+2=Fn+1+FnF_{n+2} = F_{n+1} + F_n, F1=F2=1F_1 = F_2 = 1
  • An arithmetic sequence: an+1=an+da_{n+1} = a_n + d
  • A geometric sequence: an+1=qana_{n+1} = qa_n

A recurrence relation must be combined with initial conditions (such as the value of a1a_1) to uniquely determine a sequence.

Chapters