Recurrence Equation — Definition, Formula & Examples
A recurrence equation (also called a recurrence relation) is a rule that defines each term in a sequence based on one or more of its preceding terms. Combined with an initial value, it completely determines every term in the sequence.
A recurrence equation is an equation of the form for , where is a given function and are specified initial conditions. The positive integer is called the order of the recurrence.
Key Formula
Where:
- = The nth term of the sequence
- = A function relating the current term to previous terms
- = The order of the recurrence (how many previous terms are used)
How It Works
To use a recurrence equation, start with the given initial value(s) and repeatedly apply the rule to generate successive terms. For example, if and , you plug in to get , then to get , and so on. A first-order recurrence depends on just the immediately preceding term, while a second-order recurrence (like the Fibonacci sequence) depends on the two preceding terms. Many recurrence equations can also be solved for a closed-form expression that gives directly in terms of .
Worked Example
Problem: Given the recurrence equation with initial condition , find , , and .
Find a₂: Substitute n = 2 into the recurrence.
Find a₃: Substitute n = 3, using the value of a₂.
Find a₄: Substitute n = 4, using the value of a₃.
Answer: The first four terms are 5, 13, 37, 109.
Why It Matters
Recurrence equations appear throughout discrete mathematics, computer science (analyzing algorithm run-times), and financial modeling (compound interest and loan amortization). In precalculus and calculus courses, recognizing that arithmetic and geometric sequences are special cases of recurrence relations helps unify your understanding of sequences and series.
Common Mistakes
Mistake: Forgetting to state or use the initial condition(s).
Correction: A recurrence equation alone does not determine a unique sequence. You must always specify initial values like ; without them, infinitely many sequences satisfy the same recurrence.
