Study Guide

Representing functions as power series

AP Calculus BCΒ· AP Calculus BC CED β€” Infinite Sequences and SeriesΒ· 14 min read

1. Geometric Power Series Representationsβ˜…β˜…β˜†β˜†β˜†β± 4 min

🚫 No Calculator

The foundation for all power series representations is the infinite geometric series formula you already know. For , the sum of the infinite series is . If we let , we can write any rational function rearranged to the form directly as a power series, convergent when .

πŸ“˜ Definition

Geometric Power Series Representation

A power series constructed from the infinite geometric series formula, used for functions that can be written in the form centered at , where is linear in .

Example:

centered at 0

πŸ“ Worked Example

Find the power series representation of centered at , and state its interval of convergence.

  1. 1

    Rewrite the denominator to match the form by factoring out the constant from the denominator:

    frac43left(1βˆ’fracx3right)=frac43cdotfrac11βˆ’fracx3frac{4}{3left(1 - frac{x}{3}right)} = frac{4}{3} cdot frac{1}{1 - frac{x}{3}}
  2. 2

    Here . Apply the geometric series formula, which converges when :

    frac11βˆ’fracx3=sumn=0inftyleft(fracx3right)nfrac{1}{1 - frac{x}{3}} = sum_{n=0}^infty left(frac{x}{3}right)^n
  3. 3

    Pull the constant factor out and simplify the general term:

    f(x)=frac43sumn=0inftyfracxn3n=sumn=0inftyfrac43n+1xnf(x) = frac{4}{3} sum_{n=0}^infty frac{x^n}{3^n} = sum_{n=0}^infty frac{4}{3^{n+1}} x^n
  4. 4

    Check convergence at endpoints: at , the series becomes , which diverges by the nth term test. At , the series becomes , which also diverges. The final interval of convergence is:

    (βˆ’3,3)(-3, 3)

Exam tip:

Always start by rewriting the denominator to get 1 as the constant term, matching the form. If you factor incorrectly, you will get wrong coefficients for every term of the series.

2. Term-by-Term Differentiation of Power Seriesβ˜…β˜…β˜…β˜†β˜†β± 4 min

🚫 No Calculator

Within the interval of convergence (excluding possibly endpoints), power series can be differentiated term-by-term just like finite polynomials. This property lets us build new power series from known existing representations. If has radius of convergence , the derivative has the same radius of convergence, but you must recheck convergence at endpoints.

fβ€²(x)=sumn=1inftyncn(xβˆ’a)nβˆ’1f'(x) = sum_{n=1}^infty n c_n (x-a)^{n-1}
πŸ“ Worked Example

Find the power series representation of centered at , using differentiation.

  1. 1

    Start with the known geometric series for :

    frac11βˆ’x2=sumn=0infty(x2)n=sumn=0inftyx2n,quad∣x∣<1frac{1}{1 - x^2} = sum_{n=0}^infty (x^2)^n = sum_{n=0}^infty x^{2n}, quad |x| < 1
  2. 2

    Notice that the derivative of is exactly our target function. Differentiate term-by-term:

    fracddxleft(frac11βˆ’x2right)=sumn=0inftyfracddxleft(x2nright)=sumn=1infty2nx2nβˆ’1frac{d}{dx}left(frac{1}{1-x^2}right) = sum_{n=0}^infty frac{d}{dx}left(x^{2n}right) = sum_{n=1}^infty 2n x^{2n - 1}
  3. 3

    The radius of convergence remains , same as the original. Check endpoints: at both and , the nth term does not approach zero, so the series diverges at both endpoints. Final result:

    f(x)=sumn=1infty2nx2nβˆ’1,quad(βˆ’1,1)f(x) = sum_{n=1}^infty 2n x^{2n-1}, quad (-1, 1)

Exam tip:

When you differentiate a power series, the constant term disappears, so the starting index always shifts from to . Forgetting to adjust the starting index is a common multiple-choice trap answer.

3. Term-by-Term Integration of Power Seriesβ˜…β˜…β˜…β˜†β˜†β± 4 min

🚫 No Calculator

Like differentiation, power series can be integrated term-by-term within their interval of convergence. This is an extremely useful technique that lets us find power series for transcendental functions that are integrals of rational functions, such as and .

intf(x)dx=C+sumn=0inftyfraccnn+1(xβˆ’a)n+1int f(x) dx = C + sum_{n=0}^infty frac{c_n}{n+1} (x-a)^{n+1}

The radius of convergence stays the same as the original series, but you must recheck convergence at endpoints. The constant of integration is found by substituting (the center of the series) into the function.

πŸ“ Worked Example

Find the Maclaurin power series for , and state its interval of convergence.

  1. 1

    First, note that , which can be written as a geometric series:

    frac31+3x=3cdotfrac11βˆ’(βˆ’3x)=sumn=0infty(βˆ’1)n3n+1xnfrac{3}{1 + 3x} = 3 cdot frac{1}{1 - (-3x)} = sum_{n=0}^infty (-1)^n 3^{n+1} x^n
  2. 2

    This converges when , so . Integrate term-by-term:

    ln(1+3x)=intfrac31+3xdx=C+sumn=0infty(βˆ’1)n3n+1cdotfracxn+1n+1ln(1+3x) = int frac{3}{1+3x} dx = C + sum_{n=0}^infty (-1)^n 3^{n+1} cdot frac{x^{n+1}}{n+1}
  3. 3

    Find by substituting : , so . Reindex to simplify:

    ln(1+3x)=sumn=1inftyfrac(βˆ’1)n+13nxnnln(1+3x) = sum_{n=1}^infty frac{(-1)^{n+1} 3^n x^n}{n}
  4. 4

    Check endpoints: At , the alternating harmonic series converges. At , the series becomes the negative harmonic series, which diverges. Final interval:

    left(βˆ’frac13,frac13right]left(-frac{1}{3}, frac{1}{3}right]

Exam tip:

Don't forget to solve for the constant of integration when integrating a power series. For Maclaurin series centered at 0, , which is almost always 0 for common functions like or .

4. AP-Style Concept Checkβ˜…β˜…β˜…β˜…β˜†β± 2 min

🚫 No Calculator

βœ“ Quick check

Answer this AP-style multiple-choice question to test your understanding:

  1. Which of the following is the coefficient of in the Maclaurin series for ?

    • -64

    • -16

    • 16

    • 64

    Reveal answer
    -64 β€”

    Rewrite as , multiply by to get . Set , so , giving .

5. Common Pitfalls

Wrong move:

Forgetting to check convergence at endpoints after differentiating or integrating a power series

Why:

Students know the radius of convergence stays the same, so they incorrectly assume the entire interval stays the same, but convergence behavior can change at endpoints.

Correct move:

After finding the radius of convergence, always test both endpoints with a convergence test, and add them to the interval if they converge.

Wrong move:

Writing the power series for as instead of

Why:

Students misidentify in the geometric series formula, forgetting the denominator is , so means .

Correct move:

Always explicitly rewrite the denominator as before writing the series, so .

Wrong move:

Reindexing incorrectly after differentiation or integration, leading to division by zero at (e.g. writing )

Why:

Students rush the substitution when shifting the starting index of the series.

Correct move:

After reindexing, write out the first 2-3 terms of both the original and new series to confirm they match.

Wrong move:

Pulling constants out of the series incorrectly when factoring the denominator (e.g. rewriting as instead of )

Why:

Students forget that factoring a constant from the denominator moves its reciprocal to the outside of the fraction.

Correct move:

Always factor step-by-step: .

Wrong move:

Differentiating or integrating the coefficients along with the term

Why:

Students confuse the variable of differentiation with the index , so they unnecessarily modify the coefficients.

Correct move:

Remember coefficients are constants with respect to , so they stay unchanged when differentiating or integrating.

6. Quick Reference Cheatsheet

Category

Formula

Notes

Geometric power series

Converges only when ; can be any function of

Term-by-term differentiation

If , then

Same radius of convergence as original; always check endpoints

Term-by-term integration

If , then

Same radius of convergence as original; for center

(Maclaurin)

Interval of convergence

(Maclaurin)

Derivative of , interval

(Maclaurin)

Integral of , interval

(Maclaurin)

Integral of , interval

When this came up on past exams

AI-estimated based on syllabus patterns β€” cross-check with official past papers for accuracy. Use only as revision-focus signals.

  • 2023 Β· MCQ

    Find coefficient of x^5 in series

  • 2022 Β· FRQ

    Arctan series via integration

Going deeper

What's Next

This topic gives you the core foundation for all work with Taylor and Maclaurin series, the next major topic in AP Calculus BC Unit 10. Representing functions as power series via geometric series, term-by-term differentiation, and integration lets you construct series for common functions without computing every derivative from scratch, which saves significant time on the AP exam and avoids computational errors. Without mastering the techniques here, you will struggle to construct Taylor series for composite or related functions, and will find approximation problems that commonly appear in free-response questions much harder than necessary. This topic is also the basis for integrating non-elementary functions, a frequent AP exam application.