Interactive convergence engine: ratio test, interval detection, and N‑term partial sums. Supports classical Maclaurin series (center c=0) plus fully custom coefficient sequences with numeric radius estimation.
A power series centered at c is written Σ aₙ (x−c)ⁿ. The radius of convergence R is derived via the ratio test: R = 1 / L where L = lim |aₙ₊₁ / aₙ| (if L=0 → R=∞; if L=∞ → R=0). For built‑in Maclaurin series (center c=0) we use closed‑form analysis; for custom series we numerically approximate L with high‑iteration monitoring (n up to 1200). Endpoint behaviour is reported for classical series and must be checked manually for custom expressions.
1/(n+1)). Factorial is available as factorial(n).
| Function | Series Σ aₙ xⁿ | Radius R | Interval | Endpoint notes |
|---|---|---|---|---|
| eˣ | 1 + x + x²/2! + … | ∞ | (-∞, ∞) | converges absolutely |
| sin x | x − x³/3! + x⁵/5! … | ∞ | (-∞, ∞) | converges for all real x |
| cos x | 1 − x²/2! + x⁴/4! … | ∞ | (-∞, ∞) | absolutely convergent |
| 1/(1−x) | 1 + x + x² + x³ + … | 1 | (-1, 1) | diverges at x=±1 |
| ln(1+x) | x − x²/2 + x³/3 − … | 1 | (-1, 1] | converges at x=1 (alternating harmonic) |
| arctan x | x − x³/3 + x⁵/5 − … | 1 | [-1, 1] | converges at both endpoints |
Marine navigation algorithms often use the Gregory series (arctan) for converting between Cartesian and polar coordinates. Our calculator shows that the series converges on [-1,1] and the partial sum with N=20 gives accuracy to 1e-6. Understanding the radius of convergence avoids using the series outside |x|>1 where it diverges.
When you provide a custom coefficient expression (e.g., aₙ = 1/(2ⁿ·(n+1))), the calculator numerically evaluates |aₙ₊₁/aₙ| for n = 0 … 1200, then extracts the limiting ratio via median filtering of the last 40 ratios. The estimated radius R = 1/L is displayed along with a stability flag. This method is reliable for rational, exponential, factorial and many combinatorial sequences, but edge cases (oscillating without decay) may produce warnings. For exact theoretical results, always cross‑check with analytic tests.