Arithmetic Recursive Formula- Math Guide
What Is a Recursive Formula?
A recursive formula defines each term of a sequence using the previous term(s). Instead of giving you a direct formula like "aₙ = 3n + 5", it tells you: to find the next term, start from where you already are.
The basic structure looks like this:
- a₁ = the first term (your starting point)
- aₙ = aₙ₋₁ + d (the pattern that gets you from one term to the next)
That's it. No magic. Just a starting point and a rule for moving forward.
Understanding Arithmetic Sequences
An arithmetic sequence is a list of numbers where the difference between consecutive terms stays the same. That constant difference is called the common difference, denoted by d.
Example: 2, 5, 8, 11, 14...
The common difference here is 3. Each term increases by 3.
The Arithmetic Recursive Formula
When you combine recursion with an arithmetic sequence, you get the arithmetic recursive formula:
a₁ = first term
aₙ = aₙ₋₁ + d
Where d is your common difference.
Let's break this down with an example. Say you want to generate the sequence starting at 4 with a common difference of 7:
- a₁ = 4
- a₂ = a₁ + 7 = 4 + 7 = 11
- a₃ = a₂ + 7 = 11 + 7 = 18
- a₄ = a₃ + 7 = 18 + 7 = 25
Sequence: 4, 11, 18, 25...
Why Not Just Use the Explicit Formula?
The explicit formula (aₙ = a₁ + (n-1)d) gives you any term directly. The recursive formula forces you to calculate all preceding terms first.
So why bother with recursion? Because sometimes you only know the previous term. Computer algorithms often work this way. Recursion builds understanding of how sequences compound over time.
Recursive vs. Explicit Formulas
Here's the difference side by side:
| Feature | Recursive Formula | Explicit Formula |
|---|---|---|
| Starting point | Requires a₁ | Requires a₁ |
| Finding term 50 | Must calculate terms 1 through 49 first | Plug n=50 directly |
| Computer algorithms | Natural fit | Less efficient |
| Understanding patterns | Shows how each term builds on the last | Shows the big picture formula |
Common Mistakes
Forgetting the first term. Every recursive formula needs a₁ defined. Without it, you have nothing to build from.
Getting the common difference wrong. Make sure d matches the actual change between terms. If the sequence decreases, d will be negative.
Writing aₙ = aₙ₋₁ + 1 when it should be +d. Students often default to "add 1" because that's what they see in basic counting. Check your actual difference.
Confusing the subscripts. aₙ₋₁ means "the term right before aₙ." Don't mix up which term you're solving for.
How To Write an Arithmetic Recursive Formula
Follow these steps:
Step 1: Identify the First Term
Look at your sequence. The first number you see is a₁.
Step 2: Find the Common Difference
Subtract any term from the term that follows it. Do this twice to confirm it's constant.
Example: 15, 23, 31, 39
23 - 15 = 8
31 - 23 = 8
39 - 31 = 8
d = 8
Step 3: Write the Formula
a₁ = 15
aₙ = aₙ₋₁ + 8
Done. That's your recursive formula.
Quick Reference
For an arithmetic sequence:
- Recursive: a₁ = first term, aₙ = aₙ₋₁ + d
- Explicit: aₙ = a₁ + (n-1)d
Both describe the same sequence. Use recursive when you need to build forward from a known term. Use explicit when you need a specific term without calculating the others.