Power Series

Last Updated : 23 Jul, 2025

Power series is a type of infinite mathematical series that involves terms with a variable raised to increasing powers to infinite level. Think of it as an infinite polynomial series , which can be expressed as:

\sum_{n=0}^{\infty} c_n x^n = c_0 + c_1 x + c_2 x^2 + c_3 x^3 + \ldots

Here, x is the variable, and c0, 1, c2, . . ., cn​ are the coefficients.

General Form of Power Series

General form of power series is given as:

\sum_{n=0}^{\infty} a_n (x - c)^n

Where,

  • an: coefficient of the nth term.
  • x: variable of the series.
  • c: center of the series, where the series is expanded around.
  • n: term index, starting from 0 and going to infinity.

Each term of the series involves a power of (x − c). Power series can be used to approximate functions within a certain range of values for x.

Examples of Power Series

Some of the common examples of power series are discussed as follows:

Example 1: Power Series of Exponential Function

The exponential function ex can be expressed as a power series centered at x = 0 (a Maclaurin series):

e^x = \sum_{n=0}^{\infty} \frac{x^n}{n!} = 1 + \frac{x}{1!} + \frac{x^2}{2!} + \frac{x^3}{3!} + \cdots

In this series, the coefficients an are \frac{1}{n!}, and the center c is 0.

Example 2: Power Series of Sine Function

The sine function sin(x) can also be expressed as a power series centered at x = 0:

\sin(x) = \sum_{n=0}^{\infty} (-1)^n \frac{x^{2n+1}}{(2n+1)!} = x - \frac{x^3}{3!} + \frac{x^5}{5!} - \frac{x^7}{7!} + \cdots

Here, the coefficients an are (-1)^n \frac{1}{(2n+1)!}, and the center c is 0.

Example 3: Power Series of Cosine Function

The cosine function cos(x) is another example of a power series centered at x = 0:

\cos(x) = \sum_{n=0}^{\infty} (-1)^n \frac{x^{2n}}{(2n)!} = 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \frac{x^6}{6!} + \cdots

In this series, the coefficients an are (-1)^n \frac{1}{(2n)!}, and the center c is 0.

Convergence of Power Series

When we talk about a converging power series, we mean that as you add more terms, the series approaches a finite value. The key concepts here are the radius of convergence and the interval of convergence.

  • Radius of Convergence: The distance from the center c within which the series converges. Outside this radius, the series diverges.
  • Interval of Convergence: The actual set of x-values for which the series converges. It’s centered around c and extends to the left and right by the radius of convergence. The interval is usually expressed as:

(c−R, c+R)

To determine if a power series converges, we use tests like:

  • Ratio Test: If \lim_{n \to \infty} \left| \frac{a_{n+1}}{a_n} \right| = L, the series converges if L<1 and diverges if L>1. When L=1, the test is inconclusive.
  • Root Test: If \lim_{n \to \infty} \sqrt[n]{|a_n|} = L, the series converges if L<1 and diverges if L>1. When L=1, the test is inconclusive.

Let's consider examples for better understanding.

Example: For the series \sum_{n=0}^{\infty} \frac{x^n}{n!}

Solution:

Compute: \left| \frac{a_{n+1}}{a_n} \right| = \left| \frac{\frac{1}{(n+1)!}}{\frac{1}{n!}} \right| = \frac{1}{n+1}

Take the limit: L = \lim_{n \to \infty} \frac{1}{n+1} = 0

Since L=0, the radius of convergence R = ∞.

Example: For the series \sum_{n=0}^{\infty} x^n.

Solution:

Compute: \sqrt[n]{|a_n|} = \sqrt[n]{1} = 1

Take the limit: L = \lim_{n \to \infty} 1 = 1

Since L=1, the radius of convergence R=1.

Operations on Power Series

Power series are flexible tools in calculus. We can perform various operations on them, such as differentiation and integration, which we'll explore in detail.

Differentiation of Power Series

To differentiate a power series term-by-term:

  • Write the general form: \sum_{n=0}^{\infty} a_n (x - c)^n
  • Differentiate each term with respect to x.

The derivative is:

\frac{d}{dx} \left( \sum_{n=0}^{\infty} a_n (x - c)^n \right) = \sum_{n=1}^{\infty} n a_n (x - c)^{n-1}

Example:

Differentiate \sum_{n=0}^{\infty} \frac{x^n}{n!}

General form: \sum_{n=0}^{\infty} \frac{x^n}{n!}

Differentiate each term:

\sum_{n=0}^{\infty} \frac{x^n}{n!} \sum_{n=1}^{\infty} \frac{n x^{n-1}}{n!} = \sum_{n=1}^{\infty} \frac{x^{n-1}}{(n-1)!}

Simplify to get:

\frac{d}{dx} \left( \sum_{n=0}^{\infty} \frac{x^n}{n!} \right) = \sum_{n=0}^{\infty} \frac{x^n}{n!}

Integration of Power Series

To integrate a power series term-by-term:

  • Write the general form: \sum_{n=0}^{\infty} a_n (x - c)^n
  • Integrate each term with respect to x.

The integral is:

\int \left( \sum_{n=0}^{\infty} a_n (x - c)^n \right) dx = \sum_{n=0}^{\infty} \frac{a_n (x - c)^{n+1}}{n+1} + C

Example: Integrate \sum_{n=0}^{\infty} \frac{x^n}{n!}

Solution:

General form: \sum_{n=0}^{\infty} \frac{x^n}{n!}

Integrate each term: \sum_{n=0}^{\infty} \frac{x^n}{n!} \sum_{n=0}^{\infty} \frac{x^{n+1}}{(n+1) n!}

Simplify to get:

\int \left( \sum_{n=0}^{\infty} \frac{x^n}{n!} \right) dx = \sum_{n=0}^{\infty} \frac{x^{n+1}}{(n+1) n!} + C

Read More,

Comment