Geometric Progression: nth Term & Partial Sum
Free geometric progression calculator 2026: find nth term and partial sum instantly. Covers finance, physics, biology and CS uses. Calculate now.
- Data verified · June 2026
- Edited by Martín Rodríguez
- Formula verified by automated tests
- Private — runs on your device
See step-by-step calculation
See this calculation step by step
See period-by-period detail
How to use this calculator
Follow this tool’s steps, then review its formula, assumptions, and limits below.
This calculator solves two fundamental outputs in a single step. First, the nth term: aₙ = a₁ · r^(n−1), which tells you the exact value at any position in the sequence without computing every prior term. Second, the partial sum of the first n terms: Sₙ = a₁ · (rⁿ − 1) / (r − 1) when r ≠ 1, or Sₙ = n · a₁ when r = 1. These two formulas together answer the two most common questions about any GP — 'what is the value at step n?' and 'what is the total accumulated across n steps?'
Why does this matter in practice? Consider a savings account growing at 8% annually: after 12 years, does it double? Triple? The GP formula gives you the precise answer in seconds without a spreadsheet. Or consider a disease spreading where each infected person infects 2.5 others per generation — by generation 10, how many total cases have accumulated? That's a GP partial sum. Engineers calculating echo decay in audio systems, biologists tracking bacterial colonies, and computer scientists analyzing recursive algorithms all reach for the same pair of equations this calculator implements.
What makes this tool distinct is that it handles edge cases cleanly — including r = 1 (constant sequence), fractional ratios (decaying sequences), negative ratios (alternating sequences), and very large exponents — while showing step-by-step intermediate values so you understand the computation, not just the answer. Whether you're a student checking homework, a financial analyst stress-testing a model, or an engineer verifying a decay curve, this calculator gives you immediate, accurate results with the context to use them correctly.
When to use this calculator
- Compound Investment Growth —
- Bacterial Colony Doubling —
- Bouncing Ball Total Distance —
- Merge Sort Memory Levels —
- Radioactive Decay Remaining Mass —
- Audio Echo Energy Decay —
- Loan Amortization via Geometric Series —
- Pyramid Sales Commission Structure —
nth Term (aₙ) and Partial Sum (Sₙ) for a₁ = 2 — Reference Values
| r | n | aₙ = a₁ · r^(n−1) | Sₙ |
|---|---|---|---|
| 0.5 | 1 | 2 | 2 |
| 0.5 | 3 | 0.5 | 3.5 |
| 0.5 | 5 | 0.125 | 3.875 |
| 0.5 | 10 | ≈ 0.003906 | ≈ 3.996 |
| 1 | 1 | 2 | 2 |
| 1 | 3 | 2 | 6 |
| 1 | 5 | 2 | 10 |
| 1 | 10 | 2 | 20 |
| 2 | 1 | 2 | 2 |
| 2 | 3 | 8 | 14 |
| 2 | 5 | 32 | 62 |
| 2 | 10 | 1 024 | 2 046 |
| 3 | 1 | 2 | 2 |
| 3 | 3 | 18 | 26 |
| 3 | 5 | 162 | 242 |
| 3 | 10 | 39 366 | 59 048 |
| −1 | 1 | 2 | 2 |
| −1 | 3 | 2 | 2 (n impar) / 0 (n par) |
| −1 | 5 | 2 | 2 (n impar) / 0 (n par) |
| −1 | 10 | 2 | 2 (n impar) / 0 (n par) |
Fuente: fórmulas aₙ = a₁ · r^(n−1) y Sₙ = a₁ · (rⁿ − 1)/(r − 1) según NIST Digital Library of Mathematical Functions (dlmf.nist.gov). Valores calculados con a₁ = 2; para r = 1 se aplica Sₙ = n · a₁.
How it works
How It's Calculated
A geometric progression is fully defined by three parameters: the first term (a₁), the common ratio (r), and the number of terms (n).
nth Term Formula
aₙ = a₁ · r^(n − 1)Partial Sum Formula
If r ≠ 1: Sₙ = a₁ · (rⁿ − 1) / (r − 1)
If r = 1: Sₙ = n · a₁
If |r| < 1 and n → ∞ (infinite GP): S∞ = a₁ / (1 − r)Worked Example (from calculator)
Given: a₁ = 2, r = 3, n = 5
a₅ = 2 · 3^(5−1) = 2 · 81 = 162
S₅ = 2 · (3⁵ − 1) / (3 − 1)
= 2 · (243 − 1) / 2
= 2 · 242 / 2
= 242---
Reference Table
The table below shows aₙ and Sₙ for a₁ = 2 across different ratios and term numbers:
| r | n = 1 | n = 3 (aₙ) | n = 3 (Sₙ) | n = 5 (aₙ) | n = 5 (Sₙ) | n = 10 (aₙ) | n = 10 (Sₙ) |
|---|---|---|---|---|---|---|---|
| 0.5 | 2 | 0.5 | 3.5 | 0.125 | 3.875 | 0.00390625 | ~3.996 |
| 1 | 2 | 2 | 6 | 2 | 10 | 2 | 20 |
| 2 | 2 | 8 | 14 | 32 | 62 | 1,024 | 2,046 |
| 3 | 2 | 18 | 26 | 162 | 242 | 39,366 | 59,048 |
| 1.06 | 2 | 2.247 | 6.371 | 2.676 | 11.274 | 3.582 | 26.362 |
| −1 | 2 | 2 | 2 or 0</td><td>2</td><td>2 or 0 | 2 | 2 or 0* |
> *For r = −1, Sₙ alternates between a₁ (odd n) and 0 (even n).
---
Typical Cases
Case 1 — Finance (Compound Interest)
A savings account starts at $500 with an annual growth rate of 8% (r = 1.08). What is the balance after 12 years (n = 12)?
a₁₂ = 500 · 1.08^11 = 500 · 2.3316 ≈ $1,165.80
S₁₂ = 500 · (1.08¹² − 1) / (1.08 − 1)
= 500 · (2.5182 − 1) / 0.08
≈ $9,488.75 (total if you sum all yearly balances)Case 2 — Biology (Bacterial Doubling)
Starting with 100 bacteria that double every hour (r = 2), how many are present after 8 hours (n = 9, counting the initial population as term 1)?
a₉ = 100 · 2^8 = 100 · 256 = 25,600 bacteria
S₉ = 100 · (2⁹ − 1) / (2 − 1) = 100 · 511 = 51,100 total bacteria-hoursCase 3 — Physics (Bouncing Ball)
A ball is dropped from 10 meters and rebounds to 60% of its height (r = 0.6). Total vertical distance after 6 bounces (n = 6 rebound terms, a₁ = 6 m for upward bounces):
S₆ = 6 · (1 − 0.6⁶) / (1 − 0.6)
= 6 · (1 − 0.046656) / 0.4
= 6 · 2.383 ≈ 14.30 m (upward travel only)Add the initial 10 m drop → total ≈ 38.60 m (counting both up and down).
---
Common Mistakes
1. Off-by-one error on the exponent: The exponent is (n − 1), NOT n. Students frequently write aₙ = a₁ · rⁿ, which overshoots by one factor of r. For n = 1, a₁ · r⁰ = a₁ ✓, but a₁ · r¹ ≠ a₁ ✗.
2. Using the sum formula when r = 1: Plugging r = 1 into Sₙ = a₁ · (rⁿ − 1)/(r − 1) creates a division by zero. Always test r = 1 separately; the sum is simply n · a₁.
3. Confusing geometric with arithmetic progressions: In an arithmetic progression, you add a constant difference (d); in a GP, you multiply by a constant ratio (r). Mixing these leads to completely wrong results — e.g., calling r = 3 a "common difference" and computing a₅ = 2 + 4·3 = 14 instead of 162.
4. Applying the infinite-sum formula when |r| ≥ 1: The formula S∞ = a₁ / (1 − r) only converges when |r| < 1. Using it with r = 2 gives a negative "sum," which is mathematically meaningless for a divergent series.
5. Sign errors with negative ratios: When r is negative, aₙ alternates sign. For example, with a₁ = 4, r = −2: a₁ = 4, a₂ = −8, a₃ = 16. Forgetting the alternation leads to incorrect term signs and incorrect partial sums.
---
Related Calculators
Calculation Example
Frequently asked questions
What is the difference between a geometric progression and an arithmetic progression?
What happens to the sum of a geometric series when |r| is less than 1?
Can the common ratio r be negative, zero, or a fraction?
How does the geometric progression formula relate to compound interest?
How do I find the common ratio r if I only know two non-consecutive terms?
What is the geometric mean, and how is it connected to geometric progressions?
How are geometric progressions used in computer science algorithms?
Is there a formula for the product (not sum) of the terms of a geometric progression?
What is the sum of an infinite geometric series, and when does it exist?
How do I identify whether a sequence is geometric from raw data?
What are the most common mistakes when using the GP formula?
How does a geometric progression relate to logarithms and exponential functions?
Sources & references
Methodology & trust
Math calculator with its formula verified automatically against NIST Digital Library of Mathematical Functions — Combinatorial Analysis & Series (§26), per our editorial policy and methodology.
Updated: June 2026. Parameters are verified periodically against the cited sources.
Calculations run 100% in your browser. We do not store or transmit your data.
Indicative results. For critical decisions, consult a professional.
📌 How to cite this calculator
Rodríguez, M. (2026). Geometric Progression: nth Term & Partial Sum. Hacé Cuentas. https://hacecuentas.com/en/geometric-progression-sum-term
@misc{hacecuentas_geometric_progression_sum_term_2026,
author = {Rodríguez, Martín},
title = {{Geometric Progression: nth Term & Partial Sum}},
year = {2026},
howpublished = {\url{https://hacecuentas.com/en/geometric-progression-sum-term}},
note = {Hacé Cuentas}
} Content licensed under CC-BY 4.0 — reuse it citing the source with a link to Hacé Cuentas.