Library/Algebra/Sequences/Recurrence relations

Recurrence relations

Overview
Important

A recurrence relation is an equation that defines each term of a sequence as a function of its preceding terms. For example, a sequence (an)(a_n) might be defined by an=an1+3a_n = a_{n-1} + 3 with a1=2a_1 = 2.

Important properties

  • Initial conditions are needed to start the sequence.

  • Recurrence relations can be linear or non-linear.

  • Solving a recurrence relation means finding a formula for the nnth term without needing to compute all previous terms.

  • Many famous sequences, like the Fibonacci numbers, are defined by recurrence relations.