Sigma notation gives you a compact way to write long sums without listing every term. It's the language you'll use to express Riemann sums, which are the foundation for understanding how integration works.
Area estimation using rectangles is how we build toward the definite integral. By chopping a region into thin rectangles, summing their areas, and then taking a limit, you move from approximation to exact area.
Sigma Notation and Summations
Summations with sigma notation
Sigma notation uses the Greek letter to represent the sum of a series of terms. Instead of writing out , you write . Much cleaner.
Here's how to read it:
- The index of summation (usually , , or ) appears below the along with its starting value.
- The upper limit above the tells you where to stop.
- The general term to the right of is the expression you evaluate for each value of the index.
So means "plug in , then , all the way up to , and add up every you get."
Evaluating a summation step by step:
- Identify the starting value, ending value, and general term.
- Substitute each index value into the general term.
- Add the results.
For example, .
A few summation properties worth knowing (these save time on longer problems):
- (summing a constant times)
- (constants factor out)
- (sums split apart)
You'll also use these closed-form formulas frequently:
These let you evaluate Riemann sums without plugging in every single term.

Approximating Areas

Area estimation using rectangles
The core idea: to find the area under a curve from to , you approximate it with rectangles whose areas are easy to compute.
Setting up the rectangles:
-
Divide the interval into subintervals of equal width .
-
On each subinterval, build a rectangle with width .
-
Choose a point in each subinterval to determine the rectangle's height. The three standard choices are:
- Left endpoint: use , the function value at the left edge of each subinterval
- Right endpoint: use , the function value at the right edge
- Midpoint: use , the function value at the center
-
Each rectangle has area , where is your chosen sample point.
-
Sum all rectangle areas: .
Quick example: Approximate the area under on using right-endpoint rectangles.
- Right endpoints:
- Heights: , , ,
- Area
The exact answer is , so this right-endpoint sum overestimates because is increasing on . That's a pattern: for an increasing function, right sums overestimate and left sums underestimate. For a decreasing function, it's the opposite.
Riemann sums for definite integrals
A Riemann sum is the formal name for the rectangle-area approximation described above. The general formula is:
where and is a sample point in the -th subinterval.
The type of Riemann sum depends on your choice of sample point:
| Type | Sample point | Tends to... (for increasing ) |
|---|---|---|
| Left Riemann sum | Underestimate | |
| Right Riemann sum | Overestimate | |
| Midpoint Riemann sum | Be more accurate than left or right | |
| The connection to the definite integral is the key takeaway: as you use more and more rectangles (), the Riemann sum converges to the exact area. |
This limit exists (and gives the same value regardless of sample point choice) whenever is continuous on .
Approximation techniques and limits
The whole point of this section is the transition from approximation to exact value through limits.
A partition of is just the set of points that divide the interval into subintervals: . With equal subintervals, each has width , and the endpoints are .
Here's the process for finding an exact area using a limit of Riemann sums:
- Write the Riemann sum in sigma notation using the formulas for and .
- Expand and simplify using summation formulas (the closed-form formulas from the sigma notation section).
- Take of the resulting expression.
For instance, to find using right endpoints:
- , and
So . This is exactly what the Fundamental Theorem of Calculus will confirm later, but here you've derived it from first principles using Riemann sums.