CALCULUS 2 • SEQUENCES & SERIES

Representing Series as Power Series

Transform known functions into infinite polynomial expansions to unlock new tools for integration, differentiation, and approximation.

Historical Context & Motivation

The idea of representing a function as an infinite sum of polynomial terms has roots stretching back to the seventeenth century, when mathematicians first realized that transcendental functions such as sin x, cos x, and eˣ could be captured by series of ever-increasing powers of x. This insight was not merely an algebraic curiosity—it provided a systematic method for computing values of functions that had no closed-form expressions, for solving differential equations that resisted direct integration, and for establishing deep connections between seemingly unrelated areas of analysis. The development of power series representations lies at the heart of modern calculus and is one of the most elegant bridges between algebra and analysis.

1668
Mercator's Series for ln(1 + x)
Nicolaus Mercator published Logarithmotechnia, deriving the series ln(1 + x) = x − x²/2 + x³/3 − ⋯ by integrating the geometric series term by term—one of the earliest systematic uses of power series.
1715
Brook Taylor's General Formula
Brook Taylor published Methodus Incrementorum, presenting the general expansion f(x) = Σ f⁽ⁿ⁾(a)(x − a)ⁿ/n!, providing a universal recipe for constructing power series representations.
1742
Maclaurin's Systematic Treatment
Colin Maclaurin's Treatise of Fluxions popularized expansions centered at a = 0 and gave rigorous justifications for many known series, cementing power series as a standard tool in analysis.
1821
Cauchy's Convergence Rigor
Augustin-Louis Cauchy introduced precise definitions of convergence and the radius of convergence, transforming power series from a heuristic technique into a rigorous mathematical framework that could be applied with confidence.

The central question this lesson addresses is: given a function f(x) that we already understand—perhaps 1/(1 − x), or a rational function with a more complex denominator—how can we express it as a power series Σ cₙxⁿ, and on what interval does that representation remain valid? Rather than computing derivatives at a center point (the Taylor series approach), the technique of representing functions as power series leverages algebraic manipulation of known series—particularly the geometric series—to build new representations efficiently.

Core Principles & Definitions

Before diving into the mechanics, it is essential to establish the foundational ideas that govern how and why functions can be rewritten as infinite polynomial sums. A power series centered at c is an infinite series of the form Σ aₙ(x − c)ⁿ, where the coefficients aₙ are constants. When c = 0, we call this a Maclaurin-type power series. The key insight is that many functions we encounter in calculus can be expressed in this form, and once they are, we gain the ability to differentiate, integrate, and manipulate them term by term inside the interval of convergence.

1

The Geometric Series Foundation

The series 1/(1 − x) = Σ xⁿ for |x| < 1 serves as the mother series from which most representations in this topic are derived through substitution, differentiation, or integration.
2

Algebraic Manipulation

To represent a new function as a power series, we rewrite it in a form that matches 1/(1 − u) for some expression u, then substitute u into the geometric series. This technique avoids computing infinitely many derivatives.
3

Term-by-Term Operations

Within the interval of convergence, a power series can be differentiated and integrated term by term, producing new valid power series. This is the engine for generating representations of functions like ln(1 + x) and arctan(x).
4

Radius & Interval of Convergence

Every power series converges on some interval centered at c with radius R (possibly 0 or ∞). The original geometric series converges for |x| < 1, and substitutions transform this domain accordingly. Endpoints must always be checked separately.
KEY TAKEAWAY
Think of the geometric series 1/(1 − x) = 1 + x + x² + x³ + ⋯ as a master template—like a universal adapter in engineering. Just as an engineer modifies a standard connector to fit a new device, you modify the geometric series (by substituting, scaling, differentiating, or integrating) to produce a power series for a wide variety of functions, without ever needing to compute derivatives from scratch.

Visual Explanation

The following diagram illustrates how the partial sums of a geometric power series progressively approximate the function f(x) = 1/(1 − x) on the interval (−1, 1). As we include more terms, the polynomial approximation hugs the curve more tightly across the interval, deviating only near the boundary where |x| approaches 1. This visual intuition is central to understanding why the interval of convergence matters: outside that interval, the partial sums diverge wildly from the true function.

The pink curve shows f(x) = 1/(1 − x). The dashed and solid colored curves show partial sums S₁ through S₅. Each additional term extends the accuracy of the approximation closer to the boundaries x = −1 and x = 1, marked by the red shaded lines.

Notice that at x = 0, every partial sum passes through y = 1, which is the value of f(0) = 1/(1 − 0) = 1. As you move away from the center, the partial sums begin to deviate from the true function, but adding more terms corrects this deviation over a wider portion of the interval. At x = ±1 (the red boundaries), the series either diverges or converges conditionally, so the representation breaks down at or beyond these points. This is a hallmark of all power series: they are exact representations only within their radius of convergence.

Mathematical Framework

The entire technique of representing functions as power series pivots on a single foundational identity—the geometric series formula—and three operations that preserve the power series form: substitution, differentiation, and integration. We formalize each below.

GEOMETRIC SERIES FORMULA
1/(1 − x) = Σ (n=0 to ∞) xⁿ = 1 + x + x² + x³ + ⋯ , |x| < 1
This identity holds for |x| < 1. The sum of the series equals the closed form 1/(1 − x). When x is replaced by any expression u(x), the series becomes Σ [u(x)]ⁿ, valid for |u(x)| < 1.
SUBSTITUTION TECHNIQUE
1/(1 − u) = Σ (n=0 to ∞) uⁿ , |u| < 1
Replace x with u = −x, u = x², u = 3x, etc. For example, 1/(1 + x) = 1/(1 − (−x)) = Σ (−x)ⁿ = Σ (−1)ⁿxⁿ, valid for |x| < 1. Similarly, 1/(1 − x²) = Σ x²ⁿ, valid for |x| < 1.
TERM-BY-TERM DIFFERENTIATION
d/dx [Σ aₙ(x − c)ⁿ] = Σ n·aₙ(x − c)ⁿ⁻¹ , |x − c| < R
Differentiating the geometric series yields 1/(1 − x)² = Σ n·xⁿ⁻¹ for |x| < 1. The radius of convergence R is preserved; only endpoint behavior may change.
TERM-BY-TERM INTEGRATION
∫ [Σ aₙ(x − c)ⁿ] dx = C + Σ aₙ(x − c)ⁿ⁺¹/(n+1) , |x − c| < R
Integrating the geometric series 1/(1 − x) = Σ xⁿ gives −ln(1 − x) = C + Σ xⁿ⁺¹/(n+1). Setting x = 0 determines C = 0, yielding −ln(1 − x) = Σ xⁿ⁺¹/(n+1) for |x| < 1.
⚠️ Important Note on Convergence
When you substitute u for x, the new interval of convergence is determined by solving |u| < 1 for x. For example, if u = x/3, then |x/3| < 1 implies |x| < 3, expanding the radius of convergence from 1 to 3. Conversely, if u = 2x, then |2x| < 1 implies |x| < 1/2, shrinking the radius. Always re-derive the convergence interval after substitution.

Technique Catalogue & Classification

In practice, representing a function as a power series via the geometric series requires choosing the right manipulation strategy. The diagram below provides a decision flowchart: given a target function, determine which algebraic rewrite, substitution, differentiation, or integration leads to a known series form. After the diagram, a detailed table classifies the most commonly encountered functions and the technique used to obtain their power series.

Decision flowchart for deriving a power series representation. Begin with the target function, attempt a direct substitution into the geometric series form, and if that fails, check whether the function is related to a known series by differentiation or integration. Partial fractions can decompose complex rational functions into simpler pieces amenable to these techniques.
Common functions and their power series derivations from the geometric series
Target FunctionSubstitution / TechniquePower SeriesIoC
1/(1 + x)Replace x with −xΣ (−1)ⁿxⁿ|x| < 1
1/(1 + x²)Replace x with −x²Σ (−1)ⁿx²ⁿ|x| < 1
x/(1 − x²)Replace x with x², multiply by xΣ x²ⁿ⁺¹|x| < 1
1/(1 − x)²Differentiate 1/(1 − x)Σ (n+1)xⁿ|x| < 1
ln(1 + x)Integrate 1/(1 + x)Σ (−1)ⁿxⁿ⁺¹/(n+1)(−1, 1]
arctan(x)Integrate 1/(1 + x²)Σ (−1)ⁿx²ⁿ⁺¹/(2n+1)[−1, 1]

Worked Example

Let us find the power series representation of f(x) = x²/(1 + x³) and determine its interval of convergence. This example illustrates the substitution technique in a non-trivial setting.

Power Series for x²/(1 + x³)
1
Step 1 — Rewrite in Geometric FormWe need to express x²/(1 + x³) in the form A/(1 − u). Note that 1 + x³ = 1 − (−x³), so 1/(1 + x³) = 1/(1 − (−x³)). Therefore: x²/(1 + x³) = x² · 1/(1 − (−x³))
f(x) = x² · [1/(1 − (−x³))] with u = −x³
2
Step 2 — Apply the Geometric SeriesSubstituting u = −x³ into Σ uⁿ, we obtain: 1/(1 − (−x³)) = Σ (n=0 to ∞) (−x³)ⁿ = Σ (n=0 to ∞) (−1)ⁿ x³ⁿ This converges when |−x³| < 1, i.e., |x³| < 1, i.e., |x| < 1.
1/(1 + x³) = Σ (−1)ⁿ x³ⁿ, |x| < 1
3
Step 3 — Multiply by x²Multiplying both sides by x²: x²/(1 + x³) = x² · Σ (−1)ⁿ x³ⁿ = Σ (−1)ⁿ x³ⁿ⁺² Writing out the first few terms: x² − x⁵ + x⁸ − x¹¹ + ⋯
x²/(1 + x³) = Σ (n=0 to ∞) (−1)ⁿ x³ⁿ⁺²
4
Step 4 — State the Interval of ConvergenceThe convergence condition |u| < 1 gives |x³| < 1, hence |x| < 1. The radius of convergence is R = 1. At x = 1, the series becomes Σ (−1)ⁿ, which diverges. At x = −1, the series becomes Σ (−1)ⁿ(−1)³ⁿ⁺² = Σ (−1)ⁿ(−1)³ⁿ⁺² = Σ (−1)⁴ⁿ⁺² = Σ 1, which diverges.
Interval of convergence: (−1, 1)
💡 Verification Tip
You can always verify a power series by plugging in a specific value. At x = 0.5: f(0.5) = 0.25/(1 + 0.125) = 0.25/1.125 ≈ 0.2222. The first three terms of the series give 0.25 − 0.03125 + 0.00391 ≈ 0.2227, which is close and converging toward the exact value.

Strengths, Limitations & Comparisons

The geometric series manipulation approach is not the only way to find a power series for a function—Taylor and Maclaurin series provide an alternative method based on computing successive derivatives. Understanding when each approach is advantageous is an important skill in applied mathematics. The table below compares the two methods systematically.

Comparison of the two primary methods for obtaining power series representations
FeatureGeometric Series MethodTaylor/Maclaurin Method
Starting pointKnown closed-form series (1/(1 − x) = Σ xⁿ)Function's derivatives at center a
Computation effortAlgebraic substitution—often very quickRequires computing f⁽ⁿ⁾(a) for all n—can be tedious
ApplicabilityBest for rational functions and their derivatives/integralsApplies to any infinitely differentiable function
Convergence infoImmediate from |u| < 1 conditionRequires ratio/root test or remainder analysis
CenteringNaturally centered at x = 0; can be shifted with algebraCan be centered at any point a
LimitationCannot handle functions unrelated to 1/(1 − x) familyHigher derivatives can be extremely complex
KEY TAKEAWAY
The geometric series method is like having a Swiss Army knife in your toolkit: it handles a surprisingly large class of functions with minimal effort. The Taylor series approach, by contrast, is a universal wrench—it works on anything that is sufficiently smooth, but often requires far more computation. In practice, experienced mathematicians always check the geometric approach first and fall back to Taylor's formula only when necessary.

Connections to Advanced Theory

The techniques studied in this lesson are not merely computational tricks for Calculus 2—they form the gateway to deep results in analysis, differential equations, and applied mathematics. Understanding how to represent functions as power series lays the groundwork for analytic function theory in complex analysis, where functions of a complex variable z are characterized by the existence of convergent power series representations. The radius of convergence in the real setting generalizes to the distance to the nearest singularity in the complex plane—a beautiful geometric insight that explains why 1/(1 + x²) has radius of convergence 1 even though the function appears well-behaved on all of ℝ (the singularity at x = i lies at distance 1 from the origin in ℂ).

How Calculus 2 power series concepts generalize in advanced mathematics
Calculus 2 ConceptAdvanced GeneralizationWhere It Appears
Geometric series representationLaurent series (includes negative powers)Complex analysis, residue calculus
Radius of convergence RDistance to nearest singularity in ℂAnalytic number theory, singularity analysis
Term-by-term integrationFubini's theorem for series of functionsMeasure theory, functional analysis
Power series solutionsFrobenius method for ODEsMathematical physics, quantum mechanics

Another important connection is to generating functions in combinatorics, where the coefficients of a power series encode counting information. For instance, the geometric series Σ xⁿ can be interpreted as the generating function for the sequence 1, 1, 1, 1, …, and manipulations of this series yield generating functions for more complex combinatorial sequences. The algebraic techniques you are learning now—substitution, multiplication, differentiation, and integration of power series—are precisely the tools used to derive closed forms for generating functions in advanced discrete mathematics.

Practice Problems

PROBLEM 1CONCEPTUAL
Explain why the function f(x) = 1/(1 + x²) has a radius of convergence R = 1 for its power series centered at 0, even though f(x) is continuous and differentiable for all real numbers. What feature of the function limits R?
PROBLEM 2BASIC CALCULATION
Find the power series representation for f(x) = 1/(1 − 3x) centered at 0, and determine the interval of convergence.
PROBLEM 3INTERMEDIATE
Find the power series representation for f(x) = x/(1 + 4x²)² centered at 0. State the radius of convergence.
PROBLEM 4APPLIED
Use a power series representation to evaluate the indefinite integral ∫ arctan(x)/x dx as a power series. (This integral has no elementary antiderivative.)
PROBLEM 5CRITICAL THINKING
Let f(x) = 1/((1 − x)(1 − 2x)). Use partial fraction decomposition to express f(x) as the sum of two geometric-type power series. Write the result as a single power series Σ aₙxⁿ and find a closed-form expression for the coefficient aₙ. For what values of x does the combined series converge?

Lesson Summary

Representing functions as power series is a technique that begins with the geometric series identity 1/(1 − x) = Σ xⁿ for |x| < 1 and extends it through three core operations: algebraic substitution (replacing x with an expression u to match the form 1/(1 − u)), term-by-term differentiation (generating series for functions like 1/(1 − x)²), and term-by-term integration (producing series for ln(1 + x), arctan(x), and other transcendental functions). Each operation preserves the radius of convergence (though endpoint behavior may change), and the new interval is found by solving |u| < 1 for x.

This approach is faster and more elegant than computing Taylor series from scratch for rational functions and their relatives. It also opens the door to evaluating non-elementary integrals as convergent power series, and it connects forward to complex analysis, generating functions in combinatorics, and series solutions of differential equations. Master the geometric series and its manipulations, and you possess one of the most versatile tools in all of analysis.

Varsity Tutors • Calculus 2 • Representing Series as Power Series