Navigation: Wiki Home > Skills > The Area and Distance Problems
How do you find the area of a region with curved boundaries? And how do you find the distance traveled by a car if its velocity keeps changing?
These seem like completely different questions, but they lead to the same mathematical structure: adding up infinitely many infinitely small pieces. This is the fundamental idea behind integration.
We know how to find areas of rectangles (length × width) and distances with constant velocity (velocity × time). The insight of calculus is that we can handle curved boundaries and changing velocities by approximating with rectangles, then taking a limit as the rectangles get smaller and more numerous.
| Property | Value |
|---|---|
| Section | Stewart §4.1 |
| Course | MATH161 |
| Difficulty | Beginner |
| Time | ~15 minutes |
Goal: Find the area $A$ of the region $S$ under the curve $y = f(x)$ from $x = a$ to $x = b$.
y
|
| ___________
| / \
| / \ y = f(x)
| / \
|/ AREA = ? \
+------------------+--→ x
a b
The challenge: We know how to find areas of rectangles, but the region $S$ has a curved boundary.
The solution: Approximate with rectangles!
Step 1: Divide $[a, b]$ into $n$ equal subintervals of width $\Delta x = \frac{b-a}{n}$
Step 2: Build a rectangle on each subinterval
Step 3: Add up the areas of all rectangles
y
|
| +--+--+--+--+
| | | | | | ← Rectangles approximate
| /| | | | |\ the curved region
| / | | | | | \
|/ | | | | | \
+---+--+--+--+--+---→ x
a x₁ x₂ x₃ x₄ b
Δx
Right-endpoint sum $R_n$: Height of each rectangle is $f$ evaluated at the right endpoint $$R_n = f(x_1)\Delta x + f(x_2)\Delta x + \cdots + f(x_n)\Delta x$$
Left-endpoint sum $L_n$: Height of each rectangle is $f$ evaluated at the left endpoint $$L_n = f(x_0)\Delta x + f(x_1)\Delta x + \cdots + f(x_{n-1})\Delta x$$
Key observation: If $f$ is increasing:
If $f$ is decreasing, it's the opposite!
As $n \to \infty$, the rectangles get thinner and more numerous. The approximation gets better and better.
$$\boxed{A = \lim_{n \to \infty} R_n = \lim_{n \to \infty} L_n}$$
This limit defines the area! It can be proven that for continuous functions, both limits exist and are equal.
For $f(x) = x^2$ on $[0, 1]$:
| $n$ | $L_n$ | $R_n$ | True area is between |
|---|---|---|---|
| 4 | 0.21875 | 0.46875 | $0.219 < A < 0.469$ |
| 8 | 0.2734 | 0.3984 | $0.273 < A < 0.398$ |
| 100 | 0.32835 | 0.33835 | $0.328 < A < 0.338$ |
| 1000 | 0.333167 | 0.333835 | Very close to $\frac{1}{3}$! |
As $n \to \infty$: Both $L_n$ and $R_n$ approach $\frac{1}{3}$.
Conclusion: The area under $y = x^2$ from 0 to 1 is exactly $\frac{1}{3}$.
Goal: Find the distance traveled during time interval $[a, b]$ if velocity $v(t)$ varies.
The connection: If velocity were constant: $\text{distance} = \text{velocity} \times \text{time}$
But velocity varies! So we approximate:
$$d = \lim_{n \to \infty} \sum_{i=1}^{n} v(t_i) \Delta t$$
This has the same form as the area formula!
The distance traveled equals the area under the velocity curve.
v(t)
|
| ___
| / \
| / \___ Distance = Area
|___/ \ under v(t)
+----------------→ t
a b
This isn't a coincidence—it's a fundamental principle. Whenever you're accumulating something (area, distance, volume, work, ...), you end up with the same mathematical structure.
Estimate the area under $f(x) = x$ from $x = 0$ to $x = 2$ using:
(a) Two rectangles with right endpoints (b) Two rectangles with left endpoints (c) What is the true area (hint: it's a triangle)?
For the same function $f(x) = x$ on $[0, 2]$, now use four rectangles:
(a) Compute $R_4$ (b) Compute $L_4$ (c) Compare to your answers with two rectangles. Which is closer to the true area of 2?
A runner's velocity (in m/s) is recorded every 2 seconds:
| Time (s) | 0 | 2 | 4 | 6 | 8 | 10 |
|---|---|---|---|---|---|---|
| Velocity (m/s) | 0 | 3 | 5 | 6 | 5 | 4 |
(a) Estimate the distance traveled using left endpoints (b) Estimate using right endpoints (c) Which estimate is an overestimate, and which is an underestimate? (Consider the velocity behavior.)
Let $f$ be a continuous, increasing function on $[a, b]$.
(a) Explain why $L_n < A < R_n$ for any $n$.
(b) Show that $R_n - L_n = \frac{b-a}{n}[f(b) - f(a)]$
(c) Use part (b) to explain why both $L_n$ and $R_n$ approach the same limit as $n \to \infty$.
A car accelerates from rest, and its velocity at time $t$ seconds is $v(t) = 3t$ m/s.
(a) Find a formula for the distance traveled in the first $T$ seconds by evaluating $\lim_{n \to \infty} R_n$ where $R_n$ is the right Riemann sum for $v(t)$ on $[0, T]$.
(b) Verify your answer by computing the area of the region under $v(t) = 3t$ from $t = 0$ to $t = T$ geometrically.
(c) If the car's velocity were instead $v(t) = 3t^2$, what would the distance formula be? (You may use the formula $\sum_{i=1}^n i^2 = \frac{n(n+1)(2n+1)}{6}$.)
The Infinite Subdivision:
Imagine cutting a loaf of bread into slices:
Area under a curve works the same way. Each rectangle is a "slice" of the area. With infinitely many infinitely thin slices, we capture the curved boundary exactly.
The remarkable fact is that this same slicing idea works for distance, volume, work, and countless other quantities.
Looking back:
Looking ahead:
| Previous | Up | Next |
|---|---|---|
| Closed Interval Method | Section Index | Sigma Notation |
Last updated: 2026-01-22