An infinite series is a sum of infinitely many terms. The central question is whether this sum approaches a finite value (converges) or grows without bound (diverges). Answering this question correctly is crucial because many important functions are defined as infinite series, and using a divergent series leads to nonsensical results.
The geometric series is the simplest example. The sum of r^n from n=0 to infinity equals 1/(1-r) when |r| < 1. When |r| >= 1, the series diverges. This simple result is surprisingly powerful. It underlies the Taylor series convergence analysis and appears in finance (present value of a perpetuity), probability (geometric distributions), and computer science (amortized analysis of algorithms).
The p-series sum of 1/n^p converges when p > 1 and diverges when p <= 1. The case p = 1 is the harmonic series, which diverges despite its terms approaching zero. This counterintuitive result is important: a series can diverge even when its terms get arbitrarily small. Our convergence tester lets you experiment with p-series and see the partial sums approach a limit (or fail to).
Several standard tests determine convergence. The ratio test examines lim|a_(n+1)/a_n|: if the limit is less than 1, the series converges absolutely; if greater than 1, it diverges; if equal to 1, the test is inconclusive. The root test is similar but uses the nth root of |a_n|. The comparison test compares your series to one whose behavior is known. The integral test relates series convergence to improper integral convergence.
Alternating series, where terms alternate in sign, have their own convergence test. If the absolute values of terms decrease monotonically to zero, the series converges. The error from truncating after n terms is bounded by the absolute value of the (n+1)th term, which provides a practical error estimate.
The summation calculator computes finite sums numerically, letting you verify convergence by watching partial sums stabilize. The power series convergence tool estimates the radius of convergence using the ratio test.
Conditional convergence is a subtle phenomenon. An alternating harmonic series converges, but if you rearrange its terms, you can make it converge to any real number or diverge entirely. This Riemann rearrangement theorem shows that conditionally convergent series do not behave like finite sums. Absolutely convergent series (where the sum of absolute values converges) are better behaved: you can rearrange them freely without changing the sum.
Understanding convergence is not merely theoretical. In numerical analysis, truncating a divergent series leads to garbage results. In probability, the convergence of infinite sums determines whether expected values exist. In physics, perturbation series must converge for the approximation to be valid. Mastering convergence tests is a foundational skill for advanced mathematics.