AP Calculus: Alternating Series Error Bound Theorem (AP)

1. What You Need to Know

Why this matters (AP-level)

When you approximate an alternating series (or an alternating Taylor/Maclaurin series) by a partial sum, the Alternating Series Error Bound Theorem gives you a fast, reliable way to guarantee how close your approximation is—often without complicated remainder formulas.

On AP Calculus BC, this shows up when you:

  • estimate a value like ln(2)\ln(2) or arctan(1)\arctan(1) using a few terms,
  • choose how many terms you need to get within a specified accuracy,
  • justify whether an approximation is an overestimate or underestimate.
The theorem (state it cleanly)

Consider an alternating series written in the standard form

n=1(1)n1bnwithbn>0.\sum_{n=1}^{\infty} (-1)^{n-1} b_n \quad \text{with} \quad b_n > 0.

If:

  1. bn+1bnb_{n+1} \le b_n for all nn (the magnitudes decrease), and
  2. limnbn=0\lim_{n\to\infty} b_n = 0,

then the series converges (Alternating Series Test), and the error after using the nnth partial sum SnS_n satisfies:

Rn=SSnbn+1.|R_n| = |S - S_n| \le b_{n+1}.

So: the absolute error is at most the first omitted term’s magnitude.

Critical AP takeaway: If you approximate an alternating series with decreasing term magnitudes, your error is bounded by the very next term.

Extra fact you can use: “between two partial sums”

For such alternating series,

Sn+1SSnorSnSSn+1.S_{n+1} \le S \le S_n \quad \text{or} \quad S_n \le S \le S_{n+1}.

In words: the true sum lies between two consecutive partial sums.

And the error has the same sign as the next term an+1a_{n+1}:

Rn=SSn has the sign of an+1.R_n = S - S_n \text{ has the sign of } a_{n+1}.

(Where an=(1)n1bna_n = (-1)^{n-1}b_n.)


2. Step-by-Step Breakdown

A) Using the theorem to bound approximation error
  1. Put the series in alternating form

    • Identify ana_n and rewrite as an=(1)n1bna_n = (-1)^{n-1}b_n (or (1)nbn(-1)^n b_n), where bn>0b_n > 0.
  2. Check the conditions (don’t skip this on FRQs)

    • Decreasing: verify bn+1bnb_{n+1} \le b_n (often by reasoning, derivative, or monotonicity).
    • Limit: verify limnbn=0\lim_{n\to\infty} b_n = 0.
  3. Compute the partial sum you’re using

    • Sn=a1+a2++an.S_n = a_1 + a_2 + \cdots + a_n.
  4. Bound the error using the next term

    • SSnbn+1.|S - S_n| \le b_{n+1}.
  5. (Optional but common) Decide over/under estimate

    • If the next term an+1>0a_{n+1} > 0, then SSn>0S - S_n > 0 so SnS_n is an underestimate.
    • If the next term an+1<0a_{n+1} < 0, then SSn<0S - S_n < 0 so SnS_n is an overestimate.
B) Choosing the number of terms for a desired accuracy

Goal: guarantee

SSn<ε.|S - S_n| < \varepsilon.

  1. Confirm it’s an alternating series with decreasing bnb_n and bn0b_n \to 0.
  2. Use the theorem requirement:

bn+1<ε.b_{n+1} < \varepsilon.

  1. Solve that inequality for nn and choose the smallest integer that works.
Micro worked walkthrough (generic)

Suppose you have

n=1(1)n11n2.\sum_{n=1}^{\infty} (-1)^{n-1}\frac{1}{n^2}.

  • Here bn=1n2b_n = \frac{1}{n^2}, decreasing and 0\to 0.
  • If you use S4S_4, then

SS4b5=125=0.04.|S - S_4| \le b_5 = \frac{1}{25} = 0.04.

If you want error <0.001< 0.001:

bn+1=1(n+1)21000n+1>1000.b_{n+1} = \frac{1}{(n+1)^2} 1000 \Rightarrow n+1 > \sqrt{1000}.
So n+132n+1 \ge 32 (since 100031.62\sqrt{1000} \approx 31.62), hence n31n \ge 31.


3. Key Formulas, Rules & Facts

Core rules (high-yield)
ItemFormula / StatementWhen to useNotes
Alternating Series Form(1)n1bn\sum (-1)^{n-1} b_n with bn>0b_n>0To apply AST / error boundSometimes written (1)nbn(-1)^n b_n; be consistent with signs
Alternating Series Test (AST)If bn+1bnb_{n+1} \le b_n and limbn=0\lim b_n=0, then the series convergesFirst step before using the error boundYou need both conditions
Alternating Series Error BoundSSnbn+1|S - S_n| \le b_{n+1}To bound truncation errorUses the first omitted term
Terms needed for accuracyEnsure bn+1<εb_{n+1} < \varepsilonTo choose nn for desired errorPick the smallest integer nn that works
Bracketing propertyS[min(Sn,Sn+1),max(Sn,Sn+1)]S \in [\min(S_n,S_{n+1}),\max(S_n,S_{n+1})]To trap SS between two partial sumsGreat for inequality questions
Over/Under estimate via next termSign of SSnS-S_n matches sign of an+1a_{n+1}When asked if approximation is high/lowEquivalent: the sum lies in the direction of the next term
What counts as bnb_n?

If

an=(1)n1bn,a_n = (-1)^{n-1}b_n,
then

bn=an.b_n = |a_n|.

You are bounding with the magnitude of the next term:

SSnan+1=bn+1.|S-S_n| \le |a_{n+1}| = b_{n+1}.

“Decreasing” nuance (edge case)

You often only need bnb_n to be decreasing eventually (after some index). On AP, you typically:

  • show it decreases for all n1n \ge 1, or
  • state it decreases for nNn \ge N and you’re taking partial sums beyond that.

If the series alternates but bnb_n is not decreasing, you cannot use this theorem until you justify monotonic decrease (at least eventually).


4. Examples & Applications

Example 1: Approximate ln(2)\ln(2) with an error guarantee

A classic AP series:

ln(2)=n=1(1)n11n=112+1314+\ln(2) = \sum_{n=1}^{\infty} (-1)^{n-1}\frac{1}{n} = 1 - \frac{1}{2} + \frac{1}{3} - \frac{1}{4} + \cdots

Use S4S_4:

S4=112+1314.S_4 = 1 - \frac{1}{2} + \frac{1}{3} - \frac{1}{4}.

Here bn=1nb_n = \frac{1}{n} is decreasing and 0\to 0.

Error bound:

ln(2)S4b5=15=0.2.|\ln(2) - S_4| \le b_5 = \frac{1}{5} = 0.2.

Over/under?

  • Next term a5=+15a_5 = +\frac{1}{5} is positive, so ln(2)S4>0\ln(2) - S_4 > 0.
  • Therefore S4S_4 is an underestimate.
Example 2: How many terms for ln(2)Sn<0.01|\ln(2) - S_n| < 0.01?

Need

bn+1=1n+1100.b_{n+1} = \frac{1}{n+1} 100.

So you can take n=100n = 100 terms to guarantee error under 0.010.01.

Notice how simple: you didn’t compute the sum, just controlled the error.

Example 3: Alternating Taylor series (common FRQ style)

Maclaurin series:

sin(x)=n=0(1)nx2n+1(2n+1)!.\sin(x) = \sum_{n=0}^{\infty} (-1)^n\frac{x^{2n+1}}{(2n+1)!}.

Approximate sin(1)\sin(1) by the 3-term polynomial:

S2=113!+15!.S_2 = 1 - \frac{1}{3!} + \frac{1}{5!}.

Here

bn=12n+1(2n+1)!=1(2n+1)!,b_n = \frac{1^{2n+1}}{(2n+1)!} = \frac{1}{(2n+1)!},
which decreases and goes to 00.

Error bound uses the next omitted term (the 4th term overall):

sin(1)S217!.|\sin(1) - S_2| \le \frac{1}{7!}.

Over/under?

  • Next term would be negative: 17!-\frac{1}{7!}.
  • So sin(1)S2<0\sin(1) - S_2 < 0 and S2S_2 is an overestimate.
Example 4: Trapping the exact sum between two partial sums

Consider

n=1(1)n11n3=118+127164+\sum_{n=1}^{\infty} (-1)^{n-1}\frac{1}{n^3} = 1 - \frac{1}{8} + \frac{1}{27} - \frac{1}{64} + \cdots

Compute consecutive partial sums:

S3=118+127,S4=S3164.S_3 = 1 - \frac{1}{8} + \frac{1}{27}, \quad S_4 = S_3 - \frac{1}{64}.

Because the conditions hold, the true sum SS satisfies

S[S4,S3]S \in [S_4, S_3]
(since S4<S3S_4 < S_3 here).

That’s a fast “interval answer” style bound that AP sometimes asks for.


5. Common Mistakes & Traps

  1. Using the error bound without checking conditions

    • What goes wrong: You apply SSnbn+1|S-S_n| \le b_{n+1} just because signs alternate.
    • Why wrong: The bound requires bnb_n decreasing and bn0b_n \to 0.
    • Fix: Explicitly verify monotone decrease (at least eventually) and limit 00.
  2. Bounding with the wrong term (using bnb_n instead of bn+1b_{n+1})

    • What goes wrong: You write SSnbn|S-S_n| \le b_n.
    • Why wrong: The theorem uses the first omitted term.
    • Fix: After summing through term nn, your bound is bn+1b_{n+1}.
  3. Forgetting absolute value / mixing up sign

    • What goes wrong: You treat the remainder as exactly ±bn+1\pm b_{n+1}.
    • Why wrong: The theorem gives an inequality bound, not an exact remainder.
    • Fix: Write SSnbn+1|S-S_n| \le b_{n+1}, then (optionally) use the next term’s sign for over/under.
  4. Assuming “alternating” means “convergent”

    • What goes wrong: You conclude convergence from sign changes alone.
    • Why wrong: If limbn0\lim b_n \ne 0, the series diverges even if it alternates.
    • Fix: Always check limbn=0\lim b_n = 0.
  5. Not recognizing an alternating series because it’s not written with (1)n(-1)^n

    • What goes wrong: You miss alternation when it’s written like (1)n+12n1\sum \frac{(-1)^{n+1}}{2n-1} or with explicit +++ - + - pattern.
    • Fix: Rewrite to identify bn=anb_n = |a_n| and the alternating factor (1)n(-1)^n.
  6. Claiming decreasing without justification

    • What goes wrong: You say “clearly decreasing” when it isn’t obvious.
    • Why wrong: FRQs often require a reason (comparison, derivative, monotonicity argument).
    • Fix: Use a quick argument like: for factorials/powers it decreases; for rational forms, compare bn+1b_{n+1} to bnb_n or check f(x)<0f'(x) < 0 for a continuous extension.
  7. Index slip when the series starts at n=0n=0

    • What goes wrong: You compute SnS_n but then bound with the wrong “next term” because you forgot the start index.
    • Fix: Be consistent: if your partial sum includes terms up through index nn, the bound uses index n+1n+1—regardless of whether you started at 00 or 11.
  8. Using the theorem on a non-alternating Taylor series

    • What goes wrong: You use alternating error bound for something like exe^x at positive xx.
    • Why wrong: The alternating bound needs alternating signs.
    • Fix: Only use this theorem when the series truly alternates (many Taylor series do on certain inputs, e.g., exe^{-x} at x>0x>0 alternates).

6. Memory Aids & Quick Tricks

Trick / MnemonicWhat it helps you rememberWhen to use it
“NEXT term bounds the REST.”SSnbn+1|S-S_n| \le b_{n+1}Any alternating series approximation
“Between neighbors.”SS lies between SnS_n and Sn+1S_{n+1}Quick interval/trap questions
“Next sign tells high/low.”Sign of an+1a_{n+1} tells whether SnS_n is under/overOverestimate/underestimate prompts
“Drop one term for the error.”After summing through term nn, look at term n+1n+1Avoid the bnb_n vs bn+1b_{n+1} slip

7. Quick Review Checklist

  • [ ] Can you rewrite the series as (1)n1bn\sum (-1)^{n-1}b_n with bn>0b_n>0?
  • [ ] Did you verify bn+1bnb_{n+1} \le b_n (decreasing) and limbn=0\lim b_n = 0?
  • [ ] Do you know the main bound: SSnbn+1|S-S_n| \le b_{n+1}?
  • [ ] For a target error ε\varepsilon, did you solve bn+1<εb_{n+1} < \varepsilon for nn?
  • [ ] Can you state that SS lies between SnS_n and Sn+1S_{n+1}?
  • [ ] Can you decide over/under using the sign of the next term an+1a_{n+1}?
  • [ ] Did you avoid the common index mistake (especially if starting at n=0n=0)?

You’ve got this—if the series alternates nicely, the next term basically hands you the error bound for free.