Andromeda
Note

Alternating Series Estimation Theorem

Definition

The Alternating Series Estimation Theorem provides a way to bound the error (the remainder) when approximating the total sum of a convergent alternating series with a finite partial sum. It states that the error is always less than the absolute value of the first unused term.

Why It Matters

In engineering, “perfect” is impossible; “precise enough” is the goal. This theorem provides an incredibly simple way to know exactly how far your approximation is from the truth, allowing you to stop calculating the moment you reach the required tolerance.

Core Concepts

  • Conditions: The series must satisfy the Alternating Series Test (terms decrease in magnitude and approach zero).

  • The Error Bound: If s=(1)n1bns = \sum (-1)^{n-1} b_n is the sum, and sns_n is the nn-th partial sum, then the remainder RnR_n is bounded by: Rn=ssnbn+1|R_n| = |s - s_n| \leq b_{n+1}

    • How to read: “The absolute value of the remainder R n, which is the absolute value of the total sum s minus the partial sum s n, is less than or equal to the next term b n plus one.”
    • Meaning: Stop after nn terms and your error is smaller than the very next term bn+1b_{n+1}—no need to compute the exact sum to know precision.
  • Sign of Error: The actual sum ss always lies between any two consecutive partial sums sns_n and sn+1s_{n+1}.

    • How to read: “The sum s lies between the partial sums s n and s n plus one.”
    • Meaning: Partial sums bracket the answer from opposite sides—alternating overshoot and undershoot that squeeze toward ss.

Connected Concepts