Mathwords logoReference LibraryMathwords

Power Series

Power Series

A series which represents a function as a polynomial that goes on forever and has no highest power of x.

 

Power series formulas: sum c_k·x^k and sum c_k·(x-a)^k, with example e^x = sum x^k/k! = 1+x+x²/2!+x³/3!+x⁴/4!+…

 

 

See also

Factorial, Maclaurin series, Taylor series, convergence tests, derivative of a power series, integral of a power series, power series convergence, radius of convergence

Key Formula

n=0an(xc)n=a0+a1(xc)+a2(xc)2+a3(xc)3+\sum_{n=0}^{\infty} a_n (x - c)^n = a_0 + a_1(x-c) + a_2(x-c)^2 + a_3(x-c)^3 + \cdots
Where:
  • ana_n = The coefficient of the nth term, which may follow a pattern or formula
  • xx = The variable; the series defines a function of x
  • cc = The center of the power series (when c = 0, the series is centered at the origin)
  • nn = The index of summation, running from 0 to infinity

Worked Example

Problem: Write the power series representation of f(x)=11xf(x) = \frac{1}{1-x} centered at c=0c = 0, and determine for which values of xx it converges.
Step 1: Recognize the geometric series formula. A geometric series with first term 1 and common ratio xx sums to 11x\frac{1}{1-x} when x<1|x| < 1.
11x=n=0xn\frac{1}{1-x} = \sum_{n=0}^{\infty} x^n
Step 2: Expand the first several terms to see the pattern. Here every coefficient an=1a_n = 1 and the center c=0c = 0.
11x=1+x+x2+x3+x4+\frac{1}{1-x} = 1 + x + x^2 + x^3 + x^4 + \cdots
Step 3: Apply the ratio test to find the radius of convergence. Compute the limit of the ratio of consecutive terms.
limnxn+1xn=x\lim_{n \to \infty} \left|\frac{x^{n+1}}{x^n}\right| = |x|
Step 4: The series converges when the ratio is less than 1, so x<1|x| < 1. The radius of convergence is R=1R = 1, and the interval of convergence is (1,1)(-1, 1).
x<1    R=1|x| < 1 \implies R = 1
Answer: The power series representation is 11x=n=0xn=1+x+x2+x3+\frac{1}{1-x} = \sum_{n=0}^{\infty} x^n = 1 + x + x^2 + x^3 + \cdots, valid for x<1|x| < 1.

Another Example

This example uses factorial coefficients (unlike the constant coefficients in Example 1) and shows a power series with an infinite radius of convergence, meaning it converges everywhere.

Problem: Find the power series representation of exe^x centered at c=0c = 0 and verify the first four terms by evaluating at x=1x = 1.
Step 1: The Maclaurin series (power series centered at 0) for exe^x uses the fact that every derivative of exe^x evaluated at 0 equals 1. So an=1n!a_n = \frac{1}{n!}.
ex=n=0xnn!e^x = \sum_{n=0}^{\infty} \frac{x^n}{n!}
Step 2: Write out the first four terms explicitly.
ex=1+x+x22+x36+e^x = 1 + x + \frac{x^2}{2} + \frac{x^3}{6} + \cdots
Step 3: Substitute x=1x = 1 into the first four terms to approximate e1=ee^1 = e.
1+1+12+16=832.66671 + 1 + \frac{1}{2} + \frac{1}{6} = \frac{8}{3} \approx 2.6667
Step 4: Compare with the actual value e2.7183e \approx 2.7183. The four-term approximation is already close. Adding more terms brings the sum closer to ee.
Error2.71832.6667=0.0516\text{Error} \approx 2.7183 - 2.6667 = 0.0516
Step 5: Determine convergence. The ratio test gives limnxn+1=0\lim_{n\to\infty} \frac{|x|}{n+1} = 0 for all xx, so this power series converges for every real number. The radius of convergence is R=R = \infty.
R=R = \infty
Answer: The power series is ex=n=0xnn!e^x = \sum_{n=0}^{\infty} \frac{x^n}{n!}, converging for all real xx. At x=1x=1, four terms give approximately 2.667, close to e2.718e \approx 2.718.

Frequently Asked Questions

What is the difference between a power series and a Taylor series?
A power series is any series of the form an(xc)n\sum a_n(x-c)^n with arbitrary coefficients. A Taylor series is a specific power series where the coefficients are determined by the derivatives of a known function: an=f(n)(c)n!a_n = \frac{f^{(n)}(c)}{n!}. Every Taylor series is a power series, but not every power series arises as the Taylor series of a function.
How do you find the radius of convergence of a power series?
The most common method is the ratio test. Compute L=limnan+1anL = \lim_{n\to\infty} \left|\frac{a_{n+1}}{a_n}\right|. Then the radius of convergence is R=1LR = \frac{1}{L}. If L=0L = 0, the series converges for all xx (R=R = \infty). If L=L = \infty, the series converges only at x=cx = c (R=0R = 0). You must check the endpoints separately.
When do you use a power series?
Power series are used to approximate functions that are difficult to compute exactly, to solve differential equations, and to evaluate integrals that have no closed-form antiderivative. For instance, the series for exe^x, sinx\sin x, and ln(1+x)\ln(1+x) are standard tools in calculus, physics, and engineering.

Power Series vs. Taylor Series

Power SeriesTaylor Series
DefinitionAny infinite series an(xc)n\sum a_n(x-c)^n with given coefficientsA power series whose coefficients come from derivatives of a specific function
Formulan=0an(xc)n\sum_{n=0}^{\infty} a_n(x-c)^nn=0f(n)(c)n!(xc)n\sum_{n=0}^{\infty} \frac{f^{(n)}(c)}{n!}(x-c)^n
CoefficientsCan be any sequence of numbersDetermined by an=f(n)(c)/n!a_n = f^{(n)}(c)/n!
Center at 0Power series centered at 0Called a Maclaurin series
When to useGeneral framework for representing functions as infinite polynomialsWhen you know a function and want to expand it around a specific point

Why It Matters

Power series appear throughout calculus, physics, and engineering whenever you need to express a complicated function as an infinite polynomial. In AP Calculus BC and university courses, you will use them to approximate functions like sinx\sin x and exe^x, solve differential equations that resist other methods, and compute definite integrals that have no elementary antiderivative. Understanding power series also lays the foundation for Fourier series and other advanced representations of functions.

Common Mistakes

Mistake: Forgetting to check convergence at the endpoints of the interval.
Correction: The ratio test determines the open interval xc<R|x - c| < R, but the series may or may not converge at x=cRx = c - R and x=c+Rx = c + R. You must test each endpoint individually using another convergence test (e.g., alternating series test, p-series test).
Mistake: Assuming a power series converges everywhere just because it represents a well-known function.
Correction: Many functions have power series that converge only within a finite radius. For example, 11x=xn\frac{1}{1-x} = \sum x^n diverges for x1|x| \geq 1 even though 11x\frac{1}{1-x} is defined for all x1x \neq 1. Always compute the radius of convergence.

Related Terms