Approximating areas with Riemann sums — AP Calculus BC
1. Core Intuition of Riemann Sums ★★☆☆☆ ⏱ 3 min
Approximating areas with Riemann sums is the foundational numerical method for finding the area bounded by a curve $y=f(x)$, the $x$-axis, and two vertical lines $x=a$ and $x=b$, developed before we define the exact definite integral. For the AP Calculus BC exam, this topic appears in both multiple-choice and free-response sections.
This process directly motivates the limit definition of the definite integral, and is used when an exact antiderivative cannot be found to calculate area. On the AP exam, you will be asked to compute approximations, write sums in sigma notation, classify over/under estimates, and apply the method to real-world contexts.
2. Riemann Sums with Equal Subintervals ★★☆☆☆ ⏱ 4 min
The most common case on the AP exam is Riemann sums with equal-width subintervals. For an interval $[a,b]$ split into $n$ subintervals, the width of every subinterval is:
\Delta x = \frac{b-a}{n}
We label endpoints $x_i = a + i\Delta x$ for $i=0,1,...,n$, so the $i$-th subinterval is $[x_{i-1}, x_i]$. There are four standard types:
- **Left Riemann Sum**: Height = left endpoint: $L_n = \Delta x \sum_{i=1}^n f(x_{i-1})$
- **Right Riemann Sum**: Height = right endpoint: $R_n = \Delta x \sum_{i=1}^n f(x_i)$
- **Midpoint Riemann Sum**: Height = subinterval midpoint: $M_n = \Delta x \sum_{i=1}^n f\left(\frac{x_{i-1}+x_i}{2}\right)$
- **Trapezoidal Sum**: Uses trapezoids: $T_n = \frac{\Delta x}{2}\left[f(x_0) + 2f(x_1) + ... + 2f(x_{n-1}) + f(x_n)\right]$
Bias (over/under estimation) follows simple rules based on function properties:
- Monotonic functions (left/right sums): Increasing $f$ → left = under, right = over; Decreasing $f$ → left = over, right = under
- Concavity (midpoint/trapezoidal sums): Concave up $f$ → trapezoid = over, midpoint = under; Concave down $f$ → trapezoid = under, midpoint = over
Exam tip: On the AP exam, always explicitly label all endpoints $x_0$ through $x_n$ before calculating. This eliminates the common mistake of mixing up left and right endpoints.
3. Riemann Sums in Sigma Notation ★★★☆☆ ⏱ 4 min
AP exams regularly ask you to write a Riemann sum in sigma notation, or identify the type of sum given in sigma form. The general form for equal subintervals is:
\text{Area} \approx \Delta x \sum_{i=1}^n f(x_i^*)
where $x_i^*$ is the sample point (left, right, midpoint) in the $i$-th subinterval. A common AP trick is shifting the index to test recognition: always check the first and last term to confirm which endpoints you are using.
Exam tip: Always check the starting index of the sigma: a sum starting at $i=0$ ending at $n-1$ for $n$ subintervals is always a left sum, while $i=1$ to $n$ is always a right sum.
4. Riemann Sums for Unequal Subintervals ★★★☆☆ ⏱ 3 min
Many AP FRQ problems give a table of function values at non-equally spaced points, and ask for a Riemann sum approximation. For unequal subintervals, each subinterval $[x_{i-1}, x_i]$ has its own width $\Delta x_i = x_i - x_{i-1}$. Calculate each area separately, then sum all results. This is very common for real-world context problems with irregular measurement intervals.
Exam tip: For table problems, never assume all widths are equal. Always list each width first before calculating to avoid lost points.
Common Pitfalls
Why: Confusing the count of subintervals with their width, especially when writing sigma notation.
Why: Blind memorization without intuition leads to reversal.
Why: Misremembering the formula.
Why: Habit from equal-subinterval problems leads to automatic incorrect assumption.
Why: Confusion about index numbering for sigma notation.