Radius of Convergence Calculator

Determine the radius and interval of convergence for power series \(\sum a_n (x-c)^n\) using ratio or root test. Symbolic computation with robust numerical fallback (log‑scale to avoid overflow).

Ratio test: \( \displaystyle L = \lim_{n\to\infty} \left| \frac{a_{n+1}}{a_n} \right| \)   ⇒   \( R = 1/L \) (if \(0

Root test: \( \displaystyle L = \lim_{n\to\infty} \sqrt[n]{|a_n|} \)   ⇒   same relation.

Use standard notation: ^ for power, * for multiplication, factorial(n) for n! , or just n! (will be converted).
1/n! (exp series) 1/n² (p-series) 1/n (harmonic) (-1)ⁿ/n n! (R=0) n!/nⁿ (R=e)
Computing limit...

? Understanding Radius of Convergence

Definition

For a power series n=0an(xc)n, the radius of convergence R is a non‑negative real number or such that the series converges absolutely for |xc|<R and diverges for |xc|>R. At the endpoints |xc|=R, convergence must be checked separately.

How to find R – Ratio & Root Tests

Both tests compute a limit L (if it exists) and then R=1/L (with the conventions 1/0= and 1/=0).

  • Ratio test: L=limn|an+1an|
  • Root test: L=limn|an|n

If the limit does not exist, one may use the superior limit (limsup) for the root test, but our calculator assumes the limit exists or can be approximated numerically.

Examples of common series

anL (ratio test)RInterval (center c=0)
1/n!0(,)
1/np (any fixed p)11(1,1)
1 (geometric)11(1,1)
n!0only x=0
n!nn1/ee(e,e)
12n1/22(2,2)

What about endpoints?

The radius gives the open interval of absolute convergence. At x=c±R, the series may converge conditionally or diverge. For example, xn/n has R=1, converges at x=1 (alternating harmonic) but diverges at x=1. Our calculator does not check endpoints automatically – you must apply additional tests (alternating series test, p‑test, etc.).

Numerical stability for huge terms (e.g. factorials)

When |an| grows or decays extremely fast (like n!), direct evaluation causes overflow/underflow. Our numeric mode now uses logarithmic scaling:
ln|an+1an|=ln|an+1|ln|an| and then exponentiates,
1nln|an| for the root test. This avoids numerical overflow and gives reliable estimates even for n up to millions.

When to use Auto / Numeric mode

  • Auto: Tries symbolic limit first (nerdamer). If successful, exact R is shown. If symbolic fails, it automatically falls back to the logarithmic numeric method.
  • Numeric only: Skips symbolic, directly uses log‑scale numeric approximation. Useful for very complicated expressions where symbolic integration is hopeless.
The calculator now handles factorial terms robustly – try n! or (n!)/(nn) in numeric mode; you will get accurate L without overflow errors.