$\displaystyle\sum_{n=0}^{\infty} c_n(x-a)^n$power series centered at a
A series (Chapter 09) whose terms depend on a variable x, each term a constant cn times a power of (x−a). Unlike Chapter 09's series of fixed numbers, a power series can converge for some values of x and diverge for others — it defines a function of x wherever it converges.
$c_n$c sub n — coefficient
The constant multiplying (x−a)n in a power series. Distinct from a sequence term an (Chapter 09) — here cn does not depend on x at all, only on the index n.
$R$R — radius of convergence
A number (possibly 0 or ∞) such that the power series converges whenever ∣x−a∣<R and diverges whenever ∣x−a∣>R. The behavior exactly at ∣x−a∣=R must be checked separately in each case.
$\displaystyle\lim_{n\to\infty}\left\lvert\frac{a_{n+1}}{a_n}\right\rvert$ratio test quantity
The limit of the absolute value of consecutive-term ratios in a series ∑an. Section 02 introduces this as a tool needed to find R; Chapter 12 revisits it as one of a full toolkit of convergence tests.
$f^{(n)}(a)$f sup n of a — nth derivative at a
The n-th derivative of f (Chapter 02, Section 08), evaluated at the specific point x=a — a single number, not a function. The building block of the Taylor series in Section 03.
$n!$n factorial
The product n×(n−1)×(n−2)×⋯×2×1, with 0!=1 by convention. Appears in the denominator of each Taylor series term.
01 · Power Series
A power series looks like a polynomial with infinitely many terms. Where it converges, it defines a genuine function — one built entirely out of powers of (x−a).
Definition — Power Series
A power series centered at a is n=0∑∞cn(x−a)n=c0+c1(x−a)+c2(x−a)2+⋯
For each fixed value of x, this is an ordinary series of numbers (Chapter 09) — it may converge or diverge depending on which x is plugged in.
Example — A power series that is secretly a geometric series
n=0∑∞xn is a power series centered at a=0 with every cn=1. For a fixed x, this is exactly Chapter 09's geometric series with first term 1 and common ratio r=x. By Chapter 09, Section 03, it converges precisely when ∣x∣<1, to the value 1−x1.
This single power series therefore represents the function f(x)=1−x1, but only on the interval −1<x<1 — outside that interval the series diverges even though f(x)=1−x1 itself is defined for every x=1.
02 · Radius of Convergence and the Ratio Test
Section 01's example showed a power series can converge on an interval centered at a and diverge outside it. Finding exactly how wide that interval is requires a new tool: comparing the size of consecutive terms.
Definition — The Ratio Test
For a series ∑an with nonzero terms, let ρ=n→∞limanan+1.
If ρ<1, the series converges absolutely (Chapter 12 defines this term precisely; for now, read it as "converges").
If ρ>1 (including ρ=∞), the series diverges.
If ρ=1, the test is inconclusive.
Why the ratio test works — geometric intuition
If consecutive terms shrink by a roughly constant factor ρ<1 once n is large, the tail of the series behaves like a geometric series with ratio ρ (Chapter 09, Section 03) — and geometric series with ∣r∣<1 converge. If ρ>1, consecutive terms are eventually growing, so the terms cannot shrink to 0, and the test for divergence (Chapter 09, Section 04) applies. A full proof is outside this chapter's scope, but the geometric-series comparison is the reason the test works.
Step-by-step — Find the radius of convergence of $\displaystyle\sum_{n=0}^{\infty} \frac{(x-2)^n}{n+1}$
1
Set up the ratio test on the terms an=n+1(x−2)n: form anan+1=n+2(x−2)n+1⋅(x−2)nn+1.
2
Cancel the common power of (x−2):(x−2)n(x−2)n+1=(x−2), leaving (x−2)⋅n+2n+1=∣x−2∣⋅n+2n+1.
3
Take the limit as n→∞:n+2n+1→1 (divide numerator and denominator by n, Chapter 09 Exercise 9.1 style), so ρ=∣x−2∣⋅1=∣x−2∣.
4
Apply the ratio test's convergence condition ρ<1:∣x−2∣<1 — the series converges when x is within distance 1 of the center a=2.
5
Read off the radius:R=1. (Checking the two boundary points x=1 and x=3 separately, using Chapter 09's tools, would complete the exact interval of convergence — the ratio test alone only settles the interior.)
❌ Concluding convergence when the ratio test gives exactly 1
For n=1∑∞n1(x−0)n evaluated at the boundary point x=1: the ratio test on the series ∑n1 itself gives ρ=limn→∞1/n1/(n+1)=limn→∞n+1n=1.
Why it breaks:ρ=1 is explicitly the inconclusive case in the ratio test's definition — the test simply does not decide convergence or divergence here, in either direction.
Consequence: a separate check is required: at x=1, the series is exactly ∑n1, the harmonic series, which Chapter 09, Section 05 proved diverges. The ratio test's silence at ρ=1 is not evidence of convergence — every boundary point of an interval of convergence must be checked by an independent method, never assumed.
03 · Taylor Series
Section 01 showed some functions happen to equal a power series. The Taylor series is a general recipe for building a power series out of any function's derivatives — designed so that the series matches the function's value and every derivative's value at a single point a.
When a=0, this is called a Maclaurin series: n=0∑∞n!f(n)(0)xn.
Why divide by n! — matching derivatives at a, term by term
Each coefficient is built so that differentiating the series n times and evaluating at x=a reproduces f(n)(a) exactly: differentiating (x−a)n a total of n times gives the constant n! (each of the n derivatives brings down one factor: n,n−1,n−2,…,1, multiplying to n!), and all lower-power terms vanish after n differentiations while all higher-power terms still contain a factor of (x−a) and vanish at x=a. Dividing by n! exactly cancels that leftover factor, leaving f(n)(a) — the series is constructed to agree with f and all its derivatives at the single point a.
Step-by-step — Build the Maclaurin series for $f(x)=e^x$
1
Recall the derivative of ex (Chapter 02, Section 10):dxd[ex]=ex — every derivative of ex is ex itself, so f(n)(x)=ex for every n.
2
Evaluate every derivative at a=0:f(n)(0)=e0=1 for every n=0,1,2,….
3
Substitute into the Taylor series formula with a=0:n=0∑∞n!f(n)(0)xn=n=0∑∞n!1xn — every f(n)(0)=1 from step 2.
4
Write out the first few terms:1+x+2!x2+3!x3+4!x4+⋯=1+x+2x2+6x3+24x4+⋯.
5
Numerically check at x=1: the partial sum through the x4 term gives 1+1+0.5+0.16+0.0416≈2.7083, already close to e1≈2.71828 — each additional term tightens the approximation.
04 · Exercises
EXERCISE 10.1
Set up the ratio test on the general term, simplify the ratio of consecutive terms, then take the limit as n→∞.
n=0∑∞2n(x+1)n: an=2n(x+1)n. anan+1=2n+1(x+1)n+1⋅(x+1)n2n=2∣x+1∣ (independent of n, so the limit is itself). Convergence requires 2∣x+1∣<1⟹∣x+1∣<2. Radius of convergence: R=2.
Find the radius of convergence of n=0∑∞2n(x+1)n using the ratio test.
EXERCISE 10.2
Use dxd[sinx]=cosx and dxd[cosx]=−sinx (Chapter 02, Section 09) to compute successive derivatives, then evaluate each at x=0.
f(x)=sinx: f′(x)=cosx, f′′(x)=−sinx, f′′′(x)=−cosx, f(4)(x)=sinx (the pattern repeats every 4 derivatives). At x=0: f(0)=0, f′(0)=1, f′′(0)=0, f′′′(0)=−1, f(4)(0)=0. Maclaurin series: 0+1⋅x+2!0x2+3!−1x3+4!0x4+⋯=x−6x3+120x5−⋯ (only odd powers survive, alternating sign).
Build the Maclaurin series for f(x)=sinx through the x5 term, using the derivatives established in Chapter 02.
EXERCISE 10.3
Compute successive derivatives of ln(1+x) directly (using Chapter 02's derivative of lnx combined with the chain rule from Chapter 03), then evaluate at x=0.
Build the Maclaurin series for f(x)=ln(1+x) through the x3 term.
EXERCISE 10.4
The boundary points of an interval of convergence are never decided by the ratio test itself — check them as ordinary numerical series using Chapter 09's tools.
From Exercise 10.1, the series converges for ∣x+1∣<2, i.e. −3<x<1, with boundary points x=−3 and x=1 requiring separate checks (not answered by the ratio test, since ρ=1 exactly there) — for instance at x=1: terms become 2n2n=1 for every n, which does not shrink to 0, so by the test for divergence (Chapter 09) the series diverges at that endpoint.
Explain why the ratio test alone cannot determine whether the series from Exercise 10.1 converges at its two boundary points x=−3 and x=1, and check convergence at x=1 directly.
EXERCISE 10.5
Substitute −x for x directly into the known Maclaurin series for ex from Section 03 — no new derivative computation is required.
From Section 03, ex=∑n=0∞n!xn. Substituting x→−x: e−x=∑n=0∞n!(−x)n=∑n=0∞n!(−1)nxn=1−x+2x2−6x3+⋯.
Using the Maclaurin series for ex from Section 03, find the Maclaurin series for e−x by substitution (no new derivatives needed).
05 · Chapter Summary
Concept
Formula / Rule
Power series
∑cn(x−a)n; converges for some x, diverges for others