Recursive Sequence- Definition and Examples
What is a Recursive Sequence?
A recursive sequence is a sequence where each term is defined using the terms that come before it. Instead of giving you a formula to calculate any term directly, a recursive definition tells you how to get from one term to the next.
The classic example: the Fibonacci sequence. You start with two seed values (0 and 1), then each subsequent term is the sum of the two terms before it.
That's it. That's the whole idea. One term depends on the previous terms.
Recursive vs Explicit Formulas
Here's the difference that trips people up:
- Explicit formula: Gives you the nth term directly. You plug in n, you get the answer.
- Recursive formula: Tells you how to get from one term to the next. You need the previous terms first.
Think of it like this: an explicit formula is a shortcut. A recursive formula makes you take the scenic routeβyou walk through every term to reach your destination.
| Approach | Formula Type | How to Find aβ β |
|---|---|---|
| Explicit | aβ = 3n + 2 | Plug in n = 50 directly |
| Recursive | aβ = 5, aβββ = aβ + 3 | Calculate aβ, aβ, aβ... all the way to aβ β |
Common Types of Recursive Sequences
Arithmetic Sequences
Each term increases or decreases by a constant difference. The recursive definition needs a starting value and a common difference.
Example:
aβ = 5
aβββ = aβ + 3
This gives you: 5, 8, 11, 14, 17...
Geometric Sequences
Each term is multiplied by a constant ratio. Start with a seed value, then keep multiplying.
Example:
aβ = 2
aβββ = aβ Γ 3
This gives you: 2, 6, 18, 54, 162...
The Fibonacci Sequence
The most famous recursive sequence. Two seed values, one rule.
aβ = 1, aβ = 1
aβ = aβββ + aβββ
This gives you: 1, 1, 2, 3, 5, 8, 13, 21, 34...
How to Find Terms in a Recursive Sequence
Here's the process, step by step:
- Identify the base case(s). These are the starting terms given to you directly.
- Apply the recurrence relation. Use the rule to find the next term.
- Repeat. Keep applying the rule until you reach the term you need.
Let's work through finding the 6th term of a sequence where aβ = 4 and aβββ = 2aβ + 1.
aβ = 4 (given)
aβ = 2(4) + 1 = 9
aβ = 2(9) + 1 = 19
aβ = 2(19) + 1 = 39
aβ = 2(39) + 1 = 79
aβ = 2(79) + 1 = 159
The 6th term is 159. No shortcutsβyou had to walk through every term.
Solving More Complex Recursive Sequences
Some recursive sequences have patterns that let you find a direct formula. This is called "solving the recurrence."
For linear recurrences like aβ = aβββ + d (arithmetic) or aβ = r Γ aβββ (geometric), you can derive:
- Arithmetic: aβ = aβ + (n-1)d
- Geometric: aβ = aβ Γ rβΏβ»ΒΉ
The Fibonacci sequence is trickier. It has a closed-form solution involving the golden ratio, but that's advanced territory. For most practical purposes, you just iterate.
Where Recursive Sequences Show Up
You see them everywhere once you know what to look for:
- Computer science: Algorithm analysis, recursive functions, fractal generation
- Biology: Population growth models, branching patterns in plants
- Finance: Compound interest calculations, loan amortization
- Mathematics: Fractals, Pascal's triangle, combinatorics
Getting Started: Your First Practice Problems
Problem 1: Find aβ given aβ = 3, aβββ = aβ - 2
Answer: 3, 1, -1, -3, -5
Problem 2: Find aβ given aβ = 1, aβ = 4, aβ = aβββ + aβββ
Answer: 1, 4, 5, 9
Problem 3: Find aβ given aβ = 5, aβββ = 2aβ
Answer: 5, 10, 20, 40, 80
Work through these by hand. Write out each term. The only way to get comfortable with recursive sequences is to actually do them.