Convergence Tests
What You’ll Learn
Section titled “What You’ll Learn”In this lesson you’ll learn the major convergence tests, which are your toolkit for deciding whether an infinite series adds up to a finite number or not.
The Concept
Section titled “The Concept”The nth-Term Test (Divergence Test)
Section titled “The nth-Term Test (Divergence Test)”The simplest check. If the terms don’t approach zero, the series can’t converge
Important: if the limit is 0, this test tells you nothing. The harmonic series has terms going to 0 but still diverges.
p-Series Test
Section titled “p-Series Test”The bigger the exponent p, the faster the terms shrink, and the easier it is for the sum to stay finite.
The red dots (p = 1, harmonic) keep climbing. The blue dots (p = 2) level off near π²/6. The green dots (p = 3) converge even faster to about 1.202.
Geometric Series Test
Section titled “Geometric Series Test”Comparison Test
Section titled “Comparison Test”If you have two series with positive terms where each term of one is less than or equal to the corresponding term of the other
- If the bigger series converges, the smaller one does too
- If the smaller series diverges, the bigger one does too
Limit Comparison Test
Section titled “Limit Comparison Test”If two series have positive terms and
then both series either converge or both diverge. This is often easier than direct comparison because you only need the limit of the ratio.
Ratio Test
Section titled “Ratio Test”- L less than 1: converges absolutely
- L greater than 1: diverges
- L equals 1: inconclusive
The ratio test is your go-to for series with factorials or exponentials.
Root Test
Section titled “Root Test”Same conclusions as the ratio test. Useful when the entire term is raised to the nth power.
Worked Examples
Section titled “Worked Examples”Example 1: p-Series
Determine convergence of the following
This is a p-series with p = 2. Since 2 is greater than 1, the series converges. (Its sum is π²/6, but the p-series test only tells you it converges, not what it converges to.)
This is a p-series with p = 1/2. Since 1/2 is less than or equal to 1, the series diverges.
Example 2: Ratio Test
Does the series converge or diverge?
Apply the ratio test
Since L = infinity, which is greater than 1, the series diverges. The factorial grows much faster than the exponential.
Example 3: Comparison Test
Does the following series converge?
For all n at least 1, we have n² + 1 greater than n², so
We know the p-series with p = 2 converges. Since every term of our series is smaller than the corresponding term of a convergent series, our series converges by the comparison test.
Real-World Application
Section titled “Real-World Application”Convergence tests matter whenever you use infinite series in practice:
- Fourier series in audio processing need to converge for the signal reconstruction to work
- Power series approximations in game engines are only valid within their radius of convergence
- Numerical methods (like Newton’s method) are analyzed for convergence speed using ratio-like tests
- Machine learning gradient descent convergence is studied with similar tools