Fiveable

♾️AP Calculus AB/BC Unit 6 Review

QR code for AP Calculus AB/BC practice questions

6.2 Approximating Areas with Riemann Sums

6.2 Approximating Areas with Riemann Sums

Written by the Fiveable Content Team • Last updated June 2026
Verified for the 2027 exam
Verified for the 2027 examWritten by the Fiveable Content Team • Last updated June 2026
♾️AP Calculus AB/BC
Unit & Topic Study Guides

AP Cram Sessions 2021

Pep mascot

Riemann sums estimate the area under a curve, or a definite integral, by adding the areas of rectangles or trapezoids. The four main types are left, right, midpoint, and trapezoidal sums, and you can build them from a graph, a table, an equation, or a verbal description. For AP Calculus, include units when the values come from a real context.

Riemann Sums Summary

For AP Calculus Topic 6.2, Riemann sums approximate a definite integral by breaking an interval into subintervals and adding simple areas. Left, right, and midpoint sums use rectangles; trapezoidal sums use trapezoids. The setup works from tables, graphs, formulas, or verbal descriptions.

The exam often tests two things at once: computing the approximation and explaining its error. Increasing/decreasing behavior decides whether left and right sums overestimate or underestimate, while concavity decides the direction of error for midpoint and trapezoidal sums.

Why This Matters for the AP Calculus Exam

Approximating definite integrals shows up across AP Calculus because real data often comes as a table of values, not a clean formula. You will be asked to set up and compute left, right, midpoint, and trapezoidal sums, then explain whether the result is an overestimate or underestimate. This skill connects directly to the idea that a definite integral is the limit of these sums as the rectangles get thinner, which is the foundation for everything that follows in integration and accumulation.

Approximation also matters because many functions do not have an easy antiderivative. When you cannot integrate exactly, a numerical approach (with or without a calculator) is how you get an answer. Being precise with units and setup is important for clear exam work, especially when a problem gives you data in context.

Key Takeaways

  • A Riemann sum approximates the area under a curve by adding up areas of rectangles (left, right, midpoint) or trapezoids.
  • Find the width of each subinterval with (b - a)/n for a uniform partition; partitions can also be nonuniform with different widths.
  • Left sums underestimate increasing functions and overestimate decreasing functions; right sums do the opposite.
  • For trapezoidal and midpoint sums, concavity decides the error: trapezoidal overestimates when concave up, midpoint underestimates when concave up.
  • You can build any of these sums from a graph, a table of values, an equation, or a verbal description.
  • As the number of subintervals grows and widths shrink toward 0, the Riemann sum approaches the exact value of the definite integral.

The Four Riemann Sums

As you move into integral calculus, the goal shifts from finding an instantaneous rate of change to finding the area under a curve. That area is hard to get exactly with geometry alone, so you approximate it with simple shapes. The more shapes you use, the closer your approximation gets to the true value.

There are four main types:

  1. Left Riemann sum
  2. Right Riemann sum
  3. Midpoint Riemann sum
  4. Trapezoidal sum

Left and Right Riemann Sums

Left and right refer to which point on each subinterval sets the height of the rectangle. A left Riemann sum uses the left endpoint of each subinterval for the height; a right Riemann sum uses the right endpoint.

Notation: the left Riemann sum is written LnL_n and the right Riemann sum is written RnR_n, where nn is the number of subintervals.

Subintervals (Partitions)

You also choose how wide each base is. A uniform partition uses equal widths; a nonuniform partition uses different widths. For a uniform partition over [a,b][a, b] with nn subintervals, each width is:

Δx=ban\Delta x = \frac{b - a}{n}

The pieces you divide the interval into are called subintervals.

Overestimate vs Underestimate for Left and Right Sums

Whether a left or right sum is too high or too low depends on whether the function is increasing or decreasing:

  • A left Riemann sum underestimates when a function is increasing.
  • A right Riemann sum overestimates when a function is increasing.
  • A left Riemann sum overestimates when a function is decreasing.
  • A right Riemann sum underestimates when a function is decreasing.

A quick way to remember it: for an increasing function, the right endpoint is the tallest point in each strip, so right sums run high and left sums run low. Flip it for a decreasing function.

Trapezoidal and Midpoint Sums

Both of these aim to reduce error compared to plain left or right sums.

Trapezoidal sum: instead of flat-topped rectangles, you connect each pair of points with a straight line, forming trapezoids. The area of one trapezoid is:

a+b2h\frac{a + b}{2} \cdot h

where aa and bb are the two parallel side heights and hh is the width. The trapezoidal sum equals the average of the left and right sums, so Tn=Ln+Rn2T_n = \frac{L_n + R_n}{2}. It is written TnT_n.

Midpoint sum: use the height of the function at the middle of each subinterval as the rectangle's height. It is written MnM_n.

Overestimate vs Underestimate for Trapezoidal and Midpoint Sums

Here concavity is what matters, not increasing/decreasing:

  • A trapezoidal Riemann sum overestimates when a function is concave up.
  • A trapezoidal Riemann sum underestimates when a function is concave down.
  • A midpoint Riemann sum underestimates when a function is concave up.
  • A midpoint Riemann sum overestimates when a function is concave down.

Because trapezoidal and midpoint sums err in opposite directions, the true value often sits between them.

Worked Example: Building Sums from an Equation

Given f(x)=12x2f(x) = \frac{1}{2}x^2, find L4L_4, R4R_4, T4T_4, and M4M_4 over the interval [0,4][0, 4].

Start by finding the width of each subinterval:

404=1\frac{4 - 0}{4} = 1

Build a table of values at the endpoints:

xy (height)
00
10.5
22
34.5
48

Left sum uses x=0,1,2,3x = 0, 1, 2, 3. Since the width is 1, sum the heights:

L4=0+0.5+2+4.5=7L_4 = 0 + 0.5 + 2 + 4.5 = \boxed{7}

Right sum uses x=1,2,3,4x = 1, 2, 3, 4:

R4=0.5+2+4.5+8=15R_4 = 0.5 + 2 + 4.5 + 8 = \boxed{15}

Trapezoidal sum averages each pair of adjacent heights times the width:

0+0.521+0.5+221+2+4.521+4.5+821=11\frac{0+0.5}{2}\cdot 1+\frac{0.5+2}{2}\cdot 1+\frac{2+4.5}{2}\cdot 1+\frac{4.5+8}{2}\cdot 1=\boxed{11}

Notice this matches L4+R42=7+152=11\frac{L_4 + R_4}{2} = \frac{7 + 15}{2} = 11.

Midpoint sum uses the heights at x=0.5,1.5,2.5,3.5x = 0.5, 1.5, 2.5, 3.5:

xy (height)
0.50.125
1.51.125
2.53.125
3.56.125
M4=0.125+1.125+3.125+6.125=10.5M_4 = 0.125+1.125+3.125+6.125=\boxed{10.5}

Are T4T_4 and M4M_4 over or underestimates? This function is concave up, so T4T_4 is an overestimate and M4M_4 is an underestimate. The true area lies between 10.5 and 11.

How to Use This on the AP Calculus Exam

Free Response

Many free-response problems give you a table of values for a rate function and ask for an approximation. Write out the full setup, not just the final number. For a trapezoidal estimate with unequal widths, keep each term separate so your work is clear. Always include units when the problem is in context, since the unit of the area is the rate's unit times the independent variable's unit.

MCQ

Multiple-choice questions often test the over/underestimate rules directly. Read whether the function is increasing/decreasing (for left and right sums) or concave up/down (for trapezoidal and midpoint sums) and apply the matching rule. Watch for nonuniform partitions where each subinterval has a different width.

Problem Solving

When data comes from a table, you do not need a formula. Match each subinterval to its width and the correct sample point (left endpoint, right endpoint, or midpoint). Factor out the width when it is constant to speed up the arithmetic, like L6=13(0+109+229+4+529+709)L_6 = \frac{1}{3}(0 + \frac{10}{9} + \frac{22}{9} + 4 + \frac{52}{9} + \frac{70}{9}).

Common Trap

A midpoint sum needs the function value at the middle x of each subinterval, not the average of the endpoint heights. The average-of-endpoints idea belongs to the trapezoidal sum.

Practice Problems

  1. Given f(x)=2x+1f(x) = 2x + 1 over [1,5][1, 5], calculate the right Riemann sum with n=4n = 4.
  2. Given f(x)=x2+3xf(x) = x^2 + 3x over [0,2][0, 2], compute the left Riemann sum with n=6n = 6.
  3. Given f(x)=3x24f(x) = 3x^2 - 4 over [2,8][2, 8], find T12T_{12} and M12M_{12}.

Solutions

Problem 1: Width is 514=1\frac{5 - 1}{4} = 1. Right endpoints are x=2,3,4,5x = 2, 3, 4, 5.

xy (height)
25
37
49
511
(51)+(71)+(91)+(111)=32(5\cdot1)+(7\cdot 1)+(9\cdot1)+(11\cdot1)=\boxed{32}

Problem 2: Width is 206=13\frac{2 - 0}{6} = \frac{1}{3}. Left endpoints start at x=0x = 0.

xy (height)
00
1/310/9
2/322/9
14
4/352/9
5/370/9

Factor out the width:

L6=13(0+109+229+4+529+709)7.04L_6=\frac{1}{3}\Bigg(0+\frac{10}{9}+\frac{22}{9}+4+\frac{52}{9}+\frac{70}{9}\Bigg)\approx\boxed{7.04}

Problem 3: Width is 8212=12\frac{8 - 2}{12} = \frac{1}{2}.

For T12T_{12}, use heights at every endpoint:

xy (height)
28
2.514.75
323
3.532.75
444
4.556.75
571
5.586.75
6104
6.5122.75
7143
7.5164.75
8188

Using the trapezoidal pattern (each interior height counts twice, endpoints once), this works out to:

0.5(8+14.75+23+32.75+44+56.75+71+86.75+104+122.75+143+164.75+188)=529.750.5(8+14.75+23+32.75+44+56.75+71+86.75+104+122.75+143+164.75+188)=\boxed{529.75}

For M12M_{12}, use heights at the midpoint of each subinterval:

xy (height)
2.2511.1875
2.7518.6875
3.2527.6875
3.7538.1875
4.2550.1875
4.7563.6875
5.2578.6875
5.7595.1875
6.25113.1875
6.75132.6875
7.25153.6875
7.75176.1875
M12=0.5(11.1875+18.6875+27.6875+38.1875+50.1875+63.6875+78.6875+95.1875+113.1875+132.6875+153.6875+176.1875)=479.625M_{12}=0.5(11.1875+18.6875+27.6875+38.1875+50.1875+63.6875+78.6875+95.1875+113.1875+132.6875+153.6875+176.1875)=\boxed{479.625}

Common Misconceptions

  • A Riemann sum is exact. It is an approximation. It only approaches the true definite integral as the number of subintervals grows and the widths shrink toward 0.
  • Left always underestimates and right always overestimates. That is only true for increasing functions. For decreasing functions the roles flip.
  • The over/underestimate rule for trapezoidal and midpoint sums depends on increasing/decreasing. It depends on concavity, not direction. Trapezoidal overestimates when concave up; midpoint underestimates when concave up.
  • Midpoint means averaging the two endpoint heights. Averaging endpoints gives the trapezoidal value. The midpoint sum uses the function value at the middle x of each subinterval.
  • All partitions must be uniform. Subintervals can have different widths. With a nonuniform partition, multiply each height by its own width before adding.
  • You always need a formula. When a problem gives a table, you can approximate directly from the listed values without ever knowing the underlying function.

Vocabulary

The following words are mentioned explicitly in the College Board Course and Exam Description for this topic.

Term

Definition

definite integral

The integral of a function over a specific interval [a, b], representing the net signed area between the curve and the x-axis.

left Riemann sum

An approximation method for a definite integral using rectangles whose heights are determined by the function values at the left endpoints of subintervals.

midpoint Riemann sum

An approximation method for a definite integral using rectangles whose heights are determined by the function values at the midpoints of subintervals.

nonuniform partition

A division of an interval into subintervals of varying widths.

numerical methods

Computational techniques used to approximate definite integrals when exact analytical solutions are difficult or impossible to obtain.

overestimate

An approximation that is greater than the actual value of a function.

right Riemann sum

An approximation method for a definite integral using rectangles whose heights are determined by the function values at the right endpoints of subintervals.

trapezoidal sum

An approximation method for a definite integral using trapezoids to estimate the area under a curve.

underestimate

An approximation that is less than the actual value of a function.

uniform partition

A division of an interval into subintervals of equal width.

Frequently Asked Questions

What is a Riemann sum in AP Calculus?

A Riemann sum approximates a definite integral by splitting an interval into subintervals and adding rectangle or trapezoid areas. It estimates the accumulated area under a curve.

How do you calculate a left Riemann sum?

Use the left endpoint of each subinterval as the rectangle height, multiply each height by its subinterval width, and add the products. For equal widths, factor out delta x.

What is the difference between left, right, and midpoint sums?

Left sums use left endpoints, right sums use right endpoints, and midpoint sums use the middle of each subinterval as the rectangle height.

What is a trapezoidal sum?

A trapezoidal sum approximates area by connecting adjacent function values with line segments and adding trapezoid areas. For equal subintervals, it is also the average of the left and right sums.

How do you know if a Riemann sum is an overestimate or underestimate?

For left and right sums, use whether the function is increasing or decreasing. For midpoint and trapezoidal sums, use concavity: concave up makes trapezoidal high and midpoint low; concave down reverses that.

What is a common mistake with midpoint and trapezoidal sums?

A common mistake is using the average of endpoint heights for a midpoint sum. The midpoint sum uses the actual function value at the middle of each subinterval; averaging endpoints is part of the trapezoidal method.

Pep mascot
Upgrade your Fiveable account to print any study guide

Download study guides as beautiful PDFs See example

Print or share PDFs with your students

Always prints our latest, updated content

Mark up and annotate as you study

Click below to go to billing portal → update your plan → choose Yearly→ and select "Fiveable Share Plan". Only pay the difference

Plan is open to all students, teachers, parents, etc
Pep mascot
Upgrade your Fiveable account to export vocabulary

Download study guides as beautiful PDFs See example

Print or share PDFs with your students

Always prints our latest, updated content

Mark up and annotate as you study

Plan is open to all students, teachers, parents, etc
report an error
description

screenshots help us find and fix the issue faster (optional)

add screenshot

2,589 studying →