Home Series & Sequences

Series & Sequences
From Convergence to Taylor Series

Everything you need for infinite sums, convergence tests, geometric and power series, Taylor expansions, and error bounds. Ten in-depth topics, each with worked examples and a quiz.

10Topics Covered
100+Worked Examples
100Quiz Questions
Share this page
§ 01

What Are Series & Sequences — and Why Do They Matter?

An infinite sum that actually converges to a finite number is one of the most beautiful ideas in mathematics. This section builds that idea from scratch.

A sequence is simply an ordered list of numbers: a₁, a₂, a₃, … The central question is whether the terms approach a limit as the index grows: and if so, what that limit is. A series takes this further: it adds the terms of a sequence together and asks whether the running total settles on a finite value.

This might seem abstract, but the applications are everywhere. The number e is defined as the sum 1 + 1 + 1/2! + 1/3! + …, an infinite series. Your calculator evaluates sin(x) by summing a few terms of the sine series and stopping when the error is small enough. Signal processing, quantum mechanics, financial mathematics, and image compression all rest on series expansions of functions.

At varsity level, two big skills dominate this section. First, you need to decide whether a given series converges (adds to a finite number) or diverges (blows up or oscillates forever). There are six main tests for this, each suited to a different family of series. Second, you need to represent functions as infinite polynomials, power series, and in particular Taylor and Maclaurin series, and then use them to approximate values, evaluate tricky limits, and integrate functions that have no elementary antiderivative.

Prerequisites. You should be comfortable with limits (especially limits at infinity), derivatives including the chain rule, and definite integrals before diving into this section. If any of those feel shaky, the Limits and Differentiation hubs are the right starting point.
§ 02

All 10 Topics in This Section

Work through them in order if you are new to the subject. Each page stands alone if you need a specific topic fast.

Topic 01 · Foundation
Sequences
Convergence and divergence of sequences, monotone sequences, the squeeze theorem, geometric and arithmetic sequences, and recursive definitions.
ConvergenceLimitsSqueeze Thm
Topic 02 · Foundation
Series Convergence
Partial sums, the divergence test, geometric series, harmonic series divergence proof, and telescoping series — all the core ideas before the big tests.
Partial SumsGeometricHarmonic
Topic 03 · Essential
Geometric Series
The only series with a clean closed-form sum. Derivation of a/(1−r), convergence condition |r| < 1, partial sums, and real-world applications including Zeno's paradox and finance.
Closed Form|r| < 1Applications
Topic 04 · Essential
The p-Series Test
Σ 1/nᵖ converges if and only if p > 1. Proof via the integral test, the borderline case p = 1 (harmonic series), and the Basel problem p = 2 where the sum is π²/6.
Integral TestHarmonicBasel Problem
Topic 05 · Convergence Tests
Comparison Tests
Direct Comparison Test and Limit Comparison Test — the workhorses for rational-type series. Choosing the right comparison series is an art this page teaches step by step.
DCTLCTStrategy
Topic 06 · Convergence Tests
Ratio & Root Tests
The ratio test L = lim|aₙ₊₁/aₙ| and root test L = lim|aₙ|^(1/n). Powerful for factorials and exponentials, but inconclusive when L = 1.
Ratio TestRoot TestFactorials
Topic 07 · Convergence Tests
Alternating Series
The Alternating Series Test (Leibniz), the Estimation Theorem for bounding error, and the crucial distinction between absolute and conditional convergence.
Leibniz TestAbsolute Conv.Error Bound
Topic 08 · Power Series
Power Series
Series of the form Σcₙ(x−a)ⁿ. Radius and interval of convergence, finding R with the ratio test, endpoint checking, and differentiating/integrating term by term.
Radius RIntervalTerm-by-Term
Topic 09 · Power Series
Taylor Series
The general Taylor expansion f(x) = Σf⁽ⁿ⁾(a)/n! · (x−a)ⁿ. Derivation, standard series for eˣ, sin x, cos x, ln(1+x), error bounds, and using series to evaluate limits.
Error BoundsRemainder ThmLimits
Topic 10 · Power Series
Maclaurin Series
The a = 0 special case of the Taylor series. Complete reference table, deriving new series by substitution and composition, and integrating Maclaurin series for non-elementary integrals.
a = 0SubstitutionReference Table
§ 03

Convergence Tests — Quick Reference

Six tests, each with a different sweet spot. The skill is knowing which to reach for first.

No single convergence test works on every series. Part of mastering this section is building intuition for which test fits which series: a rational-looking series calls for comparison, a series with factorials calls for the ratio test, and a series that alternates sign calls for Leibniz's test.

Test Condition for Convergence Best Used When
Divergence Test If lim aₙ ≠ 0, series diverges. (Cannot prove convergence.) Always try this first — it is the cheapest check.
Geometric Series Σ arⁿ converges iff |r| < 1. Sum = a/(1−r). Terms are a constant raised to a power of n.
p-Series Test Σ 1/nᵖ converges iff p > 1. Terms look like 1/nᵖ or 1/n^(something).
Direct Comparison If 0 ≤ aₙ ≤ bₙ and Σbₙ converges, so does Σaₙ. Terms can be bounded above/below by a known series.
Limit Comparison If lim aₙ/bₙ = c > 0, both series behave the same. Rational-type terms where direct comparison is awkward.
Ratio Test L = lim|aₙ₊₁/aₙ|. Converges if L < 1, diverges if L > 1. Terms contain n! or aⁿ (exponentials and factorials).
Root Test L = lim|aₙ|^(1/n). Same conclusion rule as ratio test. Terms are an nth power: (f(n))ⁿ.
Alternating Series Test If terms decrease to 0 in magnitude, the alternating series converges. Series alternates sign: (−1)ⁿ aₙ with aₙ → 0 decreasing.
Decision rule of thumb. Ratio test → factorials or exponentials. Comparison tests → rational expressions in n. p-series → pure power denominators. Alternating series test → (−1)ⁿ factor present. Root test → terms raised to the nth power.
§ 04

Power Series and Taylor Expansions

The second half of this section moves beyond convergence testing into representing functions as infinite polynomials, one of the most powerful tools in all of analysis.

A power series centred at a is a series of the form Σcₙ(x − a)ⁿ, where the cₙ are constants. Unlike the series in §03, a power series defines a function of x, it converges on some interval (a − R, a + R), where R is the radius of convergence. Inside that interval, you can differentiate or integrate the series term by term, just like a polynomial.

The most important power series are Taylor series, where the coefficients are determined by the derivatives of a known function:

Taylor Series — Central Formula f(x) = Σ [n=0 to ∞] f⁽ⁿ⁾(a) / n! · (x − a)ⁿ

Coefficient of (x−a)ⁿ = f⁽ⁿ⁾(a) ÷ n!

When the centre is a = 0, this becomes a Maclaurin series. The five series below appear in almost every problem, you should know them from memory:

Standard Maclaurin Series eˣ = 1 + x + x²/2! + x³/3! + … (R = ∞)
sin x = x − x³/3! + x⁵/5! − … (R = ∞)
cos x = 1 − x²/2! + x⁴/4! − … (R = ∞)
ln(1+x) = x − x²/2 + x³/3 − … (R = 1)
1/(1−x) = 1 + x + x² + x³ + … (R = 1)

Once you know these five, you can derive almost any other Maclaurin series by substitution, multiplication, differentiation, or integration, without ever computing a single derivative from scratch.

Using Taylor Series to Evaluate Limits

Taylor series give an elegant way to resolve indeterminate limits that would require many applications of L'Hôpital's rule. The strategy is to expand numerator and denominator as series near the limit point, cancel the leading terms, and read off the answer.

For example, lim_{x→0} (sin x − x) / x³: expanding sin x gives (x − x³/6 + …) − x = −x³/6 + … Dividing by x³ yields −1/6 as x → 0. Three rounds of L'Hôpital would give the same result far more tediously.

Error bounds matter. When you use a Taylor polynomial Tₙ(x) as an approximation, the Lagrange remainder theorem tells you exactly how large the error can be: |Rₙ(x)| ≤ M · |x − a|ⁿ⁺¹ / (n+1)!, where M bounds the (n+1)-th derivative. This lets you pick the right number of terms for any desired precision.
§ 05

Recommended Learning Path

If you are working through this section for the first time, follow this order. Each step builds directly on the previous one.

01
Sequences — Convergence, Divergence, and Limits

Understand what it means for a sequence to converge before worrying about infinite sums.

02
Series Convergence — Partial Sums and the Divergence Test

Learn the definition of a convergent series via partial sums, and the divergence test as a first filter.

03
Geometric Series — The Closed-Form Sum

The one series family you can sum exactly. Essential for comparison later.

04
The p-Series Test

The second benchmark series: Σ1/nᵖ. Pairs with the geometric series as your main comparison targets.

05
Comparison Tests — Direct and Limit

Now that you know what to compare against, these tests handle most rational-looking series.

06
Ratio & Root Tests

Go-to tools for series involving factorials, exponentials, or nth powers.

07
Alternating Series and Absolute Convergence

Handle sign-alternating series and understand why absolute convergence is the gold standard.

08
Power Series and Radius of Convergence

Bridge from numerical series to functions of x. Learn how to find and use the interval of convergence.

09
Taylor Series

The crown jewel. Derive series from derivatives, bound the error, use series to evaluate limits and non-elementary integrals.

10
Maclaurin Series

Master the a = 0 special case, build a reference table, and learn to derive new series without computing derivatives.

§ 06

Frequently Asked Questions

A sequence is just a list: a₁, a₂, a₃, … A series is the sum of a sequence: a₁ + a₂ + a₃ + … The key distinction is that a sequence converges if its terms approach a limit, while a series converges if the running totals (partial sums) approach a limit. You can have a sequence whose terms go to zero but whose series still diverges — the harmonic series Σ 1/n is the classic example.
Start by checking the divergence test — if lim aₙ ≠ 0, you are done. If lim aₙ = 0, look at the structure: factorial or exponential terms → ratio test; nth power terms like (f(n))ⁿ → root test; rational-looking terms → comparison with a p-series; alternating sign → alternating series test. If these all fail or are inconclusive, the integral test is a reliable fallback. See the full table in §03 above.
A Taylor series centred at a is the general expansion f(x) = Σf⁽ⁿ⁾(a)/n! · (x−a)ⁿ. A Maclaurin series is the special case a = 0, giving f(x) = Σf⁽ⁿ⁾(0)/n! · xⁿ. In practice, Maclaurin series are used when expanding near the origin (which covers most standard functions), while Taylor series centred at a ≠ 0 are used when you need the expansion around a specific point — for example, approximating ln(x) near x = 1.
The radius of convergence R tells you how far from the centre a a power series converges. For |x − a| < R the series converges; for |x − a| > R it diverges. At the endpoints |x − a| = R, you have to check separately (often via the alternating series test or p-series test). A power series with R = ∞ (like eˣ, sin x, cos x) converges everywhere. A series with R = 0 is essentially useless as a representation.
Yes — but only strictly inside the interval of convergence. Term-by-term differentiation and integration do not change the radius of convergence, but they can change the behaviour at the endpoints. Always re-check the endpoints after differentiating or integrating. This technique is extremely powerful: it is how the series for ln(1+x) is derived from 1/(1+x), and how ∫ e^(−x²) dx is expressed as a series (it has no elementary antiderivative).
A series Σaₙ converges absolutely if Σ|aₙ| also converges. It converges conditionally if it converges but Σ|aₙ| diverges. Absolute convergence is much stronger: an absolutely convergent series converges no matter what order you add the terms (Riemann's rearrangement theorem shows that a conditionally convergent series can be rearranged to give any value). The alternating series page covers this in full.
§ 07

How This Section Connects to the Rest of Calculus

Series and sequences do not exist in isolation, they are tightly woven through the rest of the curriculum.

Limits are foundational: the definition of sequence convergence and partial-sum convergence both rely on the epsilon-delta limit concept. L'Hôpital's rule and Taylor series complement each other for evaluating indeterminate limits: knowing when to use each is a key exam skill.

Differentiation feeds directly into Taylor series via repeated derivatives. Higher-order derivatives are the machinery that produces Taylor coefficients. Logarithmic and implicit differentiation come up when deriving less obvious series.

Integration connects through the fundamental theorem: the integral test for convergence, and the technique of integrating a power series term by term to evaluate integrals like ∫ sin(x²) dx or ∫ e^(−x²) dx that cannot be expressed in elementary closed form. See improper integrals for the integral test background.

Differential equations use power series as a method of solution: when other techniques fail, you assume a power series solution Σcₙxⁿ and solve for the coefficients. This is how Bessel functions and Legendre polynomials are defined.

Exam tip. At most universities, series and sequences accounts for 20–30% of a second-semester calculus exam. The questions split roughly equally between convergence testing, power series radius/interval problems, and Taylor/Maclaurin expansion. Make sure you can execute all three fluently before sitting the exam.

Cookie Settings