Recursive Formula for Geometric Sequences Explained

What Is a Geometric Sequence?

A geometric sequence is a list of numbers where each term is found by multiplying the previous term by a fixed number called the common ratio. That's it. No addition, no fancy patterns—just multiplication.

Examples:

The common ratio can be positive, negative, a fraction, or greater than 1. It doesn't matter what it is—what matters is that it never changes.

What Is a Recursive Formula?

A recursive formula defines each term using the term before it. Instead of giving you a formula to plug in n and get the answer directly, it says: "to find the next term, take what you just found and multiply by the ratio."

Every recursive formula needs two things:

Without the first term, you have nothing to start with. Without the rule, you have no way to continue. Both are non-negotiable.

Writing Recursive Formulas for Geometric Sequences

The template is embarrassingly simple once you see it:

a₁ = first term

aₙ = aₙ₋₁ × r (where r is the common ratio)

That's the whole thing. Let me show you how this works with real numbers.

Example 1: Positive Common Ratio

Sequence: 5, 15, 45, 135...

What's the ratio? 15 ÷ 5 = 3. The ratio is 3.

Recursive formula:

a₁ = 5

aₙ = aₙ₋₁ × 3

To find a₄: a₃ × 3 = 45 × 3 = 135. Done.

Example 2: Fraction as Common Ratio

Sequence: 64, 32, 16, 8...

What's the ratio? 32 ÷ 64 = 0.5 (or 1/2).

Recursive formula:

a₁ = 64

aₙ = aₙ₋₁ × 0.5

Or if you prefer fractions: aₙ = aₙ₋₁ × ½

Example 3: Negative Common Ratio

Sequence: 2, -6, 18, -54...

What's the ratio? -6 ÷ 2 = -3.

Recursive formula:

a₁ = 2

aₙ = aₙ₋₁ × (-3)

Signs flip every term. That's fine. Just keep multiplying by -3.

How To: Find Specific Terms Step by Step

Let's say you need to find the 7th term of a sequence with a₁ = 4 and r = 3.

Step 1: Write down what you know. a₁ = 4, r = 3.

Step 2: Build the sequence term by term.

The 7th term is 2,916.

This is the main weakness of recursive formulas: to find a₇, you need a₆. To find a₆, you need a₅. You can't skip steps. If you need the 50th term, you're doing this 49 times. That's not efficient—and that's exactly why explicit formulas exist.

Recursive vs. Explicit Formulas

Here's the comparison nobody asked for but everyone needs:

Feature Recursive Explicit
Uses previous terms? Yes No
Can skip to any term? No—you must calculate all terms before it Yes—just plug in n
Formula structure a₁ = first term; aₙ = aₙ₋₁ × r aₙ = a₁ × rⁿ⁻¹
Best for Sequential problems, programming, seeing patterns Finding specific terms quickly
Effort to find a₁₀₀ Calculate 99 multiplications One calculation

Neither is better. They do different jobs. Recursive is how computers think. Explicit is how humans save time.

Converting Between the Two

If you have a recursive formula and need the explicit version (or vice versa), here's how:

Recursive to Explicit

Given: a₁ = 5, aₙ = aₙ₋₁ × 3

Find a₂: 5 × 3 = 15

Find a₃: 15 × 3 = 45

Find a₄: 45 × 3 = 135

Pattern: each term is the first term multiplied by 3 raised to (n-1).

Explicit formula: aₙ = 5 × 3ⁿ⁻¹

Explicit to Recursive

Given: aₙ = 2 × 4ⁿ⁻¹

First term: a₁ = 2 × 4⁰ = 2 × 1 = 2

Ratio: 4 (the base of the exponent)

Recursive formula: a₁ = 2, aₙ = aₙ₋₁ × 4

Common Mistakes to Avoid

Quick Reference Template

When you see a geometric sequence and need to write its recursive formula:

  1. Identify the first term → this is a₁
  2. Divide any term by the previous term → this is r
  3. Write: a₁ = [first term]
  4. Write: aₙ = aₙ₋₁ × [ratio]

That's the entire process. There's no hidden trick. Identify two numbers, write them down in the right spots, and you're done.