Representing Functions as Power Series
students, imagine being able to write a complicated function like a simple infinite polynomial. That is the power of a power series ✨. In this lesson, you will learn how many functions can be represented as sums of powers of $x$, how this connects to Taylor and Maclaurin series, and how AP Calculus BC uses these ideas to approximate functions, find intervals of convergence, and estimate error.
What is a Power Series?
A power series is an infinite series written in the form
$$\sum_{n=0}^{\infty} a_n(x-c)^n$$
where $a_n$ is the coefficient of the $n$th term, $c$ is the center of the series, and $x$ is the variable. The expression $(x-c)^n$ means the series is built from powers of the distance from $c$.
A power series is like an infinite version of a polynomial. A polynomial has a finite number of terms, such as $1+x+x^2$. A power series can have infinitely many terms, such as
$$1+x+x^2+x^3+x^4+\cdots$$
The key idea is that some functions can be written exactly as power series in certain intervals. Others can be approximated very closely using only a few terms. This is why power series are so useful in physics, engineering, and computer calculations 💡.
For AP Calculus BC, the most important questions are:
- Does the series converge or diverge?
- For which $x$ does it converge?
- What function does it represent?
- How accurate is a partial sum?
From Geometric Series to Function Representations
The simplest and most important power series is the geometric series:
$$\sum_{n=0}^{\infty} ar^n = a+ar+ar^2+ar^3+\cdots$$
This series converges when $|r|<1$, and its sum is
$$\frac{a}{1-r}$$
A big AP Calculus BC skill is rewriting a function so it matches this pattern. Once that happens, you can represent the function as a power series.
For example,
$$\frac{1}{1-x}=\sum_{n=0}^{\infty}x^n$$
for $|x|<1$. This is one of the most useful identities in the course. It gives an exact power series for a function that looks rational and not polynomial-like at all.
Now suppose you want a series for
$$\frac{1}{1-3x}$$
You can rewrite it as
$$\frac{1}{1-3x}=\sum_{n=0}^{\infty}(3x)^n=\sum_{n=0}^{\infty}3^n x^n$$
This converges when $|3x|<1$, or equivalently when
$$|x|<\frac{1}{3}$$
This shows a major AP pattern: transform a known series into a new one by substitution or algebraic manipulation.
Creating Power Series from Known Series
Once you know a basic series, you can build many others from it. This is one of the main goals of representing functions as power series.
1. Substitution
If
$$\frac{1}{1-x}=\sum_{n=0}^{\infty}x^n$$
then replacing $x$ with $x^2$ gives
$$\frac{1}{1-x^2}=\sum_{n=0}^{\infty}x^{2n}$$
for $|x|<1$.
If you replace $x$ with $-x$, you get
$$\frac{1}{1+x}=\sum_{n=0}^{\infty}(-1)^n x^n$$
for $|x|<1$.
2. Multiplying by a function
If you multiply both sides of a known series by a constant or by a power of $x$, you still get a valid power series. For example,
$$\frac{x}{1-x}=x\sum_{n=0}^{\infty}x^n=\sum_{n=0}^{\infty}x^{n+1}$$
This can also be written as
$$x+x^2+x^3+\cdots$$
3. Differentiation and integration
Many power series can be differentiated or integrated term by term inside their interval of convergence. This helps create new series.
Starting with
$$\frac{1}{1-x}=\sum_{n=0}^{\infty}x^n$$
Differentiate both sides:
$$\frac{1}{(1-x)^2}=\sum_{n=1}^{\infty}n x^{n-1}$$
Integrate both sides:
$$-\ln(1-x)=\sum_{n=0}^{\infty}\frac{x^{n+1}}{n+1}$$
for $|x|<1$.
These techniques are powerful because they let you represent functions like logarithms, rational functions, and trigonometric-related expressions as series.
Taylor and Maclaurin Series Connection
A Taylor series is a power series centered at $c$ that represents a function using its derivatives:
$$f(x)=\sum_{n=0}^{\infty}\frac{f^{(n)}(c)}{n!}(x-c)^n$$
If the center is $0$, it is called a Maclaurin series:
$$f(x)=\sum_{n=0}^{\infty}\frac{f^{(n)}(0)}{n!}x^n$$
This formula tells you where the coefficients come from. The coefficients are based on derivatives of the function at the center.
For example, the Maclaurin series for $e^x$ is
$$e^x=\sum_{n=0}^{\infty}\frac{x^n}{n!}$$
The Maclaurin series for $\sin x$ is
$$\sin x=\sum_{n=0}^{\infty}(-1)^n\frac{x^{2n+1}}{(2n+1)!}$$
The Maclaurin series for $\cos x$ is
$$\cos x=\sum_{n=0}^{\infty}(-1)^n\frac{x^{2n}}{(2n)!}$$
These are essential examples because they show that many familiar functions can be written as infinite sums.
Interval of Convergence and Why It Matters
A power series does not always work for every $x$. There is usually an interval where it converges and represents a function, and outside that interval it diverges.
For a general power series
$$\sum_{n=0}^{\infty}a_n(x-c)^n$$
there is often a radius of convergence $R$ such that the series converges when
$$|x-c|<R$$
and diverges when
$$|x-c|>R$$
The endpoints $x=c-R$ and $x=c+R$ must be checked separately.
For example, the series
$$\sum_{n=0}^{\infty}x^n$$
converges for $|x|<1$, but at $x=1$ it becomes
$$1+1+1+\cdots$$
which diverges, and at $x=-1$ it becomes
$$1-1+1-1+\cdots$$
which does not converge to a single value.
This is why AP problems often ask you to find the interval of convergence using the Ratio Test, Root Test, or endpoint testing.
Example: Representing a Function as a Series
Suppose you want a power series for
$$\frac{x}{1-x^2}$$
Start with the geometric series:
$$\frac{1}{1-u}=\sum_{n=0}^{\infty}u^n$$
Let $u=x^2$. Then
$$\frac{1}{1-x^2}=\sum_{n=0}^{\infty}x^{2n}$$
Multiply both sides by $x$:
$$\frac{x}{1-x^2}=\sum_{n=0}^{\infty}x^{2n+1}$$
So the function is represented by the odd-power series
$$x+x^3+x^5+x^7+\cdots$$
This series converges when
$$|x^2|<1$$
which simplifies to
$$|x|<1$$
This kind of problem shows how one known series can generate many others with algebraic changes.
Why This Topic Is Important in AP Calculus BC
Representing functions as power series connects many major ideas in Infinite Sequences and Series. It uses convergence, manipulation of series, and function approximation all at once. It also builds a bridge between algebraic expressions and calculus tools like derivatives and integrals.
In real life, power series let scientists and engineers approximate difficult functions with a finite number of terms. For example, a calculator may use a Taylor polynomial to estimate $\sin x$ or $e^x$ quickly. More terms usually give better accuracy, especially when $x$ is near the center of the series 📱.
AP Calculus BC expects you to recognize standard series, rewrite functions in series form, determine intervals of convergence, and connect partial sums to approximations. If a function can be written as a power series, then it can often be studied using the rules of sequences and series you have already learned.
Conclusion
students, representing functions as power series is a major AP Calculus BC skill because it turns complicated functions into infinite sums that can be analyzed, differentiated, integrated, and used for approximation. The most important starting point is the geometric series, since many other power series come from it through substitution, algebra, differentiation, and integration. Once you know how to find the interval of convergence and recognize Taylor and Maclaurin series, you can connect this topic to nearly every part of Infinite Sequences and Series. Power series are not just long expressions; they are a powerful language for describing functions.
Study Notes
- A power series has the form $\sum_{n=0}^{\infty}a_n(x-c)^n$.
- The geometric series $\sum_{n=0}^{\infty}ar^n$ converges when $|r|<1$ and sums to $\frac{a}{1-r}$.
- A function can often be represented as a power series by rewriting it to match a known series.
- Substitution, multiplication, differentiation, and integration are common tools for creating new series.
- A Taylor series is $\sum_{n=0}^{\infty}\frac{f^{(n)}(c)}{n!}(x-c)^n$.
- A Maclaurin series is a Taylor series centered at $0$.
- A power series converges only on its interval of convergence; endpoints must be checked separately.
- The Ratio Test is often used to find the radius of convergence $R$.
- Power series help approximate functions with partial sums.
- Common Maclaurin series include $e^x$, $\sin x$, $\cos x$, and $\frac{1}{1-x}$.
- This topic connects convergence tests, function approximation, and calculus operations on series.
