Study Guide

Approximating areas with Riemann sums

AP Calculus BCΒ· AP Calculus BC CED β€” Integration and Accumulation of ChangeΒ· 14 min read

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 , the -axis, and two vertical lines and , 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.

πŸ“˜ Definition

Riemann Sum Approximation

RAM(RectangleApproximationMethod)RAM (Rectangle Approximation Method)

Split the interval into smaller subintervals, approximate the area over each subinterval with a simple geometric shape, then add all small areas together. As increases, the approximation approaches the true area.

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 split into subintervals, the width of every subinterval is:

Ξ”x=bβˆ’an\Delta x = \frac{b-a}{n}

We label endpoints for , so the -th subinterval is . There are four standard types:

  • Left Riemann Sum: Height = left endpoint:

  • Right Riemann Sum: Height = right endpoint:

  • Midpoint Riemann Sum: Height = subinterval midpoint:

  • Trapezoidal Sum: Uses trapezoids:

Bias (over/under estimation) follows simple rules based on function properties:

  • Monotonic functions (left/right sums): Increasing β†’ left = under, right = over; Decreasing β†’ left = over, right = under

  • Concavity (midpoint/trapezoidal sums): Concave up β†’ trapezoid = over, midpoint = under; Concave down β†’ trapezoid = under, midpoint = over

πŸ“ Worked Example

Approximate the area under on using 4 equal subintervals. Calculate (a) Left, (b) Right, (c) Midpoint Riemann Sum.

  1. 1

    First calculate :

  2. 2
    Ξ”x=2βˆ’04=0.5\Delta x = \frac{2-0}{4} = 0.5
  3. 3

    List endpoints and values: β†’

  4. 4

    (a) Left Sum uses endpoints to :

  5. 5
    L4=0.5(1+1.25+2+3.25)=3.75L_4 = 0.5\left(1 + 1.25 + 2 + 3.25\right) = 3.75
  6. 6

    (b) Right Sum uses endpoints to :

  7. 7
    R4=0.5(1.25+2+3.25+5)=5.75R_4 = 0.5\left(1.25 + 2 + 3.25 + 5\right) = 5.75
  8. 8

    (c) Midpoints are , with values :

  9. 9
    M4=0.5(1.0625+1.5625+2.5625+4.0625)=4.625M_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 through 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:

Areaβ‰ˆΞ”xβˆ‘i=1nf(xiβˆ—)\text{Area} \approx \Delta x \sum_{i=1}^n f(x_i^*)

where is the sample point (left, right, midpoint) in the -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 on with 8 equal subintervals in sigma notation. Then identify the sum .

  1. 1

    Calculate :

  2. 2
    Ξ”x=5βˆ’18=12\Delta x = \frac{5-1}{8} = \frac{1}{2}
  3. 3

    For a right sum, the -th right endpoint (for to ) is .

  4. 4

    Substitute into the general formula to get the right sum:

  5. 5
    12βˆ‘i=18ln⁑(1+i2)\frac{1}{2} \sum_{i=1}^8 \ln\left(1 + \frac{i}{2}\right)
  6. 6

    For the given sum, index runs from to . First term is (left endpoint of first interval), last term is (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 ending at for subintervals is always a left sum, while to 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 has its own width . 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 , velocity of a car in mph, at times in hours:

t0136
v(t)60524538

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

  1. 1

    List subintervals and calculate each width: β†’ , ,

  2. 2

    Left sum uses left endpoints: , ,

  3. 3

    Calculate total approximate distance:

  4. 4
    Distanceβ‰ˆ(60β‹…1)+(52β‹…2)+(45β‹…3)=299\text{Distance} \approx (60 \cdot 1) + (52 \cdot 2) + (45 \cdot 3) = 299
  5. 5

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

5. Common Pitfalls

Wrong move:

Using (number of subintervals) instead of for , e.g., using for on .

Why:

Confusing the count of subintervals with their width, especially when writing sigma notation.

Correct move:

Always calculate and label explicitly before starting any calculation.

Wrong move:

Reversing the over/under classification for left/right sums, e.g., claiming a left sum for an increasing function is an overestimate.

Why:

Blind memorization without intuition leads to reversal.

Correct move:

Draw a 10-second rough sketch of the function and rectangles to see if rectangles lie above or below the curve.

Wrong move:

For the trapezoidal rule, forgetting the leading factor or forgetting to double the middle terms.

Why:

Misremembering the formula.

Correct move:

Derive the trapezoidal sum as the average of the left and right sum: , which automatically gives correct coefficients.

Wrong move:

For unequal subinterval table problems, using an average width for all subintervals even when spacing is uneven.

Why:

Habit from equal-subinterval problems leads to automatic incorrect assumption.

Correct move:

Always list all subinterval widths first before calculating the sum.

Wrong move:

Starting a right Riemann sum at instead of , leading to including the left endpoint of the full interval and missing the right endpoint.

Why:

Confusion about index numbering for sigma notation.

Correct move:

Write out the first and last term of the sum to confirm endpoints match requirements.

6. Quick Reference Cheatsheet

Category

Formula

Notes

Equal subinterval width

= number of subintervals, interval

General Riemann Sum

= sample point, = width of -th subinterval

Left Sum (equal )

Increasing : underestimate; decreasing : overestimate

Right Sum (equal )

Increasing : overestimate; decreasing : underestimate

Midpoint Sum (equal )

Concave up : underestimate; concave down : overestimate

Trapezoidal Sum (equal )

Concave up : overestimate; concave down : underestimate;

Trapezoidal Sum (unequal )

Use for table problems with non-uniform spacing

Left Sum (unequal )

Uses left endpoint of each subinterval for height

Right Sum (unequal )

Uses right endpoint of each subinterval for height

When this came up on past exams

AI-estimated based on syllabus patterns β€” cross-check with official past papers for accuracy. Use only as revision-focus signals.

  • 2023 Β· MCQ

    Identify over/under estimate for sum

  • 2022 Β· FRQ

    Unequal subinterval Riemann sum

  • 2021 Β· MCQ

    Sigma notation sum identification

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.