Approximating areas under curves is one of the central problems that motivates integration. By dividing a region into rectangles and summing their areas, you build the intuition for what a definite integral actually computes. Before you can do that efficiently, though, you need sigma notation to handle those sums without writing out dozens of terms.
Sigma Notation and Summation
Sigma notation for integer sums
Sigma notation is shorthand for writing the sum of a sequence of numbers using the Greek letter . Instead of writing , you can write . The general form is:
where:
- is the index of summation (the variable that changes with each term)
- is the lower limit (starting value of )
- is the upper limit (ending value of )
- is the expression being summed (like or )
Properties of summation let you break apart and simplify sums:
- Constant multiple rule: . You can pull constants out front. For example, .
- Sum/Difference rule: . You can split a sum of two expressions into two separate sums.
Closed-form formulas you should memorize for evaluating sums quickly:
- Sum of first integers: . For : .
- Sum of first squares: . For : .
- Sum of first cubes: . For : .
These formulas become essential when you need to evaluate Riemann sums for specific functions, since the expressions inside the sum often reduce to combinations of , , and .

Approximating Areas

Rectangular approximations for curve areas
The core idea: to estimate the area under a curve on an interval , divide that interval into equal subintervals, build a rectangle on each one, and add up the rectangle areas. The width of each rectangle is always , and the subinterval endpoints are . What differs between methods is how you choose the height.
Left Riemann Sum uses the left endpoint of each subinterval for the height:
If is increasing on , the left endpoint is the smallest value in each subinterval, so underestimates the true area. If is decreasing, it overestimates.
Right Riemann Sum uses the right endpoint of each subinterval:
The pattern flips: for an increasing function, overestimates; for a decreasing function, it underestimates.
Midpoint Riemann Sum uses the midpoint of each subinterval:
This tends to be more accurate than left or right sums because the overestimates and underestimates within each subinterval partially cancel out.
As you increase , all three methods get closer to the true area. Going from to to rectangles, the approximation tightens significantly.
Upper and Lower Sums
These are a more theoretical way to bound the area:
- Upper sum: Use the maximum value of on each subinterval as the rectangle height. This always overestimates the area.
- Lower sum: Use the minimum value of on each subinterval. This always underestimates.
The true area is always squeezed between the lower and upper sums. As increases, both converge to the same value, which is the exact area. Note that for an increasing function, the left sum is the lower sum and the right sum is the upper sum, but this correspondence doesn't hold for all functions.
Riemann sums for definite integrals
The definite integral represents the exact area under from to (with area below the -axis counted as negative). Riemann sums are how we formally define this integral.
The connection is a limit:
where is any sample point in the -th subinterval and . It doesn't matter whether you pick left endpoints, right endpoints, or midpoints; as , they all converge to the same value (provided is integrable on ).
Steps to compute a Riemann sum for a specific :
- Find the width of each subinterval: .
- Identify the sample points in each subinterval (left, right, or midpoint).
- Evaluate at each sample point.
- Multiply each function value by to get the area of that rectangle.
- Sum all rectangle areas: .
To find the exact area, you'd carry out steps 1-5 with a general , use the closed-form summation formulas from earlier to simplify, and then take of the result.