Geometric Sequence Calculator

Calculate the nth term, sum of n terms, and generate geometric sequences instantly. Get step-by-step solutions with formulas explained.

Quick Facts

nth Term Formula
an = a1 × r(n-1)
Sum Formula
Sn = a1(1-rn)/(1-r)
Infinite Sum
S = a1/(1-r)
Only when |r| < 1
Common Ratio
r = an/an-1
Ratio between consecutive terms

Your Results

Calculated
nth Term (an)
-
Term at position n
Sum of n Terms (Sn)
-
Finite series sum
Infinite Sum
-
When |r| < 1

First Terms of Your Sequence

Step-by-Step Solution

Key Takeaways

  • A geometric sequence multiplies by a constant ratio (r) to get each successive term
  • The nth term formula is an = a1 × r(n-1)
  • The sum of n terms uses Sn = a1(1-rn)/(1-r)
  • An infinite geometric series only converges when |r| < 1
  • Geometric sequences model compound interest, population growth, and radioactive decay

What Is a Geometric Sequence? Complete Explanation

A geometric sequence (also called a geometric progression or GP) is a sequence of numbers where each term after the first is found by multiplying the previous term by a fixed, non-zero number called the common ratio. This creates a pattern of exponential growth or decay, depending on whether the common ratio is greater than or less than 1.

Unlike arithmetic sequences where you add the same number repeatedly, geometric sequences involve multiplication. This fundamental difference leads to dramatically different growth patterns. While arithmetic sequences grow linearly (like adding $100 to savings each month), geometric sequences grow exponentially (like earning compound interest on investments).

Visual Example: Geometric Sequence with r = 3

Term 1 (a1) 2
Term 2 (a2) 6
Term 3 (a3) 18
Term 4 (a4) 54

Each term is multiplied by 3 (the common ratio) to get the next term: 2 × 3 = 6, 6 × 3 = 18, 18 × 3 = 54

The Geometric Sequence Formulas Explained

There are three essential formulas you need to master when working with geometric sequences. Each serves a different purpose and understanding when to use each one is crucial for solving problems efficiently.

nth Term: an = a1 × r(n-1) Sum of n Terms: Sn = a1(1 - rn) / (1 - r) [when r ≠ 1] Infinite Sum: S = a1 / (1 - r) [when |r| < 1]
an = nth term
a1 = first term
r = common ratio
n = term position
Sn = sum of first n terms

How to Calculate the nth Term (Step-by-Step)

1

Identify Your Variables

Determine the first term (a1), the common ratio (r), and which term position (n) you want to find. Example: Find the 6th term of 4, 12, 36, 108...

2

Calculate the Common Ratio

Divide any term by the previous term: r = 12/4 = 3. Verify: 36/12 = 3. The common ratio is 3.

3

Apply the Formula

Plug into an = a1 × r(n-1): a6 = 4 × 3(6-1) = 4 × 35 = 4 × 243 = 972

4

Verify Your Answer

Count out the sequence: 4, 12, 36, 108, 324, 972. The 6th term is indeed 972.

Geometric vs. Arithmetic Sequences: Key Differences

Understanding the distinction between these two types of sequences is fundamental to choosing the correct formulas and solving problems accurately. Here's a comprehensive comparison:

Feature Arithmetic Sequence Geometric Sequence
Pattern Add a constant (common difference) Multiply by a constant (common ratio)
Example 2, 5, 8, 11, 14... (d = 3) 2, 6, 18, 54, 162... (r = 3)
nth Term Formula an = a1 + (n-1)d an = a1 × r(n-1)
Growth Type Linear Exponential
Sum Formula Sn = n(a1 + an)/2 Sn = a1(1-rn)/(1-r)
Graph Shape Straight line Exponential curve
Real-World Example Monthly rent increases by $50 Investment doubles every 7 years

Pro Tip: Quick Identification Method

To quickly determine if a sequence is geometric, divide consecutive terms. If you get the same result every time, it's geometric. For example, in 5, 15, 45, 135: 15/5 = 3, 45/15 = 3, 135/45 = 3. The constant ratio confirms it's geometric with r = 3.

Understanding Different Common Ratio Values

The value of the common ratio (r) dramatically affects the behavior of a geometric sequence. Understanding these patterns helps predict sequence behavior and identify errors in calculations.

When r > 1: Exponential Growth

When the common ratio is greater than 1, each term is larger than the previous, creating exponential growth. This models population growth, compound interest, and viral spread. Example: 3, 6, 12, 24, 48... (r = 2)

When 0 < r < 1: Exponential Decay

A ratio between 0 and 1 causes terms to shrink toward zero. This models radioactive decay, depreciation, and cooling. Example: 100, 50, 25, 12.5, 6.25... (r = 0.5)

When r < 0: Alternating Signs

A negative ratio causes terms to alternate between positive and negative. Example: 4, -8, 16, -32, 64... (r = -2). This appears in oscillation problems and certain physics applications.

Common Mistake: Forgetting r = 1

When r = 1, the standard sum formula fails (division by zero). In this case, every term equals a1, so Sn = n × a1. Always check for r = 1 before applying formulas!

Infinite Geometric Series: When Does It Converge?

One of the most fascinating properties of geometric sequences is that some infinite series have a finite sum. This only occurs when the absolute value of the common ratio is less than 1 (|r| < 1).

When |r| < 1, terms get progressively smaller and eventually approach zero. The sum of all these infinitely many terms approaches a finite limit given by S = a1/(1-r).

Infinite Series Example

Consider: 1 + 0.5 + 0.25 + 0.125 + 0.0625 + ...

Here a1 = 1 and r = 0.5. Since |0.5| < 1, the series converges.

S = 1/(1-0.5) = 1/0.5 = 2

Even though there are infinitely many terms, their sum is exactly 2!

Zeno's Paradox Connection

The famous Zeno's paradox (Achilles and the Tortoise) is resolved by understanding convergent infinite series. Although Achilles must cover infinitely many distance intervals, the sum of those intervals is finite, allowing him to overtake the tortoise.

Real-World Applications of Geometric Sequences

Geometric sequences aren't just abstract math concepts - they appear throughout finance, science, technology, and everyday life. Understanding these applications helps you recognize when to use these formulas.

Compound Interest

Money growing at r% annually follows a geometric sequence. $1000 at 7% becomes 1000, 1070, 1144.90...

Population Growth

Bacteria doubling every hour: 1, 2, 4, 8, 16... represents exponential population growth with r = 2.

Radioactive Decay

Half-life decay follows geometric sequence with r = 0.5. After each period, half the material remains.

Music Theory

Musical octaves follow geometric patterns. Each octave doubles the frequency (r = 2).

Bouncing Ball

A ball bouncing to 70% of its previous height: 100, 70, 49, 34.3... cm (r = 0.7).

Computer Science

Binary systems, algorithm complexity, and memory allocation often involve geometric growth patterns.

Common Mistakes to Avoid

When working with geometric sequences, certain errors appear frequently. Being aware of these pitfalls helps you avoid them and solve problems more accurately.

Top 5 Mistakes with Geometric Sequences

  • Using (n) instead of (n-1): The exponent is (n-1), not n. For the 5th term, use r4, not r5.
  • Confusing r with d: The common ratio is r (multiply), not d (add). Don't mix up geometric and arithmetic formulas.
  • Applying infinite sum when |r| ≥ 1: The infinite sum formula only works when |r| < 1. Otherwise, the series diverges.
  • Forgetting negative ratios: When r is negative, terms alternate signs. A negative r is perfectly valid.
  • Not simplifying rn correctly: Large exponents require careful calculation. Use a calculator for accuracy.

Advanced Concepts: Geometric Mean and Interpolation

Beyond basic calculations, geometric sequences offer powerful tools for more advanced mathematical analysis.

Geometric Mean

The geometric mean of two numbers a and b is √(ab). In a geometric sequence, any term is the geometric mean of its neighbors. For 4, 12, 36: the geometric mean of 4 and 36 is √(144) = 12.

Inserting Geometric Means

To insert n geometric means between two numbers, calculate r = n+1√(b/a), then multiply successively. This is useful for creating smooth progressions in design, music, and engineering.

Pro Tip: Finding the Common Ratio from Any Two Terms

If you know the mth term and the nth term, calculate r using: r = n-m√(an/am). For example, if a3 = 18 and a7 = 1458, then r = 4√(1458/18) = 4√81 = 3.

Practice Problems with Solutions

Test your understanding with these carefully selected problems covering various difficulty levels.

Problem 1: Find the 8th Term

Given: First term a1 = 5, common ratio r = 2

Solution: a8 = 5 × 27 = 5 × 128 = 640

Problem 2: Sum of First 6 Terms

Given: Sequence 3, 9, 27, 81...

Solution: a1 = 3, r = 3, n = 6

S6 = 3(1 - 36)/(1 - 3) = 3(1 - 729)/(-2) = 3(-728)/(-2) = 1092

Problem 3: Infinite Sum

Given: 16 + 8 + 4 + 2 + 1 + ...

Solution: a1 = 16, r = 0.5 (since |0.5| < 1, series converges)

S = 16/(1 - 0.5) = 16/0.5 = 32

Frequently Asked Questions

A geometric sequence is a sequence of numbers where each term after the first is found by multiplying the previous term by a fixed, non-zero number called the common ratio. For example, 2, 6, 18, 54 is a geometric sequence with a common ratio of 3.

Use the formula an = a1 × r(n-1), where a1 is the first term, r is the common ratio, and n is the term number. For example, to find the 5th term of a sequence starting with 2 and common ratio 3: a5 = 2 × 34 = 2 × 81 = 162.

For a finite geometric series, the sum is Sn = a1(1 - rn)/(1 - r) when r ≠ 1. For an infinite geometric series where |r| < 1, the sum converges to S = a1/(1 - r).

In an arithmetic sequence, you ADD a constant (common difference) to get the next term. In a geometric sequence, you MULTIPLY by a constant (common ratio). Arithmetic: 2, 5, 8, 11 (add 3). Geometric: 2, 6, 18, 54 (multiply by 3).

Yes! A geometric sequence can have negative terms. If the first term is positive and the common ratio is negative, the terms will alternate between positive and negative. For example, 3, -6, 12, -24, 48 has r = -2.

An infinite geometric series converges only when the absolute value of the common ratio is less than 1 (|r| < 1). When |r| ≥ 1, the series diverges and has no finite sum.

Geometric sequences appear in compound interest calculations, population growth models, radioactive decay, music theory (frequency ratios), computer science (binary systems), and physics (bouncing ball heights).

When 0 < r < 1, the sequence decreases toward zero. For example, 100, 50, 25, 12.5, 6.25 with r = 0.5. This represents decay scenarios like depreciation or radioactive decay.

Ready to Master Geometric Sequences?

Use our calculator above to practice with different sequences. Try various first terms, common ratios, and term numbers to build your intuition for how geometric sequences behave!