Andromeda
Note

Power Series

Definition

A power series is an infinite series of the form n=0cn(xa)n\sum_{n=0}^{\infty} c_n (x-a)^n, which can be viewed as an “infinite polynomial” centered at aa. It defines a function f(x)f(x) for all xx within its interval of convergence.

  • How to read: “The infinite sum from n equals zero to infinity of the coefficient c n times the quantity x minus a raised to the nth power.”
  • Meaning: An infinite polynomial centered at aa that represents f(x)f(x) inside its radius of convergence RR.

Why It Matters

We can’t solve most real-world math exactly. Power series are the “Cheat Code” that lets us turn any “hard” function into a simple “infinite polynomial.” If your computer didn’t use this math, it couldn’t tell you the sine of an angle or the path of a particle. It is the “Numerical DNA” of modern digital computation.

Core Concepts

  • Radius of Convergence (RR): A value such that the series converges for xa<R|x-a| < R and diverges for xa>R|x-a| > R. It is typically found using the Ratio Test.
    • How to read: “The absolute value of the difference between x and a is strictly less than the radius of convergence R; or the absolute value of the difference between x and a is strictly greater than the radius of convergence R.”
    • Meaning: RR is the distance from center aa to the nearest singularity; endpoints a±Ra \pm R must be checked separately.
  • Interval of Convergence: The set of all xx for which the series converges, including potential endpoints a±Ra \pm R.
  • Term-by-Term Operations:
    • Differentiation: f(x)=ncn(xa)n1f'(x) = \sum n c_n (x-a)^{n-1}.
    • Integration: f(x)dx=cnn+1(xa)n+1+C\int f(x) dx = \sum \frac{c_n}{n+1} (x-a)^{n+1} + C.
    • How to read: “The derivative of the function f with respect to x is equal to the sum of n times the coefficient c n times the quantity x minus a raised to the power of n minus one; and the indefinite integral of the function f of x with respect to x is equal to the sum of the coefficient c n divided by the quantity n plus one, times the quantity x minus a raised to the power of n plus one, plus a constant of integration C.”
    • Meaning: Inside the interval of convergence, power series behave like polynomials — enabling series solutions of ODEs and term-by-term integration of non-elementary integrands.
  • Both differentiation and integration preserve the radius of convergence RR.

Connected Concepts