01 Key Concepts
Definition
An equation that expresses a term a(n) in a sequence using one or more previous terms, such as a(n-1) or a(n-2).
Initial Conditions
The starting value(s) needed to fully define a sequence, since the recurrence alone only describes how to get from one term to the next.
Linear Recurrence Relations
Relations where each term is a linear combination of previous terms, such as a(n) = a(n-1) + a(n-2) (the Fibonacci relation).
Solving by Iteration
Compute term by term directly from the initial conditions, useful for finding specific values even without a closed-form formula.
Closed-Form Solutions
An explicit formula for a(n) in terms of n alone, without needing to know previous terms โ often much faster to compute for large n.
02 Solved Examples
- a(3) = a(2)+a(1) = 1+1 = 2.
- a(4) = a(3)+a(2) = 2+1 = 3.
- a(5) = a(4)+a(3) = 3+2 = 5.
- a(6) = a(5)+a(4) = 5+3.
- a(2) = 2*a(1) = 2*3 = 6.
- a(3) = 2*a(2) = 2*6 = 12.
- a(4) = 2*a(3) = 2*12.
- Each term adds 5 to the previous one, starting from a(1)=2.
- After (n-1) steps of adding 5: a(n) = 2 + 5*(n-1).
03 Practice Questions
๐ Recurrence Relations โ Downloadable Worksheet
10 questions with a full answer key. Grab the PDF to print, or try the interactive version in your browser.