A power series is an infinite series of the form $\sum_{n=0}^\infty c_n (x-a)^n$, where $c_n$ are coefficients and $a$ is the center. Power series can represent functions like $e^x$, $\sin x$, and $\frac{1}{1-x}$ within their interval of convergence. The set of $x$ values for which the series converges is an interval centered at $a$.

🎯 In this section you will learn

📌 Definition

$$ \sum_{n=0}^\infty c_n (x-a)^n = c_0 + c_1(x-a) + c_2(x-a)^2 + \cdots $$
Power series centered at $x=a$
💡 Key Facts

📌 Finding the Radius of Convergence

Use the Ratio Test or Root Test:

$$ R = \frac{1}{\lim_{n \to \infty} |c_{n+1}/c_n|^{1/n}} \quad \text{or} \quad \frac{1}{\lim_{n \to \infty} |c_n|^{1/n}} $$
Example 1Finding Radius and Interval

Find the radius and interval of convergence for $\sum_{n=0}^\infty \frac{x^n}{n!}$.

Apply Ratio Test
$\lim_{n \to \infty} \left| \frac{x^{n+1}/(n+1)!}{x^n/n!} \right| = \lim_{n \to \infty} \frac{|x|}{n+1} = 0$
Conclusion
The limit is $0$ for all $x$, so $R = \infty$. The series converges for all real $x$.
Example 2Finite Radius of Convergence

Find the radius and interval of convergence for $\sum_{n=1}^\infty \frac{(x-2)^n}{n}$.

Apply Ratio Test
$\lim_{n \to \infty} \left| \frac{(x-2)^{n+1}/(n+1)}{(x-2)^n/n} \right| = \lim_{n \to \infty} |x-2| \cdot \frac{n}{n+1} = |x-2|$
Convergence condition
$|x-2| < 1$ → $1 < x < 3$. Radius $R = 1$.
Check endpoints
At $x=3$: $\sum 1/n$ (harmonic) diverges. At $x=1$: $\sum (-1)^n/n$ (alternating harmonic) converges.
Interval of convergence
$[1, 3)$
Example 3Series with Factorial in Denominator

Find the radius of convergence for $\sum_{n=0}^\infty n! x^n$.

Example 4Geometric Power Series

Find the interval of convergence for $\sum_{n=0}^\infty x^n$.

⚠️ Common Mistakes
🔍 Key Takeaways
← Back to Module Page