Series convergence tests help you decide whether an infinite series converges or diverges. The key is not memorizing every test in isolation. It is learning which test matches the shape of the terms.

If you need a fast way to choose, start here:

  1. Check whether an0a_n \to 0. If it does not, the series diverges.
  2. Look for a known pattern first, especially geometric series or pp-series.
  3. Use comparison for positive terms that resemble a familiar benchmark.
  4. Use ratio or root when factorials, exponentials, or powers dominate.
  5. Use the alternating series test only when signs alternate and the term sizes decrease to 00.

What series convergence tests tell you

For a series

n=1an,\sum_{n=1}^{\infty} a_n,

convergence means the partial sums approach a finite limit. Divergence means they do not.

A convergence test usually does not compute the sum. It tells you whether a finite sum exists. That distinction matters because the goal is often classification, not evaluation.

Start with the term test for divergence

Before choosing a sophisticated test, check the terms themselves.

If

limnan0,\lim_{n \to \infty} a_n \ne 0,

then

n=1an\sum_{n=1}^{\infty} a_n

must diverge.

This is sometimes called the nnth-term test for divergence. It is only a one-way test: if an0a_n \to 0, that does not guarantee convergence.

For example,

n=11n\sum_{n=1}^{\infty} \frac{1}{n}

still diverges even though 1n0\frac{1}{n} \to 0.

How to choose the right convergence test

Recognize geometric series and pp-series first

These are the first models to recognize.

A geometric series

n=0arn\sum_{n=0}^{\infty} ar^n

converges when r<1|r| < 1 and diverges when r1|r| \ge 1.

A pp-series

n=11np\sum_{n=1}^{\infty} \frac{1}{n^p}

converges when p>1p > 1 and diverges when p1p \le 1.

If your series looks close to one of these, that usually suggests the next step.

Use the comparison test for positive terms

Use the comparison test for series with positive terms. The logic is intuitive: if your terms are no larger than the terms of a known convergent series, your series also converges. If your terms are at least as large as the terms of a known divergent series, your series also diverges.

This test depends on inequalities, so it is most useful when you can compare terms cleanly.

Use limit comparison when the dominant behavior matches

Use limit comparison when direct inequalities feel awkward but two positive-term series have the same dominant behavior.

If

an>0,bn>0,a_n > 0, \qquad b_n > 0,

and

limnanbn=c\lim_{n \to \infty} \frac{a_n}{b_n} = c

for some finite constant c>0c > 0, then an\sum a_n and bn\sum b_n either both converge or both diverge.

This is often the cleanest choice for rational expressions in nn.

Use the ratio test for factorials and exponentials

Use the ratio test when factorials or exponential factors appear.

For

an,\sum a_n,

look at

L=limnan+1an.L = \lim_{n \to \infty} \left| \frac{a_{n+1}}{a_n} \right|.

Then:

  1. If L<1L < 1, the series converges absolutely.
  2. If L>1L > 1 or L=L = \infty, the series diverges.
  3. If L=1L = 1, the test is inconclusive.

That last case matters. A limit of 11 does not mean convergence or divergence by itself.

Use the root test when an nnth power is built in

Use the root test when the nnth root is natural to compute, especially for terms like ()n(\cdots)^n.

Compute

L=limnann.L = \lim_{n \to \infty} \sqrt[n]{|a_n|}.

The conclusions are the same as for the ratio test:

  1. If L<1L < 1, the series converges absolutely.
  2. If L>1L > 1, the series diverges.
  3. If L=1L = 1, the test is inconclusive.

Use the alternating series test only under its conditions

Use this when the signs alternate, usually in a form like

(1)nbnor(1)n+1bn,\sum (-1)^n b_n \quad \text{or} \quad \sum (-1)^{n+1} b_n,

with bn0b_n \ge 0.

If bnb_n decreases eventually and bn0b_n \to 0, then the series converges.

This test shows convergence, but not necessarily absolute convergence. That difference is the gap between conditional convergence and absolute convergence.

Use the integral test when the series comes from a function

Use the integral test when the series comes from a positive, continuous, decreasing function f(x)f(x) with f(n)=anf(n) = a_n for large nn.

Then

n=1an\sum_{n=1}^{\infty} a_n

and

1f(x)dx\int_1^{\infty} f(x)\,dx

either both converge or both diverge.

This is especially useful for logarithmic and power-based terms, but only when the required conditions hold.

Worked example: ratio test on n2n\sum \frac{n}{2^n}

Consider

n=1n2n.\sum_{n=1}^{\infty} \frac{n}{2^n}.

The terms include an exponential factor 2n2^n, so the ratio test is a natural choice.

Let

an=n2n.a_n = \frac{n}{2^n}.

Then

an+1an=(n+1)/2n+1n/2n=n+12n.\left| \frac{a_{n+1}}{a_n} \right| = \frac{(n+1)/2^{n+1}}{n/2^n} = \frac{n+1}{2n}.

Now take the limit:

limnn+12n=12.\lim_{n \to \infty} \frac{n+1}{2n} = \frac{1}{2}.

Because 12<1\frac{1}{2} < 1, the series converges absolutely.

The important takeaway is the choice of test. The exponential term 2n2^n makes the ratio simplify cleanly, so the ratio test gives a quick answer with little algebra.

Common mistakes with convergence tests

Using a test that does not match the series

If a series looks like a rational function of nn, comparison or limit comparison is often better than ratio. If it contains factorials or exponentials, ratio is often better than comparison.

Forgetting the conditions

The comparison and limit comparison tests are for positive-term series. The alternating series test needs eventually decreasing positive magnitudes and a limit of 00. The integral test needs positivity, continuity, and decreasing behavior on the interval you use.

Treating L=1L = 1 as a conclusion

For both ratio and root tests, L=1L = 1 means the test did not settle the question. You need a different approach.

Assuming an0a_n \to 0 is enough

It is necessary for convergence, but not sufficient. The harmonic series is the standard counterexample.

Where series convergence tests are used

Convergence tests show up throughout calculus and analysis. They help classify infinite sums, justify power-series manipulations, and decide whether an approximation method is mathematically safe to use.

In practice, the real skill is pattern recognition. You are learning to match the structure of a series to the test that reveals that structure fastest.

Try a similar problem

Try

n=13nn!.\sum_{n=1}^{\infty} \frac{3^n}{n!}.

Before calculating anything, decide which test fits the shape best and say why. That habit is usually more valuable than rushing into algebra.

Then solve it and check whether the same test would still be your first choice for

n=1n23n.\sum_{n=1}^{\infty} \frac{n^2}{3^n}.

Trying one more case is a good way to make the pattern stick.

Need help with a problem?

Upload your question and get a verified, step-by-step solution in seconds.

Open GPAI Solver →