Radius of Convergence Calculator

Enter any series term an and a center c. Get the radius of convergence, the interval of convergence, and a numeric check of both endpoints using the ratio test, the root test, and a partial-sum heuristic.

Find the radius of convergence

Use n for the index. Operators: + - * / ^ ( ). Functions: ln, log, exp, sqrt, abs, sin, cos, tan, fact(n), gamma(x).
The series is sum an(x - c)n.

Presets (known answers shown so you can check the engine):

Center c
0
expansion point
Radius R
-
by ratio test
Interval of convergence
-

Ratio test steps: rn = |an / an+1|

Root test steps: 1 / |an|1/n

Endpoint check: left (x = c - R)

Endpoint check: right (x = c + R)

What is the radius of convergence?

A power series is a sum of the form

a0 + a1(x - c) + a2(x - c)2 + ...

The radius of convergence is the number R that tells you how far from the center c the series is guaranteed to converge. The series converges for every x inside the interval (c - R, c + R), and it diverges outside the closed interval [c - R, c + R]. Everything interesting happens at the two endpoints, where the series may converge or diverge depending on the term an.

The simplest example is the geometric series with an = 1 and center c = 0:

1 + x + x2 + x3 + ...

This series converges to 1 / (1 - x) exactly when |x| < 1, so its radius of convergence is R = 1. Plug in x = 0.5 and the partial sums clearly approach 2. Plug in x = 1.5 and the terms grow without bound. The radius is the boundary between those two behaviors, and it lives entirely in the coefficients an: the same R applies no matter which x you pick, because it measures the coefficients, not the input.

If that sounds abstract, the intuition is simpler than the definition: think of R as the reach of the series. Inside that reach the series behaves itself and sums to a smooth function. At the edge, the series may or may not behave; you have to check each edge separately. Beyond the edge, the terms blow up and the series is meaningless.

The ratio test: the fastest way to find R

For most series you meet in practice, the radius of convergence comes from the ratio test. Take the limit of the ratio of consecutive term magnitudes:

R = limn→∞ |an / an+1|

The series converges when |x - c| < R and diverges when |x - c| > R. Why does this work? The ratio test compares the series to a geometric series term by term, and a power series is dominated by geometric behavior near the boundary of convergence.

Worked example: 1 / 2n

Take an = 1 / 2n, the series 1 + x/2 + x2/4 + .... This calculator evaluates the ratio at large n:

The ratio is exactly |an / an+1| = 2 for every n, because 1/2n ÷ 1/2n+1 = 2. So R = 2, and the series converges for |x| < 2. This matches the fact that Σ (x/2)n is geometric in x/2.

Worked example: the harmonic series term 1/n

With an = 1/n, the ratio approaches 1 slowly, from above:

The pattern is (n + 1)/n = 1 + 1/n, which squeezes toward 1. So R = 1, and the interval is (-1, 1) with endpoint checks pending (see the endpoint section: this series converges conditionally at x = -1 and diverges at x = 1).

Worked example: n / 2n, where the ratio converges slowly

For an = n / 2n the ratio is |an/an+1| = 2n/(n+1):

The ratio creeps up toward 2 from below, so R = 2. This example shows why the calculator samples at n = 10, 20, 40, and beyond: the first step alone (1.82) would have led you to guess roughly 1.8. The limit is what matters.

Two degenerate cases of the ratio test

If the ratio limit is 0, then R = 0: the series converges nowhere except possibly at the center. The factorial term an = n! does this: the ratios are 0.0909, 0.0476, 0.0244, halving roughly each time, because n! / (n+1)! = 1/(n+1) collapses to zero. If the ratio grows without bound, then R = ∞: the series converges for every x. The term an = 1/n! gives ratios 11, 21, 41, growing linearly, so R = ∞, which is why the exponential series ex = Σ xn/n! works for all real x.

The root test: when the ratio test stalls

The root test is the other workhorse:

R = 1 / limn→∞ |an|1/n

It gives the same radius whenever the ratio test works, and it keeps working in cases where the ratio is awkward or oscillates.

Worked example: 1 / 10n

Here |an|1/n = 1/10 for every n, so the root test gives R = 1 / (1/10) = 10. The ratio test agrees: the ratios are 10.0000, 10.0000, 10.0000. The series Σ (x/10)n is geometric in x/10, so it converges for |x| < 10.

Worked example: 1 / nn

This one is brutal for the ratio test and trivial for the root test. The root test evaluates |1/nn|1/n = 1/n, which crashes to zero, so R = ∞. The engine sees it directly:

The root steps grow without bound, so the radius is infinite. The series Σ xn/nn converges for every real x.

Worked example: nn, the opposite extreme

With an = nn the root steps are 0.1000, 0.0500, 0.0250, halving toward zero, so R = 0. The series Σ nnxn converges only at x = 0.

Which test should you use? Use the ratio test first when an contains factorials or products, because factorials telescope beautifully in ratios. Use the root test when an is a power like nn or nk. This calculator runs both and shows you both sets of steps, so you can see which one settles faster for your particular series.

Endpoints: turning the radius into the interval

The radius tells you the interval (c - R, c + R) where the series converges. The two endpoints x = c - R and x = c + R are separate questions, and this is where most students lose points: the ratio and root tests are inconclusive at the endpoints by construction, because the ratio there is exactly 1.

At an endpoint, the series becomes an ordinary numerical series. For example, the harmonic-based series with an = 1/n and c = 0 has R = 1, and the endpoints are x = -1 and x = 1:

So the interval of convergence is [−1, 1): closed at the left, open at the right. This calculator runs a partial-sum heuristic at both endpoints and returns likely-converges or likely-diverges for each, then assembles the bracket notation for you.

The three rules of endpoint behavior

  1. Terms must tend to zero. If the terms of the series at the endpoint do not approach zero, the series must diverge there. The geometric series at x = 1 has terms 1, 1, 1, ...; the series Σ (1/2)n at x = 2 has terms 1, 1, 1, ...; and Σ n at x = 1 has terms 1, 2, 3, .... All three diverge, and the engine flags all three with the same message: terms do not tend to zero.
  2. Alternating terms can save a borderline endpoint. If the terms shrink to zero monotonically and alternate in sign, the alternating series test guarantees convergence. That is exactly what happens at x = -1 for 1/n, 1/n^0.5, and 1/(n ln n): all three converge conditionally at the left endpoint even though the same series diverge at the right endpoint.
  3. p-series are the reference standard. The series Σ 1/np converges when p > 1 and diverges when p ≤ 1. At the right endpoint of a centered-at-zero p-series, convergence and divergence hinge on this single comparison. The engine confirms the pattern: 1/n2 converges at x = 1, while 1/n and 1/n^0.5 diverge there.

Absolute versus conditional convergence at endpoints

When a series converges at an endpoint, it may do so absolutely (the series of absolute values also converges) or conditionally (the series converges only because of the alternating signs). The distinction matters for rearrangement theorems, and it explains the shape of many intervals:

Series an, centered at 0At x = 1 (right endpoint)At x = -1 (left endpoint)Interval
1/n2 (p = 2)converges absolutelyconverges absolutely[−1, 1]
1/n (harmonic)divergesconverges conditionally[−1, 1)
1/n^0.5 (p = 1/2)divergesconverges conditionally[−1, 1)
1/(n ln n)diverges (integral test)converges conditionally(−1, 1]
(-1)n/nconverges conditionallydiverges(−1, 1]
1 (geometric)diverges (terms = 1)diverges (terms alternate)(−1, 1)

Notice the pattern: an alternating endpoint that is conditional is a left endpoint when the series is built from 1/np, because (-1)n appears at x = -1. Flip the sign of the coefficient, as in (-1)n/n, and the conditional endpoint flips to the right side.

Reference table: radius of convergence of common series

Every value below was produced by this page's engine, which evaluates the coefficients in logarithmic space so that factorials and nn terms never overflow a double-precision number. Where the table lists an interval, both endpoints were checked numerically and the verdicts are shown.

Series term anRadius RInterval of convergence (center 0)Notes
1 (geometric)1(−1, 1)diverges at both endpoints; terms never approach zero
1/n (harmonic)1[−1, 1)conditional convergence at x = −1
1/n2 (p = 2)1[−1, 1]absolute convergence at both endpoints
1/n3 (p = 3)1[−1, 1]p > 1 means absolute convergence at both endpoints
1/n^0.5 (p = 1/2)1[−1, 1)conditional at x = −1; p ≤ 1 means divergence at x = 1
1/n^(1/3) (p = 1/3)1[−1, 1)same p-series pattern as p = 1/2
1/(n ln n)1(−1, 1]right endpoint diverges by integral test (numeric check is inconclusive, see the limits section); left converges conditionally
1/(n (ln n)2)1[−1, 1]converges at both endpoints; the right endpoint is a borderline call that resolves by integral test
(-1)n/n (alternating harmonic)1(−1, 1]conditional at x = 1
(-1)n/n21[−1, 1]absolute convergence at both endpoints
1/2n2(−2, 2)terms equal 1 in magnitude at both endpoints
n/2n2(−2, 2)terms grow without bound at both endpoints
n2/2n2(−2, 2)terms grow without bound at both endpoints
(1/3)n3(−3, 3)geometric in x/3; terms equal 1 in magnitude at the endpoints
1/10n10(−10, 10)geometric in x/10; terms equal 1 in magnitude at the endpoints
2n0.5(−0.5, 0.5)terms equal 1 in magnitude at the endpoints
1/n!(−∞, ∞)the exponential series; converges for all real x
1/nn(−∞, ∞)root test: |an|1/n = 1/n tends to zero
n!0only x = 0ratio collapses: n!/(n+1)! = 1/(n+1) tends to zero
nn0only x = 0root test: |an|1/n = n grows without bound

Two things stand out in this table. First, most simple algebraic terms give R = 1: the radius only cares about the growth rate of the coefficients, and polynomials and logarithms grow too slowly to move the boundary away from 1. Second, exponential terms move the radius away from 1 in the direction you would guess: dividing by 2n doubles the radius, and multiplying by 2n halves it.

Series centered away from zero

Nothing changes except the location. The interval becomes (c - R, c + R) instead of (-R, R), and the endpoint values become x = c - R and x = c + R.

Take the p-series term an = 1/n2 centered at c = 3. The radius is still 1, so the endpoints are x = 2 and x = 4. At x = 4 the series is Σ 1/n2, which converges. At x = 2 the series is Σ (-1)n/n2, which also converges (absolutely, since the absolute values are the same p = 2 series). The engine confirms both endpoints, and the interval is [2, 4].

Try it: load the preset 1/n^2 at c = 3 and watch the number line center on 3 instead of 0. The radius, the interval, and the endpoint dots all shift together.

When R = 0 or R = infinity

Both extremes are real, and both show up in the presets.

R = 0 means the series converges only at the center x = c (and even there only trivially). The factorial series Σ n! xn is the classic example: no matter how small x is, the factorial growth eventually overwhelms xn. The engine detects this when the ratio steps keep collapsing: 0.0909, 0.0476, 0.0244 for n!, or the root steps 0.1000, 0.0500, 0.0250 for nn.

R = ∞ means the series converges for every real x, no matter how large. The exponential series Σ xn/n! and the series Σ xn/nn both do this, for different reasons: factorial denominators shrink the terms faster than any power of x can grow, and nn denominators do the same even more aggressively. In both cases the interval notation is (-∞, ∞) and there are no endpoints to check.

What numeric checking can and cannot prove

This calculator is honest about its limits, because the README of the project demands it. The ratio and root steps are exact where the ratio is constant (geometric-type series) and become exact estimates elsewhere. The endpoint verdicts come from a partial-sum heuristic: the engine sums terms in doubling blocks and checks whether the increment between blocks shrinks. That is strong evidence, but it is not a proof.

The clearest example of the limit is the series Σ 1/(n ln n) at its right endpoint x = 1. This series diverges, but it diverges slower than any computer can see: the partial sums grow like ln(ln N), and after two million terms the sum is only around 3.5. The doubling-block increments shrink so slowly that the numeric check returns inconclusive. The exact answer, by the integral test, is divergence. When you load that preset, the page tells you both things: what the numbers suggest, and what the test proves.

So treat the endpoint verdicts as a guided guess with a clear explanation of why, and use the classical tests (alternating series, p-series, comparison, integral) to lock in the final answer. The preset notes tell you the known answer for each built-in example so you can calibrate your trust in the numeric verdicts.

Common mistakes

Frequently asked questions

What is the radius of convergence of a power series?
The radius of convergence R is the distance from the center c to the boundary of the set of x values where the series converges. The series converges for every x with |x - c| < R and diverges for every x with |x - c| > R. For the geometric series with an = 1 centered at 0, the radius is 1 because the series converges exactly for |x| < 1.
How do I find the radius of convergence using the ratio test?
Take the limit of |an / an+1| as n grows. That limit is R. For an = 1/2n the ratio is exactly 2 at every n, so R = 2. For an = 1/n the ratio is (n+1)/n = 1 + 1/n, which approaches 1, so R = 1. For an = n! the ratio is 1/(n+1), which approaches 0, so R = 0.
How do I find the radius of convergence using the root test?
Take the limit of |an|1/n and invert it. For an = 1/10n, the n-th root is 1/10, so R = 10. For an = 1/nn, the n-th root is 1/n, which tends to 0, so R = ∞. The root test shines on power-type terms where the ratio test is messy.
What is the difference between radius of convergence and interval of convergence?
The radius is the single number R. The interval of convergence is the actual set of x values, which is (c - R, c + R) plus whichever endpoints converge. For the harmonic series term 1/n centered at 0, R = 1 but the interval is [−1, 1): closed at the left because the alternating harmonic series converges at x = -1, open at the right because the harmonic series diverges at x = 1.
Can the radius of convergence be 0 or infinity?
Yes, both. R = 0 happens when the terms grow faster than any geometric series, as with an = n! or an = nn; the series converges only at the center. R = ∞ happens when the terms shrink faster than any power of x can fight, as with an = 1/n! or an = 1/nn; the series converges for every real x.
Does a power series converge at the endpoints of its interval?
Sometimes yes, sometimes no, and sometimes at one endpoint but not the other. The geometric series diverges at both endpoints of (−1, 1). The p-series with p = 2 converges at both endpoints of [−1, 1]. The harmonic series term 1/n converges at x = -1 and diverges at x = 1, giving [−1, 1). Endpoints always need a separate check; the ratio and root tests are silent there.

Key takeaways

Conclusion

The radius of convergence is the first thing to compute for any power series, and the ratio and root tests give it to you quickly: divide consecutive terms or take n-th roots, read the limit, invert if needed. The radius alone does not finish the job. The interval of convergence is the radius plus a two-point investigation at x = c - R and x = c + R, where p-series comparisons, alternating series behavior, and the terms-not-zero rule decide whether each bracket is open or closed.

This radius of convergence calculator does the mechanical work and shows its work: ratio steps, root steps, endpoint verdicts, and a number line, all from the single expression an and the center c you type in. The numbers it produces match the classical results for every preset on the page, and it flags the one case in its preset list where the numeric evidence alone cannot decide. Type in your own series term, or start from a preset, and check whether your interval ends up open, closed, or mixed.