infinite sum calculator

Geometric Infinite Sum Calculator

Use this tool to compute the sum of a geometric series and quickly test whether the infinite series converges.

Infinite geometric sum formula: S = a₁ / (1 - r), valid only when |r| < 1
Converges only when the absolute value of r is less than 1.
Used for finite partial sum Sₙ.

What Is an Infinite Sum?

An infinite sum is exactly what it sounds like: you keep adding terms forever. In math notation, this is often written with sigma notation, such as Σ an from n = 1 to infinity. At first glance, this seems impossible to evaluate because you never finish adding. But many infinite sums do have a finite value.

The classic example is the geometric series, where each term is multiplied by the same ratio r. For instance:

1 + 1/2 + 1/4 + 1/8 + ... = 2

Even though there are infinitely many terms, the total approaches 2. That “approaches” behavior is the heart of convergence.

How This Infinite Sum Calculator Works

This calculator is built for geometric series. You enter:

  • a₁: the first term
  • r: the common ratio between terms
  • n: an optional term count for partial sums

The calculator then checks convergence conditions and computes either:

  • Infinite sum: when the series converges
  • Partial sum Sₙ: useful whether or not the full infinite sum exists

Formulas Used

Infinite sum (if |r| < 1): S = a₁ / (1 - r)
Partial sum (for r ≠ 1): Sₙ = a₁(1 - rⁿ) / (1 - r)
Partial sum (for r = 1): Sₙ = n · a₁

Convergence Rules You Should Know

A geometric infinite series converges only when the absolute value of the ratio is below 1:

|r| < 1
  • If |r| < 1, terms shrink and the sum approaches a finite value.
  • If |r| ≥ 1, terms do not shrink enough, and the infinite sum diverges.

Divergence does not mean the calculator is useless. You can still compute partial sums, which is very helpful in finance, simulations, and numerical methods where only a finite number of terms are used.

Practical Examples

1) Savings Growth Model (Simple Approximation)

Suppose each year’s contribution is 80% of the prior year due to a planned taper. If first contribution is 1000 and ratio is 0.8, then:

S = 1000 / (1 - 0.8) = 5000

This means total lifetime contributions in that tapering model approach 5000.

2) Alternating Series Feel

If a₁ = 8 and r = -0.5, terms alternate signs: 8, -4, 2, -1, ... The infinite sum still converges because |r| = 0.5 < 1.

3) Divergent Case

With a₁ = 3 and r = 1.1, each term grows in magnitude. Since |r| > 1, the infinite sum does not exist as a finite number.

Common Mistakes When Using an Infinite Series Calculator

  • Forgetting the convergence rule and expecting a finite answer for r = 1 or r = 2.
  • Confusing first term a₁ with nth term aₙ.
  • Mixing arithmetic series logic with geometric series formulas.
  • Rounding too aggressively when ratios are very close to 1.

When to Use Partial Sums Instead

In real-world computation, you often use a finite number of terms anyway. Partial sums are practical when:

  • You need a quick approximation.
  • The full infinite model is theoretical only.
  • You are comparing truncation error over different n values.

As n increases, Sₙ gets closer to S for convergent geometric series. That is one of the simplest and most important ideas in numerical analysis.

Final Thoughts

Infinite sums can feel abstract, but geometric series are one of the most approachable entry points. With the calculator above, you can test convergence, compute exact finite-model totals, and build intuition quickly. Try a few ratios around ±1 to see how dramatically behavior changes.

🔗 Related Calculators