Fiveable

Calculus I Unit 5 Review

QR code for Calculus I practice questions

5.1 Approximating Areas

5.1 Approximating Areas

Written by the Fiveable Content Team • Last updated August 2025
Written by the Fiveable Content Team • Last updated August 2025
Calculus I
Unit & Topic Study Guides

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 Σ\Sigma to represent the sum of a series of terms. Instead of writing out 12+22+32++1021^2 + 2^2 + 3^2 + \cdots + 10^2, you write i=110i2\sum_{i=1}^{10} i^2. Much cleaner.

Here's how to read it:

  • The index of summation (usually ii, kk, or nn) appears below the Σ\Sigma along with its starting value.
  • The upper limit above the Σ\Sigma tells you where to stop.
  • The general term to the right of Σ\Sigma is the expression you evaluate for each value of the index.

So i=1nai\sum_{i=1}^{n} a_i means "plug in i=1i = 1, then i=2i = 2, all the way up to i=ni = n, and add up every aia_i you get."

Evaluating a summation step by step:

  1. Identify the starting value, ending value, and general term.
  2. Substitute each index value into the general term.
  3. Add the results.

For example, i=14(2i+1)=(2(1)+1)+(2(2)+1)+(2(3)+1)+(2(4)+1)=3+5+7+9=24\sum_{i=1}^{4} (2i + 1) = (2(1)+1) + (2(2)+1) + (2(3)+1) + (2(4)+1) = 3 + 5 + 7 + 9 = 24.

A few summation properties worth knowing (these save time on longer problems):

  • i=1nc=cn\sum_{i=1}^{n} c = cn (summing a constant nn times)
  • i=1ncai=ci=1nai\sum_{i=1}^{n} c \cdot a_i = c \sum_{i=1}^{n} a_i (constants factor out)
  • i=1n(ai+bi)=i=1nai+i=1nbi\sum_{i=1}^{n} (a_i + b_i) = \sum_{i=1}^{n} a_i + \sum_{i=1}^{n} b_i (sums split apart)

You'll also use these closed-form formulas frequently:

  • i=1ni=n(n+1)2\sum_{i=1}^{n} i = \frac{n(n+1)}{2}
  • i=1ni2=n(n+1)(2n+1)6\sum_{i=1}^{n} i^2 = \frac{n(n+1)(2n+1)}{6}
  • i=1ni3=(n(n+1)2)2\sum_{i=1}^{n} i^3 = \left(\frac{n(n+1)}{2}\right)^2

These let you evaluate Riemann sums without plugging in every single term.

Summations with sigma notation, Approximating Areas · Calculus

Approximating Areas

Summations with sigma notation, Unit 1: Introduction to integration – National Curriculum (Vocational) Mathematics Level 4

Area estimation using rectangles

The core idea: to find the area under a curve y=f(x)y = f(x) from x=ax = a to x=bx = b, you approximate it with rectangles whose areas are easy to compute.

Setting up the rectangles:

  1. Divide the interval [a,b][a, b] into nn subintervals of equal width Δx=ban\Delta x = \frac{b - a}{n}.

  2. On each subinterval, build a rectangle with width Δx\Delta x.

  3. Choose a point in each subinterval to determine the rectangle's height. The three standard choices are:

    • Left endpoint: use f(xi1)f(x_{i-1}), the function value at the left edge of each subinterval
    • Right endpoint: use f(xi)f(x_i), the function value at the right edge
    • Midpoint: use f ⁣(xi1+xi2)f\!\left(\frac{x_{i-1} + x_i}{2}\right), the function value at the center
  4. Each rectangle has area Ai=f(xi)ΔxA_i = f(x_i^*) \cdot \Delta x, where xix_i^* is your chosen sample point.

  5. Sum all rectangle areas: Ai=1nf(xi)ΔxA \approx \sum_{i=1}^{n} f(x_i^*)\,\Delta x.

Quick example: Approximate the area under f(x)=x2f(x) = x^2 on [0,2][0, 2] using n=4n = 4 right-endpoint rectangles.

  • Δx=204=0.5\Delta x = \frac{2 - 0}{4} = 0.5
  • Right endpoints: x=0.5,1.0,1.5,2.0x = 0.5, 1.0, 1.5, 2.0
  • Heights: f(0.5)=0.25f(0.5) = 0.25, f(1)=1f(1) = 1, f(1.5)=2.25f(1.5) = 2.25, f(2)=4f(2) = 4
  • Area (0.25+1+2.25+4)(0.5)=7.5(0.5)=3.75\approx (0.25 + 1 + 2.25 + 4)(0.5) = 7.5(0.5) = 3.75

The exact answer is 832.667\frac{8}{3} \approx 2.667, so this right-endpoint sum overestimates because x2x^2 is increasing on [0,2][0, 2]. 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:

i=1nf(xi)Δx\sum_{i=1}^{n} f(x_i^*)\,\Delta x

where Δx=ban\Delta x = \frac{b-a}{n} and xix_i^* is a sample point in the ii-th subinterval.

The type of Riemann sum depends on your choice of sample point:

TypeSample point xix_i^*Tends to... (for increasing ff)
Left Riemann sumxi=a+(i1)Δxx_i^* = a + (i-1)\Delta xUnderestimate
Right Riemann sumxi=a+iΔxx_i^* = a + i\,\Delta xOverestimate
Midpoint Riemann sumxi=a+(i12)Δxx_i^* = a + (i - \tfrac{1}{2})\Delta xBe more accurate than left or right
The connection to the definite integral is the key takeaway: as you use more and more rectangles (nn \to \infty), the Riemann sum converges to the exact area.

abf(x)dx=limni=1nf(xi)Δx\int_a^b f(x)\,dx = \lim_{n \to \infty} \sum_{i=1}^{n} f(x_i^*)\,\Delta x

This limit exists (and gives the same value regardless of sample point choice) whenever ff is continuous on [a,b][a, b].

Approximation techniques and limits

The whole point of this section is the transition from approximation to exact value through limits.

A partition of [a,b][a, b] is just the set of points that divide the interval into subintervals: a=x0<x1<x2<<xn=ba = x_0 < x_1 < x_2 < \cdots < x_n = b. With equal subintervals, each has width Δx\Delta x, and the endpoints are xi=a+iΔxx_i = a + i\,\Delta x.

Here's the process for finding an exact area using a limit of Riemann sums:

  1. Write the Riemann sum in sigma notation using the formulas for xix_i and Δx\Delta x.
  2. Expand f(xi)f(x_i^*) and simplify using summation formulas (the closed-form formulas from the sigma notation section).
  3. Take limn\lim_{n \to \infty} of the resulting expression.

For instance, to find 01x2dx\int_0^1 x^2\,dx using right endpoints:

  1. Δx=1n\Delta x = \frac{1}{n}, and xi=inx_i = \frac{i}{n}
  2. i=1n(in)21n=1n3i=1ni2=1n3n(n+1)(2n+1)6=(n+1)(2n+1)6n2\sum_{i=1}^{n} \left(\frac{i}{n}\right)^2 \cdot \frac{1}{n} = \frac{1}{n^3}\sum_{i=1}^{n} i^2 = \frac{1}{n^3} \cdot \frac{n(n+1)(2n+1)}{6} = \frac{(n+1)(2n+1)}{6n^2}
  3. limn(n+1)(2n+1)6n2=limn2n2+3n+16n2=26=13\lim_{n \to \infty} \frac{(n+1)(2n+1)}{6n^2} = \lim_{n \to \infty} \frac{2n^2 + 3n + 1}{6n^2} = \frac{2}{6} = \frac{1}{3}

So 01x2dx=13\int_0^1 x^2\,dx = \frac{1}{3}. This is exactly what the Fundamental Theorem of Calculus will confirm later, but here you've derived it from first principles using Riemann sums.

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 →