ES EN FR PT DE IT

Geometric Sequence Sum Calculator

Calculate the sum of the first n terms of a geometric sequence.

The Geometric Sequence Sum Calculator is a free online math calculator. Calculate the sum of the first n terms of a geometric sequence. Get instant results with the detailed formula and step-by-step examples.
Inputs
Values
Result
Enter values and press Calculate

What Is Geometric Sequence Sum Calculator?

Geometric Sequence Sum Calculator finds the total of all terms in a geometric progression — a sequence where each term is multiplied by a constant ratio to get the next term. From compound interest calculations to population growth to radioactive decay, geometric series model exponential change throughout science and finance. This calculator handles both finite sums (first n terms) and provides insight into infinite geometric series.

Consider an investment of €1,000 earning 8% annual interest, compounded yearly. Year 1: €1,080. Year 2: €1,166.40. Year 3: €1,259.71. Each year multiplies the previous by 1.08. After 10 years, what's the total value? This is a geometric sequence with first term a₁ = 1,000, ratio r = 1.08, and n = 10 terms. Using the sum formula: S₁₀ = 1,000 × (1.08¹⁰ - 1) / (1.08 - 1) = 1,000 × (2.1589 - 1) / 0.08 = 1,000 × 14.487 = €14,487. The investment grows to nearly €14,500.

Geometric sequences differ fundamentally from arithmetic sequences. Arithmetic sequences add a constant (2, 5, 8, 11... adds 3 each time). Geometric sequences multiply by a constant (2, 6, 18, 54... multiplies by 3 each time). This multiplicative nature creates exponential growth or decay — far more dramatic than linear arithmetic progression.

How Geometric Sequence Sum Calculator Works: Formulas Explained

Finite sum formula: Sₙ = a₁ × (rⁿ - 1) / (r - 1) for r ≠ 1, where Sₙ is the sum of n terms, a₁ is the first term, r is the common ratio, and n is the number of terms. Example: Sequence 3, 6, 12, 24, 48 (a₁=3, r=2, n=5). S₅ = 3 × (2⁵ - 1) / (2 - 1) = 3 × (32 - 1) / 1 = 3 × 31 = 93. Verify: 3 + 6 + 12 + 24 + 48 = 93 ✓.

Alternative formula:** Sₙ = a₁ × (1 - rⁿ) / (1 - r). This is algebraically equivalent but sometimes more convenient, especially when r < 1. Example: Sequence 100, 50, 25, 12.5, 6.25 (a₁=100, r=0.5, n=5). S₅ = 100 × (1 - 0.5⁵) / (1 - 0.5) = 100 × (1 - 0.03125) / 0.5 = 100 × 0.96875 / 0.5 = 193.75. Verify: 100 + 50 + 25 + 12.5 + 6.25 = 193.75 ✓.

Finding the nth term: aₙ = a₁ × rⁿ⁻¹. This gives any specific term. Example: First term 5, ratio 3, find the 7th term. a₇ = 5 × 3⁷⁻¹ = 5 × 3⁶ = 5 × 729 = 3,645. The 7th term is 3,645. Combine with sum formula when you need both a specific term and the total sum.

Infinite geometric series: When |r| < 1 (ratio between -1 and 1), the infinite sum converges to S∞ = a₁ / (1 - r). Example: 1 + 1/2 + 1/4 + 1/8 + ... (a₁=1, r=0.5). S∞ = 1 / (1 - 0.5) = 1 / 0.5 = 2. The infinite sum equals exactly 2 — adding infinitely many terms gives a finite result! When |r| ≥ 1, the infinite sum diverges (grows without bound).

Working through a complete example: A bacteria culture starts with 500 cells and doubles every hour. How many total cell-hours of existence occur over 8 hours? Hour 0: 500 cells. Hour 1: 1,000 cells. Hour 2: 2,000 cells... This is geometric with a₁ = 500, r = 2, n = 8 (counting hour 0 through hour 7, or 8 terms). S₈ = 500 × (2⁸ - 1) / (2 - 1) = 500 × (256 - 1) / 1 = 500 × 255 = 127,500 cell-hours. At hour 8, population is 500 × 2⁸ = 128,000 cells — the sum of all previous hours nearly equals the final population.

Step-by-Step Guide to Calculating Geometric Sequence Sums

  1. Identify the first term (a₁). This is the starting value. Example: Initial investment €5,000 means a₁ = 5,000. For sequence 4, 12, 36, 108..., a₁ = 4. The first term is your baseline from which the sequence grows or shrinks.
  2. Determine the common ratio (r). Divide any term by the previous term: r = a₂ / a₁. Example: Sequence 4, 12, 36, 108... has r = 12 / 4 = 3. Verify: 36 / 12 = 3 ✓, 108 / 36 = 3 ✓. Constant ratio confirms geometric sequence. Ratio can be fractional (0.5 means halving each time) or negative (alternating signs).
  3. Count the number of terms (n). This is how many values you're summing. "Sum the first 10 terms" means n = 10. For time-based problems, n equals the number of periods. A 5-year investment with annual compounding has n = 5 (or n = 6 if including year 0). Be clear whether you're counting from 0 or 1.
  4. Verify r ≠ 1. If r = 1, every term equals a₁, and the sum is simply n × a₁. Example: 7, 7, 7, 7, 7 (r = 1, n = 5) sums to 5 × 7 = 35. The geometric formula would divide by zero (r - 1 = 0), so handle r = 1 as a special case.
  5. Apply the sum formula. Use Sₙ = a₁ × (rⁿ - 1) / (r - 1). Example: a₁ = 4, r = 3, n = 6. S₆ = 4 × (3⁶ - 1) / (3 - 1) = 4 × (729 - 1) / 2 = 4 × 728 / 2 = 4 × 364 = 1,456. Sequence: 4, 12, 36, 108, 324, 972. Sum: 4+12+36+108+324+972 = 1,456 ✓.
  6. For infinite series, check convergence. If |r| < 1, the infinite sum is S∞ = a₁ / (1 - r). Example: 81 + 27 + 9 + 3 + 1 + ... (a₁=81, r=1/3). S∞ = 81 / (1 - 1/3) = 81 / (2/3) = 81 × 3/2 = 121.5. If |r| ≥ 1, the infinite sum doesn't exist (diverges to infinity or oscillates).

Real-World Geometric Sequence Sum Examples

Example 1: Compound Interest Investment. Invest €10,000 at 6% annual interest for 15 years. What's the total value? a₁ = 10,000, r = 1.06, n = 15. S₁₅ represents the final value (not sum of all years): a₁₅ = 10,000 × 1.06¹⁵ = 10,000 × 2.3966 = €23,966. The investment more than doubles. Total interest earned: €23,966 - €10,000 = €13,966. At 6% compound interest, money doubles approximately every 12 years (rule of 72: 72/6 = 12).

Example 2: Viral Marketing Campaign. A campaign starts with 100 people sharing. Each person convinces 2.5 others to share. How many total people see the message after 6 rounds? a₁ = 100, r = 2.5, n = 6. S₆ = 100 × (2.5⁶ - 1) / (2.5 - 1) = 100 × (244.14 - 1) / 1.5 = 100 × 243.14 / 1.5 = 16,209 people. Round 6 alone reaches 100 × 2.5⁵ = 9,766 people. Viral growth is explosive — 6 rounds multiplies reach 162×.

Example 3: Depreciating Asset Value. A machine worth €50,000 depreciates 20% annually. What's total value over 5 years (sum of year-end values)? a₁ = 50,000 × 0.8 = 40,000 (end of year 1), r = 0.8, n = 5. S₅ = 40,000 × (1 - 0.8⁵) / (1 - 0.8) = 40,000 × (1 - 0.32768) / 0.2 = 40,000 × 0.67232 / 0.2 = 134,464. Sum of year-end values: €134,464. Final value: €50,000 × 0.8⁵ = €16,384.

Example 4: Annuity Future Value. Deposit €500 monthly into an account earning 0.5% monthly interest for 10 years (120 deposits). Future value? a₁ = 500, r = 1.005, n = 120. S₁₂₀ = 500 × (1.005¹²⁰ - 1) / (1.005 - 1) = 500 × (1.8194 - 1) / 0.005 = 500 × 0.8194 / 0.005 = 500 × 163.88 = €81,940. Total deposits: 120 × €500 = €60,000. Interest earned: €21,940 — compound growth adds 36.6% to savings.

Example 5: Repeating Decimal to Fraction. Convert 0.777... to a fraction. This equals 0.7 + 0.07 + 0.007 + ... = 7/10 + 7/100 + 7/1000 + ... Geometric series: a₁ = 7/10, r = 1/10. S∞ = (7/10) / (1 - 1/10) = (7/10) / (9/10) = 7/9. Therefore 0.777... = 7/9. Similarly, 0.333... = 3/9 = 1/3, and 0.142857... = 142857/999999 = 1/7.

Common Mistakes in Geometric Sequence Calculations

Confusing the ratio r with the exponent n. The formula uses rⁿ (ratio raised to the power of term count). A common error: using r × n instead. Example: a₁ = 2, r = 3, n = 4. Correct: S₄ = 2 × (3⁴ - 1) / (3 - 1) = 2 × (81 - 1) / 2 = 80. Wrong: 2 × (3 × 4 - 1) / 2 = 2 × 11 / 2 = 11 — dramatically incorrect. Remember: rⁿ means r multiplied by itself n times.

Using n instead of n-1 for the nth term. The nth term formula is aₙ = a₁ × rⁿ⁻¹, not a₁ × rⁿ. The first term (n=1) should equal a₁: a₁ × r¹⁻¹ = a₁ × r⁰ = a₁ × 1 = a₁ ✓. Using a₁ × rⁿ gives a₁ × r for the first term — wrong. Example: a₁ = 5, r = 2. Term 1: 5 × 2⁰ = 5 ✓. Term 4: 5 × 2³ = 40 ✓.

Applying infinite sum formula when |r| ≥ 1. The infinite sum S∞ = a₁ / (1 - r) only works when |r| < 1. For r = 2, the series 1 + 2 + 4 + 8 + ... grows without bound — no finite sum exists. Plugging r = 2 into the formula gives 1 / (1 - 2) = -1, which is nonsense. Always check |r| < 1 before using the infinite sum formula.

Miscounting terms in time-based problems. An investment from year 0 to year 10 has 11 terms (years 0, 1, 2, ..., 10), not 10. A 30-year mortgage with monthly payments has 30 × 12 = 360 terms. Clarify whether you're counting from 0 or 1, and whether the final period is included. Draw a timeline if uncertain.

Pro Tips for Geometric Sequences

Use logarithms to solve for n. When asked "how many terms until the sum exceeds X?" or "when does the term reach Y?", use logarithms. Example: When does 100 × 1.05ⁿ exceed 200? Set up: 100 × 1.05ⁿ = 200. Divide: 1.05ⁿ = 2. Take log: n × log(1.05) = log(2). Solve: n = log(2) / log(1.05) = 0.301 / 0.0212 ≈ 14.2. After 15 terms, the value exceeds 200.

Recognize geometric patterns in word problems. Keywords indicating geometric sequences: "doubles", "triples", "increases by X%", "decays by X%", "multiplied by", "compounded". A problem stating "population grows 3% annually" describes a geometric sequence with r = 1.03. Identify a₁ (initial value), r (growth factor), and n (number of periods).

Apply the rule of 72 for quick doubling estimates. For compound growth, divide 72 by the percentage rate to estimate doubling time. At 8% interest: 72/8 = 9 years to double. At 12%: 72/12 = 6 years. This approximation works because ln(2) ≈ 0.693, and 72 is close to 69.3 and divisible by many numbers. Useful for mental math and sanity checks.

Handle negative ratios carefully. When r is negative, terms alternate signs. Example: 5, -10, 20, -40, 80 (a₁=5, r=-2, n=5). S₅ = 5 × ((-2)⁵ - 1) / (-2 - 1) = 5 × (-32 - 1) / (-3) = 5 × (-33) / (-3) = 5 × 11 = 55. Verify: 5 - 10 + 20 - 40 + 80 = 55 ✓. The formula works identically — just compute rⁿ carefully with the negative sign.

Frequently Asked Questions

When r = 0, only the first term is non-zero. Sequence: a₁, 0, 0, 0, ... The sum of n terms equals a₁ (all other terms are zero). The formula gives Sₙ = a₁ × (0ⁿ - 1) / (0 - 1) = a₁ × (-1) / (-1) = a₁ ✓. This edge case rarely appears in applications but the formula handles it correctly.

Yes. Negative ratios create alternating sequences: positive, negative, positive, negative... Example: 3, -6, 12, -24, 48 has r = -2. The sum formula works identically. For infinite series with negative ratio, convergence requires |r| < 1, meaning -1 < r < 1. Example: 1 - 1/2 + 1/4 - 1/8 + ... converges to 1 / (1 - (-1/2)) = 1 / 1.5 = 2/3.

Arithmetic sequences add a constant difference (linear growth). Geometric sequences multiply by a constant ratio (exponential growth). Arithmetic sum: Sₙ = (n/2)(a₁ + aₙ). Geometric sum: Sₙ = a₁(rⁿ - 1)/(r - 1). For large n, geometric sums grow much faster. Arithmetic: 1+2+3+...+100 = 5,050. Geometric: 1+2+4+...+2⁹⁹ ≈ 1.27 × 10³⁰ — vastly larger.

When |r| < 1, each term is smaller than the previous. As n → ∞, rⁿ → 0. The sum approaches a₁ / (1 - r). When |r| ≥ 1, terms don't shrink — they stay constant (r=1), grow (|r|>1), or oscillate (r=-1). Adding infinitely many non-shrinking terms produces infinity or undefined results. Convergence requires terms approaching zero fast enough.

You may also find these calculators useful: Arithmetic Sequence Calculator, Compound Interest Calculator, Exponential Growth Calculator, Series Sum Calculator.

Written and reviewed by the CalcToWork editorial team. Last updated: 2026-04-29.

Frequently Asked Questions

When r = 0, only the first term is non-zero. Sequence: a₁, 0, 0, 0, ... The sum of n terms equals a₁ (all other terms are zero). The formula gives Sₙ = a₁ × (0ⁿ - 1) / (0 - 1) = a₁ × (-1) / (-1) = a₁ ✓. This edge case rarely appears in applications but the formula handles it correctly.
Yes. Negative ratios create alternating sequences: positive, negative, positive, negative... Example: 3, -6, 12, -24, 48 has r = -2. The sum formula works identically. For infinite series with negative ratio, convergence requires |r| < 1, meaning -1 < r < 1. Example: 1 - 1/2 + 1/4 - 1/8 + ... converges to 1 / (1 - (-1/2)) = 1 / 1.5 = 2/3.
Arithmetic sequences add a constant difference (linear growth). Geometric sequences multiply by a constant ratio (exponential growth). Arithmetic sum: Sₙ = (n/2)(a₁ + aₙ). Geometric sum: Sₙ = a₁(rⁿ - 1)/(r - 1). For large n, geometric sums grow much faster. Arithmetic: 1+2+3+...+100 = 5,050. Geometric: 1+2+4+...+2⁹⁹ ≈ 1.27 × 10³⁰ — vastly larger.
When |r| 1), or oscillate (r=-1). Adding infinitely many non-shrinking terms produces infinity or undefined results. Convergence requires terms approaching zero fast enough.