← Back to College Math

Infinite Series & Taylor Polynomials

College Math · Calculus IIPreview

1. Introduction

Can you add up infinitely many numbers and get a finite total? Sometimes yes, sometimes no — and the entire theory of infinite series is about telling the two cases apart and, when possible, computing the sum. This question underlies how calculators evaluate sin⁡\sin, exe^x, and ln⁡\ln, how engineers approximate complicated functions by polynomials, and how physicists expand models in small parameters.

The payoff is the Taylor series, which represents a function as an infinite polynomial built from its derivatives at a single point. Truncating yields Taylor polynomials — the best polynomial approximations near a point — with a remainder term quantifying the error. To get there we need sequences and series, benchmark examples (geometric and pp-series), and convergence tests: divergence test, integral test, comparison and limit comparison, alternating series test, and the ratio and root tests.

The convergence landscape has a clear hierarchy: first check whether an→0a_n \to 0 (divergence test); then try to recognize geometric or pp-series; for factorials and exponentials use the ratio test; for nnth powers use the root test; for positive terms "close to" a benchmark use limit comparison; for alternating signs use the alternating series test. Power series add the step of finding the radius of convergence and testing endpoints separately — the ratio test gives ∣x−a∣<R|x-a| < R but is silent at ∣x−a∣=R|x-a| = R.

2. Core Concepts

2.1 Sequences vs. Series

A sequence {an}\{a_n\} converges if lim⁡n→∞an\lim_{n\to\infty} a_n exists. A series ∑n=1∞an\sum_{n=1}^{\infty} a_n is the sum of terms, defined as the limit of partial sums SN=∑n=1NanS_N = \sum_{n=1}^{N} a_n. The series converges to SS if lim⁡N→∞SN=S\lim_{N\to\infty} S_N = S; otherwise it diverges.

2.2 The Divergence Test

If lim⁡n→∞an≠0\lim_{n\to\infty} a_n \neq 0 (or fails to exist), then ∑an\sum a_n diverges.

Proof sketch: If ∑an\sum a_n converges to SS, then SN→SS_N \to S and SN−1→SS_{N-1} \to S, so aN=SN−SN−1→0a_N = S_N - S_{N-1} \to 0. Contrapositive: if an↛0a_n \not\to 0, the series diverges.

This is necessary, not sufficient: ∑1n\sum \frac{1}{n} has an→0a_n \to 0 but diverges.

2.3 Geometric Series

∑n=0∞arn\sum_{n=0}^{\infty} ar^n converges iff ∣r∣<1|r| < 1, with sum ∑n=0∞arn=a1−r.\sum_{n=0}^{\infty} ar^n = \frac{a}{1 - r}.

Proof sketch: SN=a1−rN+11−rS_N = a\frac{1-r^{N+1}}{1-r}. If ∣r∣<1|r| < 1, rN+1→0r^{N+1} \to 0, so SN→a1−rS_N \to \frac{a}{1-r}.

2.4 The pp-Series and the Integral Test

∑n=1∞1np\sum_{n=1}^{\infty} \frac{1}{n^p} converges iff p>1p > 1.

Integral Test: If ff is positive, continuous, and decreasing on [1,∞)[1,\infty) with f(n)=anf(n) = a_n, then ∑n=1∞an\sum_{n=1}^{\infty} a_n and ∫1∞f(x) dx\int_1^{\infty} f(x)\,dx both converge or both diverge.

Proof sketch (pp-series): ∫1∞x−p dx\int_1^{\infty} x^{-p}\,dx converges iff p>1p > 1 (gives 1p−1\frac{1}{p-1}), diverges iff p≤1p \le 1. By the integral test, so does ∑1/np\sum 1/n^p.

2.5 Comparison Tests

Direct Comparison: If 0≤an≤bn0 \le a_n \le b_n and ∑bn\sum b_n converges, then ∑an\sum a_n converges. If an≥bn≥0a_n \ge b_n \ge 0 and ∑bn\sum b_n diverges, so does ∑an\sum a_n.

Limit Comparison: If an,bn>0a_n, b_n > 0 and lim⁡n→∞anbn=L\lim_{n\to\infty}\frac{a_n}{b_n} = L with 0<L<∞0 < L < \infty, then ∑an\sum a_n and ∑bn\sum b_n share the same fate.

Proof sketch (limit comparison): For large nn, an≈Lbna_n \approx L b_n; the partial sums of ∑an\sum a_n are roughly LL times those of ∑bn\sum b_n.

2.6 Alternating Series Test

For ∑(−1)n−1bn\sum (-1)^{n-1} b_n with bn>0b_n > 0, if bnb_n is decreasing and bn→0b_n \to 0, the series converges. The error after NN terms satisfies ∣S−SN∣≤bN+1|S - S_N| \le b_{N+1}.

Proof sketch: Partial sums S2mS_{2m} are increasing and bounded above (telescoping pairing); S2m+1S_{2m+1} decreasing and bounded below; both converge to the same limit.

2.7 Absolute and Conditional Convergence

Absolutely convergent if ∑∣an∣\sum |a_n| converges (implies convergence). Conditionally convergent if ∑an\sum a_n converges but ∑∣an∣\sum |a_n| diverges (e.g. alternating harmonic series). Rearranging a conditionally convergent series can change its sum.

2.8 The Ratio Test

Let L=lim⁡n→∞∣an+1an∣L = \lim_{n\to\infty}\left|\frac{a_{n+1}}{a_n}\right|. If L<1L < 1, the series converges absolutely; if L>1L > 1, it diverges; if L=1L = 1, inconclusive.

Proof sketch (idea): If L<1L < 1, pick rr with L<r<1L < r < 1; for large nn, ∣an+1∣<r∣an∣|a_{n+1}| < r|a_n|, so terms decay like a geometric series.

2.9 The Root Test

Let L=lim⁡n→∞∣an∣nL = \lim_{n\to\infty}\sqrt[n]{|a_n|}. Same conclusions as ratio test: L<1L < 1 converges, L>1L > 1 diverges, L=1L = 1 inconclusive.

2.10 Power Series and Radius of Convergence

∑n=0∞cn(x−a)n\sum_{n=0}^{\infty} c_n (x-a)^n converges on an interval centered at aa. The radius of convergence RR is found by the ratio test: solve lim⁡∣cn+1(x−a)n+1cn(x−a)n∣<1\lim\left|\frac{c_{n+1}(x-a)^{n+1}}{c_n(x-a)^n}\right| < 1. Inside (a−R,a+R)(a-R, a+R) the sum defines an analytic function.

2.11 Taylor Series and Remainder

The Taylor series of ff about aa is f(x)=∑n=0∞f(n)(a)n!(x−a)n.f(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(a)}{n!}(x-a)^n. Taylor's Theorem (Lagrange remainder): if f(N+1)f^{(N+1)} is bounded by MM on the interval between aa and xx, then ∣RN(x)∣=∣f(x)−TN(x)∣≤M(N+1)!∣x−a∣N+1.|R_N(x)| = |f(x) - T_N(x)| \le \frac{M}{(N+1)!}|x-a|^{N+1}.

Proof sketch (remainder): Apply the MVT or integration by parts repeatedly to express RNR_N as an integral of f(N+1)f^{(N+1)}, then bound the integral.

2.12 Operations on Power Series

Inside the interval of convergence, power series can be differentiated and integrated term-by-term: ddx∑cnxn=∑ncnxn−1,∫∑cnxn dx=C+∑cnn+1xn+1.\frac{d}{dx}\sum c_n x^n = \sum n c_n x^{n-1}, \qquad \int \sum c_n x^n\,dx = C + \sum \frac{c_n}{n+1}x^{n+1}. The radius of convergence is unchanged by differentiation or integration (endpoints may change).

2.13 Taylor Series from Known Expansions

Rather than computing derivatives, derive new series by substitution: replace xx with −x2-x^2 in 11−x\frac{1}{1-x} to get 11+x2=∑(−1)nx2n\frac{1}{1+x^2} = \sum (-1)^n x^{2n}. Integrate term-by-term to recover arctan⁡x\arctan x. Differentiate ∑xn\sum x^n to get ∑nxn−1\sum n x^{n-1}.

2.14 Cauchy Condensation Test (Preview)

For positive decreasing ana_n, ∑an\sum a_n converges iff ∑2ka2k\sum 2^k a_{2^k} converges. This gives an elegant proof that ∑1nln⁡n\sum \frac{1}{n\ln n} diverges.

Continue reading with Premium

Upgrade to read the full article and unlock all Premium features.

Free

  • Unlimited practice — all difficulties
  • 3 hints / day
  • Community solutions
  • 2 timed mocks / month

Premium

  • ✓Full article + all 57+ theory guides
  • ✓Unlimited hints on practice problems
  • ✓Unlimited timed mock exams & PDF worksheets
Log in