# Approximating areas with Riemann sums

> AP Calculus BC · Integration and Accumulation of Change
> Source: https://www.owlsprep.com/study/ap-calculus-bc-u6-approximating-areas-with-riemann-sums/

This guide covers left, right, midpoint, and trapezoidal Riemann sums for approximating area under a curve, for both equal and unequal subintervals. You will learn sigma notation, over/under approximation rules, and AP exam problem-solving strategies.

**Prerequisites:** Evaluating finite sums and sigma notation; Properties of monotonic functions and concavity; Basic area formulas for rectangles and trapezoids

## Learning objectives

- Calculate left, right, midpoint, and trapezoidal Riemann sums for equal and unequal subintervals
- Write Riemann sums in sigma notation and identify sum types from given sigma expressions
- Classify Riemann sums as over or under approximations based on function monotonicity and concavity
- Apply Riemann sums to real-world context problems for the AP exam

## Core Intuition of Riemann Sums

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.

**Riemann Sum Approximation** — Split the interval $[a,b]$ into $n$ smaller subintervals, approximate the area over each subinterval with a simple geometric shape, then add all small areas together. As $n$ increases, the approximation approaches the true area.

*Notation:* RAM (Rectangle Approximation Method)

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.

## Riemann Sums with Equal Subintervals

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

**Worked example:** Approximate the area under $f(x) = x^2 + 1$ on $[0, 2]$ using 4 equal subintervals. Calculate (a) Left, (b) Right, (c) Midpoint Riemann Sum.

1. First calculate $\Delta x$:
2. $$\Delta x = \frac{2-0}{4} = 0.5$$
3. List endpoints and $f(x)$ values: $x_0=0, x_1=0.5, x_2=1.0, x_3=1.5, x_4=2.0$ → $f(0)=1, f(0.5)=1.25, f(1)=2, f(1.5)=3.25, f(2)=5$
4. (a) Left Sum uses endpoints $x_0$ to $x_3$:
5. $$L_4 = 0.5\left(1 + 1.25 + 2 + 3.25\right) = 3.75$$
6. (b) Right Sum uses endpoints $x_1$ to $x_4$:
7. $$R_4 = 0.5\left(1.25 + 2 + 3.25 + 5\right) = 5.75$$
8. (c) Midpoints are $0.25, 0.75, 1.25, 1.75$, with $f$ values $1.0625, 1.5625, 2.5625, 4.0625$:
9. $$M_4 = 0.5\left(1.0625 + 1.5625 + 2.5625 + 4.0625\right) = 4.625$$

> **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.

## Riemann Sums in Sigma Notation

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.

**Worked example:** Write the right Riemann sum for $f(x) = \ln x$ on $[1, 5]$ with 8 equal subintervals in sigma notation. Then identify the sum $\frac{1}{2} \sum_{i=0}^7 \ln\left(1 + \frac{i}{2}\right)$.

1. Calculate $\Delta x$:
2. $$\Delta x = \frac{5-1}{8} = \frac{1}{2}$$
3. For a right sum, the $i$-th right endpoint (for $i=1$ to $8$) is $x_i = 1 + \frac{i}{2}$.
4. Substitute into the general formula to get the right sum:
5. $$\frac{1}{2} \sum_{i=1}^8 \ln\left(1 + \frac{i}{2}\right)$$
6. For the given sum, index runs from $i=0$ to $7$. First term is $\ln(1)$ (left endpoint of first interval), last term is $\ln(4.5)$ (left endpoint of last interval). This is a left Riemann sum with 8 equal subintervals.

> **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.

## Riemann Sums for Unequal Subintervals

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.

**Worked example:** The table below gives values of a decreasing function $v(t)$, velocity of a car in mph, at times $t$ in hours:

| t | 0 | 1 | 3 | 6 |
|---|---|---|---|---|
| v(t) | 60 | 52 | 45 | 38 |

Approximate total distance traveled from $t=0$ to $t=6$ using a left Riemann sum, and state if it is over or under estimate.

1. List subintervals and calculate each width: $[0,1], [1,3], [3,6]$ → $\Delta x_1=1$, $\Delta x_2=2$, $\Delta x_3=3$
2. Left sum uses left endpoints: $v(0)=60$, $v(1)=52$, $v(3)=45$
3. Calculate total approximate distance:
4. $$\text{Distance} \approx (60 \cdot 1) + (52 \cdot 2) + (45 \cdot 3) = 299$$
5. Since $v(t)$ is decreasing, left endpoints are the largest value on each interval, so this is an overestimate of the true distance.

> **Exam tip:** For table problems, never assume all widths are equal. Always list each width first before calculating to avoid lost points.

## Common pitfalls

- **Wrong:** Using $n$ (number of subintervals) instead of $\frac{b-a}{n}$ for $\Delta x$, e.g., using $\Delta x=4$ for $n=4$ on $[0,2]$.
  - Why it fails: Confusing the count of subintervals with their width, especially when writing sigma notation.
  - Correct: Always calculate and label $\Delta x$ explicitly before starting any calculation.
- **Wrong:** Reversing the over/under classification for left/right sums, e.g., claiming a left sum for an increasing function is an overestimate.
  - Why it fails: Blind memorization without intuition leads to reversal.
  - Correct: Draw a 10-second rough sketch of the function and rectangles to see if rectangles lie above or below the curve.
- **Wrong:** For the trapezoidal rule, forgetting the $\frac{\Delta x}{2}$ leading factor or forgetting to double the middle terms.
  - Why it fails: Misremembering the formula.
  - Correct: Derive the trapezoidal sum as the average of the left and right sum: $T_n = \frac{L_n + R_n}{2}$, which automatically gives correct coefficients.
- **Wrong:** For unequal subinterval table problems, using an average width for all subintervals even when spacing is uneven.
  - Why it fails: Habit from equal-subinterval problems leads to automatic incorrect assumption.
  - Correct: Always list all subinterval widths first before calculating the sum.
- **Wrong:** Starting a right Riemann sum at $i=0$ instead of $i=1$, leading to including the left endpoint of the full interval and missing the right endpoint.
  - Why it fails: Confusion about index numbering for sigma notation.
  - Correct: Write out the first and last term of the sum to confirm endpoints match requirements.

## Cheatsheet

| Category | Formula | Notes |
| --- | --- | --- |
| Equal subinterval width | $\Delta x = \frac{b-a}{n}$ | $n$ = number of subintervals, interval $[a,b]$ |
| General Riemann Sum | $\sum_{i=1}^n f(x_i^*) \Delta x_i$ | $x_i^*$ = sample point, $\Delta x_i$ = width of $i$-th subinterval |
| Left Sum (equal $n$) | $L_n = \Delta x \sum_{i=1}^n f(a + (i-1)\Delta x)$ | Increasing $f$: underestimate; decreasing $f$: overestimate |
| Right Sum (equal $n$) | $R_n = \Delta x \sum_{i=1}^n f(a + i\Delta x)$ | Increasing $f$: overestimate; decreasing $f$: underestimate |
| Midpoint Sum (equal $n$) | $M_n = \Delta x \sum_{i=1}^n f\left(a + \left(i - \frac{1}{2}\right)\Delta x\right)$ | Concave up $f$: underestimate; concave down $f$: overestimate |
| Trapezoidal Sum (equal $n$) | $T_n = \frac{\Delta x}{2}\left[f(x_0) + 2\sum_{i=1}^{n-1}f(x_i) + f(x_n)\right]$ | Concave up $f$: overestimate; concave down $f$: underestimate; $T_n = \frac{L_n + R_n}{2}$ |
| Trapezoidal Sum (unequal $n$) | $\sum_{i=1}^n \frac{f(x_{i-1}) + f(x_i)}{2} \Delta x_i$ | Use for table problems with non-uniform spacing |
| Left Sum (unequal $n$) | $\sum_{i=1}^n f(x_{i-1}) \Delta x_i$ | Uses left endpoint of each subinterval for height |
| Right Sum (unequal $n$) | $\sum_{i=1}^n f(x_i) \Delta x_i$ | Uses right endpoint of each subinterval for height |

## What's next

This topic is the foundation for all of integration in AP Calculus BC. Immediately after learning Riemann sums, you will move to the definition of the definite integral as the limit of Riemann sums, which formalizes the idea that the true area is the limit of these approximations as the number of subintervals grows to infinity. Without a solid understanding of how Riemann sums approximate area, the connection between area and the definite integral will remain abstract, making it harder to master the Fundamental Theorem of Calculus and accumulation functions, which are the core of Unit 6. Riemann sum approximation also directly leads to more advanced numerical integration methods covered in BC, including Simpson's rule, for more accurate approximations when exact antiderivatives are unavailable.

- [Riemann sums, summation notation, definite integral notation](https://www.owlsprep.com/study/ap-calculus-bc-u6-riemann-sums-summation-notation-definite/)
- [Fundamental Theorem of Calculus and accumulation functions](https://www.owlsprep.com/study/ap-calculus-bc-u6-fundamental-theorem-of-calculus-and/)
- [Interpreting behavior of accumulation functions](https://www.owlsprep.com/study/ap-calculus-bc-u6-interpreting-behavior-of-accumulation-functions/)

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/ap-calculus-bc-u6-approximating-areas-with-riemann-sums/
