Geometric Recursive Formula Explained
What Is a Geometric Recursive Formula?
A geometric recursive formula defines each term of a sequence by multiplying the previous term by a fixed number called the common ratio. That's it. No fluff.
If you have a sequence where each term comes from multiplying the last one by the same value, you're dealing with a geometric sequence. The recursive version just tells you how to get from one term to the next.
The Basic Formula
For a geometric sequence, the recursive formula is:
an = an-1 × r
Where:
- an is the nth term you want to find
- an-1 is the term right before it
- r is the common ratio (the multiplier)
You'll also need a starting term (usually called a1) to kick things off.
Real Examples That Actually Make Sense
Example 1: Doubling Every Term
Start with a1 = 3, and r = 2.
- a1 = 3 (given)
- a2 = 3 × 2 = 6
- a3 = 6 × 2 = 12
- a4 = 12 × 2 = 24
- a5 = 24 × 2 = 48
Sequence: 3, 6, 12, 24, 48...
Example 2: Multiplying by a Fraction
Start with a1 = 100, and r = 0.5.
- a1 = 100
- a2 = 100 × 0.5 = 50
- a3 = 50 × 0.5 = 25
- a4 = 25 × 0.5 = 12.5
Sequence: 100, 50, 25, 12.5...
Example 3: Negative Ratio
Start with a1 = 2, and r = -3.
- a1 = 2
- a2 = 2 × (-3) = -6
- a3 = -6 × (-3) = 18
- a4 = 18 × (-3) = -54
Sequence: 2, -6, 18, -54... The terms alternate signs because of the negative ratio.
Recursive vs Explicit Formula
Here's where people get confused. Both formulas describe the same sequence, but they work differently.
| Feature | Recursive Formula | Explicit Formula |
|---|---|---|
| How it works | Uses the previous term to find the next one | Calculates any term directly |
| Finding a100 | Must calculate a1 through a99 first | Plug in n=100, done |
| Best for | Seeing patterns, computer algorithms | Quick access to distant terms |
| Formula | an = an-1 × r | an = a1 × rn-1 |
How to Solve Any Geometric Recursive Problem
Step 1: Identify What You Have
Look for:
- The first term (a1)
- The common ratio (r)
- Which term you need to find
Step 2: Apply the Formula Repeatedly
Start from a1 and multiply by r until you reach your target term. There's no shortcut here — that's the trade-off with recursive formulas.
Step 3: Check Your Work
Verify by checking if the ratio between consecutive terms stays constant. That's your confirmation.
Common Mistakes That Will Cost You Points
- Forgetting the starting term — You can't solve anything without a1
- Misidentifying the ratio — Divide any term by the previous term to find r
- Skipping steps — Each term depends on the one before it
- Confusing the formula — Recursive means "go step by step," explicit means "jump straight there"
When the Recursive Approach Actually Makes Sense
Most textbook problems let you use either formula. But recursive shines when:
- You're writing a computer program to generate the sequence
- You need to show the step-by-step growth or decay
- The problem specifically asks for recursive form
- You're modeling real-world situations where each state builds on the previous one
The Bottom Line
The geometric recursive formula is straightforward: multiply the previous term by the common ratio. Find a1, know your r, and work your way forward. No mysteries here.
If you need a specific term far down the sequence and the problem doesn't force recursive form, switch to the explicit formula. It'll save you hours of unnecessary multiplication.