Infinite Series Calculator
Choose a common infinite series type, enter values, and calculate convergence, partial sums, and useful error estimates.
What this infinite series calculator does
This page helps you evaluate and understand three of the most common infinite series forms used in algebra, calculus, economics, and engineering: geometric series, p-series, and alternating p-series. Instead of only giving a number, the calculator also reports convergence behavior and partial sum information.
That makes it useful for both quick homework checks and deeper intuition building. You can compare a finite partial sum with the expected infinite behavior and see whether increasing the number of terms would improve accuracy.
Quick convergence guide
1) Geometric series: Σ a·rⁿ
A geometric series converges only when |r| < 1. If that is true, the infinite sum is:
- S = a / (1 - r)
If |r| ≥ 1, the terms fail to shrink properly and the series diverges.
2) p-series: Σ 1/nᵖ
This classic benchmark converges when p > 1 and diverges when p ≤ 1. There is usually no simple closed form for general p, so partial sums and error bounds are often used for practical approximation.
3) Alternating p-series: Σ (-1)ⁿ⁺¹ / nᵖ
For this alternating form, convergence happens for every p > 0. It is:
- Absolutely convergent if p > 1
- Conditionally convergent if 0 < p ≤ 1
The alternating series remainder bound gives a practical error estimate: the true error is no bigger than the first omitted term.
Why partial sums matter
Infinite sums are theoretical limits, but computation is always finite. In real workflows you compute a partial sum SN and then estimate how far it is from the true infinite value. This is exactly why the calculator asks for N.
For convergent series, increasing N generally improves accuracy. For divergent series, increasing N does not settle toward a fixed value, which is itself an important conclusion.
Practical applications
- Finance: discounted cash flow models often reduce to geometric-like sums.
- Signal processing: expansions and filters involve convergent and alternating series behavior.
- Physics and engineering: perturbation methods and Fourier-type expansions use partial sums heavily.
- Computer science: algorithm analysis frequently compares growth against harmonic and p-series benchmarks.
Common mistakes to avoid
- Assuming every series with shrinking terms converges. (Term size going to zero is necessary, not sufficient.)
- Using a geometric formula when the series is not geometric.
- Confusing absolute convergence with conditional convergence.
- Reading a partial sum as the exact infinite sum without an error estimate.
Study tip
Try changing one parameter at a time. For example, keep a fixed and gradually increase r from 0.5 to 0.99 in the geometric case. You will see partial sums converge more slowly as r approaches 1. This kind of experimentation builds intuition much faster than memorizing test rules alone.