Approximating Areas with Riemann Sums — AP Calculus AB
1. Core Concepts: Equal-Width Rectangular Riemann Sums ★★☆☆☆ ⏱ 4 min
A Riemann sum approximates the net area between $y=f(x)$ and the x-axis over $[a,b]$ by dividing the interval into smaller slices, calculating each slice's area, and summing the results. It is the conceptual foundation for the definite integral, which is the limit of a Riemann sum as the number of slices approaches infinity. For equal-width slices, the width of each subinterval is:
\Delta x = \frac{b-a}{n}
where $n$ is the number of subintervals, $a$ is the left endpoint of the full interval, and $b$ is the right endpoint. There are three common types of rectangular Riemann sums, differing by which point on the subinterval is used for the rectangle height:
- **Left Riemann Sum ($L_n$)**: Uses the left endpoint of each subinterval: $L_n = \Delta x \sum_{i=0}^{n-1} f(x_i)$
- **Right Riemann Sum ($R_n$)**: Uses the right endpoint of each subinterval: $R_n = \Delta x \sum_{i=1}^{n} f(x_i)$
- **Midpoint Riemann Sum ($M_n$)**: Uses the midpoint of each subinterval: $M_n = \Delta x \sum_{i=1}^{n} f\left(\frac{x_{i-1} + x_i}{2}\right)$
Exam tip: If the question does not specify a number of decimal places, leave your answer as an integer or simplified fraction; the AP exam does not require rounding unless explicitly stated.
2. The Trapezoidal Rule ★★☆☆☆ ⏱ 3 min
The trapezoidal rule replaces rectangles with trapezoids, connecting the endpoints of each subinterval with a straight line to produce a more accurate approximation for smooth functions. The area of a single trapezoid over $[x_{i-1}, x_i]$ is $\frac{f(x_{i-1}) + f(x_i)}{2} \times \Delta x$. Summing this for all equal-width subintervals simplifies to the formula:
T_n = \frac{\Delta x}{2} \left[ f(x_0) + 2f(x_1) + 2f(x_2) + ... + 2f(x_{n-1}) + f(x_n) \right]
A useful time-saving identity for equal subintervals: the trapezoidal sum is exactly the average of the left and right Riemann sums:
T_n = \frac{L_n + R_n}{2}
Exam tip: If a multiple choice question gives you the left and right Riemann sums for an interval, you can get the trapezoidal sum in one step with the average identity, no need to recalculate all values.
3. Unequal Subintervals & Tabular Context Problems ★★★☆☆ ⏱ 4 min
A common AP Free Response Question (FRQ) format provides a table of function values at non-equally spaced points, usually for real-world rates like velocity or growth, and asks for an area approximation. For unequal subintervals, $\Delta x$ is not constant, so simplified equal-width formulas do not apply. Instead, calculate the width of each subinterval individually, compute each slice's area separately, then sum:
- **Rectangular**: Area of slice = $f(\text{chosen endpoint}) \times \text{slice width}$
- **Trapezoidal**: Area of slice = $\frac{f(\text{left endpoint}) + f(\text{right endpoint})}{2} \times \text{slice width}$
Exam tip: Always list the width of each subinterval first before starting any calculations; never assume intervals are equal just because the problem asks for a trapezoidal sum.
4. Over- and Under-Approximation Rules ★★★☆☆ ⏱ 3 min
AP questions often ask you to determine whether an approximation is larger or smaller than the exact area, without calculating the full sum. The rules depend on the type of sum and the function's properties, and only apply when the function is monotonic (for left/right sums) or has constant concavity (for trapezoidal sums) over the entire interval:
- **Left/Right Rectangular Sums**: If $f$ is increasing ($f'(x) > 0$): Left = under-approximation, Right = over-approximation. If $f$ is decreasing ($f'(x) < 0$): Left = over-approximation, Right = under-approximation.
- **Trapezoidal Sums**: If $f$ is concave up ($f''(x) > 0$): Trapezoidal = over-approximation. If $f$ is concave down ($f''(x) < 0$): Trapezoidal = under-approximation.
Common Pitfalls
Why: Students mix up the trapezoidal formula with rectangular Riemann sum formulas out of habit.
Why: AP FRQs regularly use unequal subintervals to test this concept, and students default to equal spacing from practice with equal-width problems.
Why: Students memorize rules in order and mix up which applies to increasing vs decreasing functions.
Why: Algebraic mixup when rearranging, especially with large values of $n$.
Why: Rushing through the problem after calculating $\Delta x$, skipping the step of confirming which endpoints are required.