Chapter 8: Applications of Integration

AP Calculus AB & BC · MathHub · 2026

Learning Objectives

7.1 Area Between Two Curves

The area between two curves $y = f(x)$ (top) and $y = g(x)$ (bottom) from $x = a$ to $x = b$ is:

Area Between Curves Formula

$$A = \int_a^b \bigl[f(x) - g(x)\bigr]\,dx \quad \text{where } f(x) \ge g(x) \text{ on } [a,b]$$

If the curves switch which is on top, split the integral at the crossing point(s) and handle each piece separately.

Example 7.1 — Area Between Two Curves

Find the area enclosed by $y = x^2$ and $y = x + 2$.

Step 1 — Find intersection points: $x^2 = x + 2 \Rightarrow x^2 - x - 2 = 0 \Rightarrow (x-2)(x+1) = 0$
Intersections at $x = -1$ and $x = 2$.

Step 2 — Determine which is on top: At $x = 0$: $f(0) = 2$ (line) and $g(0) = 0$ (parabola). So $y = x+2$ is on top on $[-1, 2]$.

Step 3 — Integrate:

$$A = \int_{-1}^{2} \bigl[(x+2) - x^2\bigr]\,dx = \int_{-1}^{2}(x + 2 - x^2)\,dx$$

$$= \left[\frac{x^2}{2} + 2x - \frac{x^3}{3}\right]_{-1}^{2}$$

$$= \left(2 + 4 - \frac{8}{3}\right) - \left(\frac{1}{2} - 2 + \frac{1}{3}\right) = \frac{10}{3} - \left(-\frac{7}{6}\right) = \frac{20}{6} + \frac{7}{6} = \mathbf{\frac{27}{6} = \frac{9}{2}}$$

Interactive: Area between $y = x + 2$ and $y = x^2$ — the shaded region has area 9/2

Figure 7.1 — Area Between $y = x^2$ and $y = x + 2$

TRY IT

Find the area enclosed by $y = 4 - x^2$ and $y = x^2 - 4$.

Show Answer
Intersection: $4-x^2=x^2-4 \Rightarrow 8=2x^2 \Rightarrow x=\pm 2$
Top function: $4-x^2 \ge x^2-4$ on $[-2,2]$
$A=\int_{-2}^{2}[(4-x^2)-(x^2-4)]\,dx=\int_{-2}^{2}(8-2x^2)\,dx$
$=\left[8x-\dfrac{2x^3}{3}\right]_{-2}^{2}=(16-\frac{16}{3})-(-16+\frac{16}{3})=\dfrac{64}{3}$

Area with Multiple Intersection Points

Example 7.2 — Curves That Cross

Find the total area between $f(x) = \sin x$ and $g(x) = 0$ on $[0, 2\pi]$.

On $[0,\pi]$: $\sin x \ge 0$, so area = $\int_0^\pi \sin x\,dx = [-\cos x]_0^\pi = 2$

On $[\pi, 2\pi]$: $\sin x \le 0$, so area = $\int_\pi^{2\pi}|\sin x|\,dx = \int_\pi^{2\pi}(-\sin x)\,dx = [\cos x]_\pi^{2\pi} = 2$

Total area = 2 + 2 = 4

Note: $\int_0^{2\pi}\sin x\,dx = 0$ gives net signed area (not total area). Always split at zeros when computing total area.

7.2 Volume: The Disk Method

When a region is rotated about the $x$-axis (or another axis), it sweeps out a solid. The Disk Method computes the volume by integrating cross-sectional areas.

Disk Method (Rotation About the $x$-axis)

If $f(x) \ge 0$ on $[a, b]$, rotating $y = f(x)$ about the $x$-axis gives a solid with volume:

$$V = \pi \int_a^b [f(x)]^2\,dx$$

Each cross-section is a disk (circle) with radius $r = f(x)$ and area $\pi r^2 = \pi[f(x)]^2$.

Example 7.3 — Volume by Disk Method

Find the volume of the solid formed by rotating $y = \sqrt{x}$ about the $x$-axis, from $x=0$ to $x=4$.

$$V = \pi\int_0^4 (\sqrt{x})^2\,dx = \pi\int_0^4 x\,dx = \pi\left[\frac{x^2}{2}\right]_0^4 = \pi \cdot 8 = \mathbf{8\pi}$$

Area under $y = \sqrt{x}$ from 0 to 4 — rotate this region about the $x$-axis to get a solid of volume $8\pi$

Figure 7.2 — Region for Disk Method: $y = \sqrt{x}$ on $[0,4]$

7.3 Volume: The Washer Method

When the region between two curves is rotated, each cross-section is an annulus (washer) — a disk with a hole. The area of a washer is $\pi(R^2 - r^2)$, where $R$ is the outer radius and $r$ is the inner radius.

Washer Method (Rotation About the $x$-axis)

If $f(x) \ge g(x) \ge 0$ on $[a, b]$, rotating about the $x$-axis gives:

$$V = \pi \int_a^b \bigl([f(x)]^2 - [g(x)]^2\bigr)\,dx$$

$R = f(x)$ = outer radius; $r = g(x)$ = inner radius (the hole).

Example 7.4 — Volume by Washer Method

Rotate the region between $y = x$ and $y = x^2$ about the $x$-axis (region on $[0,1]$).

On $[0,1]$: $x \ge x^2$, so $f(x) = x$ (outer) and $g(x) = x^2$ (inner).

$$V = \pi\int_0^1 (x^2 - x^4)\,dx = \pi\left[\frac{x^3}{3} - \frac{x^5}{5}\right]_0^1 = \pi\left(\frac{1}{3} - \frac{1}{5}\right) = \pi \cdot \frac{2}{15} = \mathbf{\frac{2\pi}{15}}$$

TRY IT

Find the volume of the solid formed by rotating the region between $y = \sqrt{x}$ and $y = x$ about the $x$-axis.

Show Answer
Intersections: $\sqrt{x}=x \Rightarrow x=0,1$. On [0,1]: $\sqrt{x}\ge x$.
$V=\pi\int_0^1[(\sqrt{x})^2-x^2]\,dx=\pi\int_0^1(x-x^2)\,dx$
$=\pi\left[\dfrac{x^2}{2}-\dfrac{x^3}{3}\right]_0^1=\pi\left(\dfrac{1}{2}-\dfrac{1}{3}\right)=\dfrac{\pi}{6}$

Region between $y = \sqrt{x}$ and $y = x$ — rotating this region about the $x$-axis gives the washer method

Figure 7.3 — Washer Method: Region Between $y = \sqrt{x}$ and $y = x$

7.4 Motion and Accumulation

Integration naturally models accumulation: any rate function, integrated, gives the total accumulated quantity.

Displacement vs. Total Distance

Given velocity $v(t)$:

If $v(t) > 0$: moving right/up. If $v(t) < 0$: moving left/down.

Example 7.5 — Displacement vs. Distance

A particle moves with $v(t) = t^2 - 3t + 2$ m/s on $[0, 3]$.

Zeros: $t^2-3t+2=(t-1)(t-2)=0$ at $t=1, 2$.

Displacement:

$$\int_0^3 (t^2-3t+2)\,dt = \left[\frac{t^3}{3} - \frac{3t^2}{2} + 2t\right]_0^3 = 9 - \frac{27}{2} + 6 = \frac{3}{2}$$

Total distance: Check sign on each interval:

Total distance = $\frac{5}{6} + \frac{1}{6} + \frac{5}{6} = \mathbf{\frac{11}{6}}$ m

AP Exam Tip: A very common Free Response question asks for (a) position at a given time, (b) total distance, (c) times when the particle changes direction. Always find zeros of $v(t)$ first, then check signs of $v$ in each subinterval. Remember: the particle changes direction only when $v$ changes sign (not just equals zero).

Practice Problems

1

Find the area of the region enclosed by $y = 3 - x^2$ and $y = -1$.

Show Solution
Intersection: $3-x^2=-1 \Rightarrow x^2=4 \Rightarrow x=\pm 2$
$A=\int_{-2}^{2}[(3-x^2)-(-1)]\,dx=\int_{-2}^{2}(4-x^2)\,dx$
$=\left[4x-\dfrac{x^3}{3}\right]_{-2}^{2}=(8-\frac{8}{3})-(-8+\frac{8}{3})=\dfrac{32}{3}$
2

Find the area of the region bounded by $y = x^3$, $y = x$, for $x \ge 0$.

Show Solution
Intersections for $x\ge 0$: $x^3=x \Rightarrow x(x^2-1)=0 \Rightarrow x=0,1$
On [0,1]: $x \ge x^3$
$A=\int_0^1(x-x^3)\,dx=\left[\dfrac{x^2}{2}-\dfrac{x^4}{4}\right]_0^1=\dfrac{1}{4}$
3

Find the volume when $y = x^2$ on $[0, 3]$ is rotated about the $x$-axis.

Show Solution
Disk method: $V=\pi\int_0^3 (x^2)^2\,dx=\pi\int_0^3 x^4\,dx$
$=\pi\left[\dfrac{x^5}{5}\right]_0^3=\pi\cdot\dfrac{243}{5}=\dfrac{243\pi}{5}$
4

Rotate the region between $y = x^2 + 1$ and $y = 1$ from $x=0$ to $x=2$ about the $x$-axis. Find the volume (Washer Method).

Show Solution
Outer radius: $R=x^2+1$; Inner radius: $r=1$
$V=\pi\int_0^2[(x^2+1)^2-1]\,dx=\pi\int_0^2(x^4+2x^2)\,dx$
$=\pi\left[\dfrac{x^5}{5}+\dfrac{2x^3}{3}\right]_0^2=\pi\left(\dfrac{32}{5}+\dfrac{16}{3}\right)=\pi\cdot\dfrac{96+80}{15}=\dfrac{176\pi}{15}$
5

A particle has $v(t) = 6 - 2t$ m/s. Find (a) displacement on $[0, 5]$, (b) total distance on $[0, 5]$.

Show Solution
Zero of $v$: $t=3$
(a) Displacement: $\int_0^5(6-2t)\,dt=[6t-t^2]_0^5=30-25=\mathbf{5}$ m
(b) v>0 on [0,3], v<0 on [3,5]:
$\int_0^3(6-2t)\,dt=[6t-t^2]_0^3=18-9=9$
$\int_3^5(2t-6)\,dt=[t^2-6t]_3^5=(25-30)-(9-18)=(-5)-(-9)=4$
Total distance = 9+4=13 m
6

Water flows into a tank at rate $R(t) = 4 + 2t$ gallons per minute. How much water enters the tank from $t=1$ to $t=4$ minutes?

Show Solution
$\int_1^4(4+2t)\,dt=[4t+t^2]_1^4=(16+16)-(4+1)=32-5=\mathbf{27}$ gallons
7

(AP Free Response) A particle moves with $v(t) = t^2 - 5t + 4$ on $[0,4]$. (a) Find all times when the particle changes direction. (b) Find total distance on $[0,4]$. (c) Find displacement on $[0,4]$.

Show Solution
(a) $v(t)=(t-1)(t-4)=0$ at $t=1$ and $t=4$. $v$ changes sign at $t=1$ (pos→neg) and $t=4$ (neg→pos — endpoint). Changes direction at $t=1$.

(b) [0,1]: v>0: $\int_0^1(t^2-5t+4)=[t^3/3-5t^2/2+4t]_0^1=1/3-5/2+4=11/6$
[1,4]: v≤0: $\int_1^4|v|\,dt=\int_1^4(5t-t^2-4)=[5t^2/2-t^3/3-4t]_1^4$
$=(40-64/3-16)-(5/2-1/3-4)=(-40/3)-(11/6... wait)
= (40-21.33-16)-(2.5-0.33-4) = 2.67-(-1.83) = 4.5 = 9/2
Total = 11/6+9/2 = 11/6+27/6 = 38/6 = 19/3

(c) Displacement = $\int_0^4(t^2-5t+4)\,dt=[t^3/3-5t^2/2+4t]_0^4$
$=64/3-40+16=64/3-24=64/3-72/3=\mathbf{-8/3}$ m
8

Find the area bounded by $y = e^x$, $y = 1$, $x = 0$, and $x = 2$. Then find the volume when this region is rotated about the $x$-axis (Washer Method).

Show Solution
Area: $\int_0^2(e^x-1)\,dx=[e^x-x]_0^2=(e^2-2)-(1-0)=e^2-3\approx 4.39$

Volume (Washer): Outer: $e^x$, Inner: $1$
$V=\pi\int_0^2(e^{2x}-1)\,dx=\pi\left[\dfrac{e^{2x}}{2}-x\right]_0^2$
$=\pi\left[(\dfrac{e^4}{2}-2)-\dfrac{1}{2}\right]=\pi\left(\dfrac{e^4-1}{2}-2\right)=\dfrac{\pi(e^4-5)}{2}$

📋 Chapter Summary

Core Applications

Area Between Curves

$A = \displaystyle\int_a^b [f(x) - g(x)]\,dx$ where $f(x) \geq g(x)$ on $[a,b]$. Find intersection points to determine limits.

Disk Method

Rotating $y=f(x)$ around the $x$-axis: $V = \pi\displaystyle\int_a^b [f(x)]^2\,dx$. Each cross-section is a disk of radius $f(x)$.

Washer Method

Rotating region between two curves: $V = \pi\displaystyle\int_a^b \left([R(x)]^2 - [r(x)]^2\right)\,dx$ where $R$ is outer, $r$ is inner radius.

Shell Method

Rotating around the $y$-axis: $V = 2\pi\displaystyle\int_a^b x\,f(x)\,dx$. Useful when disk/washer requires solving for $x$.

Key Formulas

Area Between Curves

$A = \displaystyle\int_a^b |f(x) - g(x)|\,dx$

Arc Length

$L = \displaystyle\int_a^b \sqrt{1 + [f'(x)]^2}\,dx$

Work (variable force)

$W = \displaystyle\int_a^b F(x)\,dx$ — total work equals the integral of force over displacement.

Average Value

$f_{\text{avg}} = \dfrac{1}{b-a}\displaystyle\int_a^b f(x)\,dx$

Choosing a Volume Method

  1. Axis of rotation is $x$-axis (or horizontal) → Disk or Washer method (integrate in $x$)
  2. Axis of rotation is $y$-axis (or vertical) → Shell method (integrate in $x$) or Disk/Washer in $y$
  3. Single curve rotated → Disk method: $V = \pi\int R^2\,dx$
  4. Region between two curves → Washer method: $V = \pi\int(R^2 - r^2)\,dx$
  5. Shell method advantage → use when the integrand is simpler in terms of $x$ but axis is $y$

📘 Key Terms

Area Between Curves The integral $\int_a^b [f(x)-g(x)]\,dx$ giving the area of the region bounded between two functions.
Disk Method $V = \pi\int[f(x)]^2\,dx$ — volume of revolution formed by rotating a single curve around an axis.
Washer Method $V = \pi\int(R^2 - r^2)\,dx$ — volume of revolution with a hole, formed by rotating a region between two curves.
Shell Method $V = 2\pi\int x\,f(x)\,dx$ — volume computed by summing cylindrical shells rather than disks. Often easier when axis is vertical.
Arc Length The length of a curve $y=f(x)$ from $a$ to $b$: $L = \int_a^b\sqrt{1+(f')^2}\,dx$.
Average Value The mean value of $f$ over $[a,b]$: $f_{\text{avg}} = \frac{1}{b-a}\int_a^b f(x)\,dx$.
← Chapter 6: Integration All Chapters