Convergence Test Calculator - Test Any Series for Convergence

Use n as the variable. Supported: ^, n!, *, /, +, -, parentheses, pi, e

Series: Σ aₙ from n = 1 to ∞

First terms:

a1=1.00000,a2=0.250000,a3=0.111111,a4=0.0625000,a5=0.0400000,a6=0.0277778

How to Use This Calculator

  1. Select a preset series from the dropdown, or type your own general term aₙ using n as the variable
  2. Adjust the start index if your series begins at n = 0 instead of n = 1
  3. Click "Run All Convergence Tests" to apply 7 tests simultaneously
  4. Review the overall verdict banner at the top, then expand individual tests to see step-by-step reasoning
  5. Check the "Best test" recommendation to learn which test is most efficient for your series type
average • 0 ratings
Your rating
Tap a star to rate

Your rating helps improve Convergence Test Calculator - Test Any Series for Convergence. We store only an anonymized vote (no personal data).

Share this calculator

Help others solve their calculations

Found this calculator helpful? Share it with your friends, students, or colleagues who might need it!

Convergence Test Calculator: How to Determine if a Series Converges or Diverges

About the Author

Marko Šinko - Co-Founder & Lead Developer

Marko Šinko

Co-Founder & Lead Developer, AI Math Calculator

Lepoglava, Croatia
Advanced Algorithm Expert

Croatian developer with a Computer Science degree from University of Zagreb and expertise in advanced algorithms. Co-founder of award-winning projects, ensuring precise mathematical computations and reliable calculator tools.

📅 Published:Updated:
Convergence test calculator decision flowchart with branching paths to ratio, root, p-series, and geometric tests

A convergence test calculator eliminates the biggest frustration in Calculus II: picking the wrong test, grinding through algebra, and ending up with "inconclusive." Students waste 20+ minutes per problem when a 30-second check would have told them to try a different approach. This calculator runs seven tests at once — Ratio, Root, Divergence, p-Series, Geometric, Alternating Series, and Limit Comparison — then tells you which one actually works for your series.

Below, you'll find a decision framework for choosing the right test before you compute anything, worked examples that show the tests in action, and a head-to-head comparison of when each test beats the others.

Convergence Test Calculator: Which Test Should You Try First?

Every calculus textbook lists the tests, but few explain the order you should try them. Here's the shortcut professional mathematicians use: look at the structure of aₙ, not just its formula.

If your series looks like…Try this test firstWhy
arⁿGeometric Series TestInstant — just check |r| < 1
1/nᵖp-Series TestOne comparison: p > 1?
n!, (2n)!, n!!/kⁿRatio TestFactorials cancel beautifully in aₙ₊₁/aₙ
(f(n))ⁿRoot Testnth root strips the nth power instantly
(-1)ⁿ · bₙAlternating Series TestOnly test designed for sign changes
Rational: nᵏ/nᵐLimit Comparison with 1/nᵐ⁻ᵏReduces to a p-series comparison

Always start with the Divergence Test as a sanity check. If lim aₙ ≠ 0, the series diverges — no further work needed. But be careful: lim aₙ = 0 proves nothing about convergence. The series convergence calculator can walk you through each individual test if you want deeper detail on any one method.

Worked Example: n²/3ⁿ — Ratio Test vs. Root Test

Consider Σ n²/3ⁿ for n = 1 to ∞. Both the Ratio Test and Root Test work here, but one is faster.

Ratio Test

Compute |aₙ₊₁/aₙ|:

= (n+1)²/3ⁿ⁺¹ · 3ⁿ/n²

= (n+1)²/(3n²)

→ 1/3 as n → ∞

L = 1/3 < 1 → Converges ✓

Root Test

Compute ⁿ√|aₙ|:

= ⁿ√(n²/3ⁿ)

= (n^(2/n)) / 3

→ 1/3 as n → ∞

L = 1/3 < 1 → Converges ✓

Both give L = 1/3. The Ratio Test required slightly less algebraic manipulation here because the 3ⁿ factors cancel directly. For series with nⁿ-type terms (like (n/(n+1))ⁿ), the Root Test wins instead. Our ratio test calculator and root test calculator can both handle these individually with detailed step-by-step work.

All Seven Tests Compared: Strengths and Blind Spots

TestCan proveFails whenBest for
DivergenceDivergence onlylim aₙ = 0 (says nothing)Quick first check
RatioBothL = 1 (e.g. 1/n²)Factorials, exponentials
RootBothL = 1 (same as Ratio)nth power terms
p-SeriesBothNot 1/nᵖ formPower-of-n denominators
GeometricBoth + exact sumNot arⁿ formConstant-ratio series
AlternatingConvergence onlyNon-alternating series(-1)ⁿ series
ComparisonBothNo obvious benchmarkRational expressions

Notice the key asymmetry: the Divergence Test can only prove divergence, and the Alternating Series Test can only prove convergence. Every other test can go either way — but each becomes inconclusive when L = 1, and that's exactly where p-series and comparison tests pick up the slack.

The L = 1 Problem: Why Ratio and Root Tests Fail on 1/n²

Run the Ratio Test on Σ 1/n². You get aₙ₊₁/aₙ = n²/(n+1)² → 1 as n → ∞. Inconclusive. Same for the Root Test: ⁿ√(1/n²) = n^(-2/n) → 1. Both useless here.

Yet we know Σ 1/n² converges (it equals π²/6 ≈ 1.6449). The p-Series Test handles it in one step: p = 2 > 1, done. This is why you shouldn't rely on a single test — the integral test calculator would also confirm convergence here by evaluating ∫1/x² dx = 1.

Bottom line: when L = 1, switch to p-series, comparison, or integral tests. The calculator above flags this automatically.

Factorial Denominators: The Ratio Test's Domain

Factorials grow faster than any exponential or polynomial. Any series with n! in the denominator almost certainly converges, and the Ratio Test proves it cleanly. Take Σ 2ⁿ/n!:

aₙ₊₁/aₙ = 2ⁿ⁺¹/(n+1)! · n!/2ⁿ

= 2/(n+1)

→ 0 as n → ∞

L = 0 < 1 → Converges absolutely

L = 0 means the terms shrink incredibly fast. In fact, Σ 2ⁿ/n! = e² - 1 ≈ 6.389. The exponential function's Taylor series is the classic example — and you can verify it by entering 2^n/n! in the calculator above. The alternating series calculator handles the variant (-1)ⁿ·2ⁿ/n! if your series has sign changes.

Absolute Convergence vs. Conditional: What the Tests Actually Prove

There's a subtlety most textbooks gloss over. When the Ratio or Root Test says "converges," they mean absolute convergence — Σ|aₙ| converges, which is the strongest guarantee. The Alternating Series Test only proves conditional convergence — the series converges, but Σ|aₙ| might diverge.

Why does this matter? Conditionally convergent series are fragile. Rearranging terms can change the sum — a result known as the Riemann rearrangement theorem. Σ (-1)ⁿ⁺¹/n = ln(2) ≈ 0.6931, but rearranging the same terms gives any real number you want. Absolutely convergent series don't have this problem.

The calculator dashboard shows which tests proved convergence so you can distinguish absolute from conditional. If the Ratio or Root Test gives a verdict, it's absolute. If only the Alternating Series Test fires, check whether the radius of convergence tells you more about the series' behavior.

Three Mistakes That Cost Exam Points

Mistake #1: "lim aₙ = 0 means it converges"

The harmonic series 1/n has lim aₙ = 0 but diverges. The Divergence Test only works in one direction — it can prove divergence (when the limit isn't zero), never convergence.

Mistake #2: Applying the Alternating Series Test to |aₙ|

The AST applies to the original series with sign changes, not the absolute value version. If you strip the (-1)ⁿ, you're running a different test entirely.

Mistake #3: Forgetting absolute value in the Ratio Test

The Ratio Test requires |aₙ₊₁/aₙ|, not aₙ₊₁/aₙ. Without the absolute value, alternating series produce ratios that flip sign and the limit doesn't exist.

Frequently Asked Questions

How do I know which convergence test to use for a series?

Match the structure of the general term aₙ to the right test. Factorials → Ratio Test. nth powers like (f(n))ⁿ → Root Test. Constant ratio arⁿ → Geometric Test. Form 1/nᵖ → p-Series Test. Alternating signs (-1)ⁿ → Alternating Series Test. When in doubt, start with the Divergence Test and then try Ratio or Comparison.

What is the difference between the Ratio Test and the Root Test?

Both compute a limit L and conclude convergence if L < 1, divergence if L > 1. The Ratio Test uses L = lim |aₙ₊₁/aₙ| and excels with factorials. The Root Test uses L = lim ⁿ√|aₙ| and works best when aₙ has an nth power. When both apply, they always give the same L value.

Why does the Divergence Test only prove divergence and not convergence?

The Divergence Test checks whether lim aₙ = 0. If the limit is not zero, the series must diverge — terms that don't shrink can't sum to a finite value. But lim aₙ = 0 is necessary, not sufficient: the harmonic series 1/n has terms going to zero yet still diverges. You need a stronger test to confirm convergence.

What does it mean when a convergence test is inconclusive?

An inconclusive result means the test cannot determine whether the series converges or diverges — usually because the computed limit L equals exactly 1 (for Ratio/Root tests) or because the series doesn't match the test's requirements. You must try a different test. The p-Series Test, Comparison Test, or Integral Test often work when Ratio and Root fail.

Which test should I try first for a series with changing signs?

First check whether the terms tend to zero; if they do not, the series diverges. Then examine the absolute values using a suitable comparison, ratio, or root test. If that series diverges, the original may still converge conditionally, so check whether the alternating series test or another sign-sensitive argument applies.

Can I use multiple convergence tests on the same series?

Yes, and it's often a good strategy. Running multiple tests confirms results and catches edge cases. For example, for Σn²/3ⁿ, both the Ratio Test (L = 1/3) and Root Test (L = 1/3) confirm convergence. If one test is inconclusive, another may give a definitive answer.

How does the p-Series Test work for Σ1/nᵖ?

The p-Series Test states that Σ1/nᵖ converges if and only if p > 1. For p = 2, the series equals π²/6 ≈ 1.6449. For p = 1 (the harmonic series), it diverges. For p = 0.5, it also diverges. This test is decisive — it always gives a definitive answer when the series matches the 1/nᵖ form.