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=1ncโ‹…ai=cโˆ‘i=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=bโˆ’an\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(xiโˆ’1)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โ€‰โฃ(xiโˆ’1+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 xiโˆ—x_i^* is your chosen sample point.

  5. Sum all rectangle areas: Aโ‰ˆโˆ‘i=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=2โˆ’04=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 83โ‰ˆ2.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=bโˆ’an\Delta x = \frac{b-a}{n} and xiโˆ—x_i^* is a sample point in the ii-th subinterval.

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

TypeSample point xiโˆ—x_i^*Tends to... (for increasing ff)
Left Riemann sumxiโˆ—=a+(iโˆ’1)ฮ”xx_i^* = a + (i-1)\Delta xUnderestimate
Right Riemann sumxiโˆ—=a+iโ€‰ฮ”xx_i^* = a + i\,\Delta xOverestimate
Midpoint Riemann sumxiโˆ—=a+(iโˆ’12)ฮ”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 (nโ†’โˆžn \to \infty), the Riemann sum converges to the exact area.

โˆซabf(x)โ€‰dx=limโกnโ†’โˆžโˆ‘i=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 limโกnโ†’โˆž\lim_{n \to \infty} of the resulting expression.

For instance, to find โˆซ01x2โ€‰dx\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)2โ‹…1n=1n3โˆ‘i=1ni2=1n3โ‹…n(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. limโกnโ†’โˆž(n+1)(2n+1)6n2=limโกnโ†’โˆž2n2+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 โˆซ01x2โ€‰dx=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.

2,589 studying โ†’