Chapter 8: Applications of Integration
Integration is far more than an algebraic exercise in finding antiderivatives. Its real power lies in the geometric and physical problems it can solve. In this chapter we use definite integrals to compute areas between curves, volumes of three-dimensional solids, arc lengths, and average values of functions. These topics appear every year on the AP Calculus exam, and volumes of revolution in particular are among the most heavily tested concepts on both the AB and BC exams.
Table of Contents
8.1 Area Between Curves
When two continuous functions $f(x)$ and $g(x)$ are defined on the interval $[a, b]$ and $f(x) \ge g(x)$ throughout that interval, the region trapped between their graphs has a well-defined area. We compute it by slicing the region into infinitely thin vertical rectangles, each of height $f(x) - g(x)$ and width $dx$, then summing them up.
If $f(x) \ge g(x)$ on $[a, b]$, the area of the region between the curves is $$A = \int_a^b \bigl[f(x) - g(x)\bigr]\,dx$$ The rule is always top minus bottom. If the curves cross, you must split the integral at each intersection point and take the absolute value of each piece (or equivalently, always subtract the lower curve from the upper one on each subinterval).
Sometimes the region is easier to describe using horizontal slices. In that case, we express the boundary curves as functions of $y$ and integrate with respect to $y$.
If $x = h(y)$ is to the right of $x = k(y)$ on $[c, d]$, then $$A = \int_c^d \bigl[h(y) - k(y)\bigr]\,dy$$ The rule becomes right minus left.
Solution: First check which function is on top. For $x$ in $[-1, 2]$, we have $f(x) \ge g(x)$ (you can verify at a sample point like $x = 0$: $f(0) = 2 > 0 = g(0)$). So: $$A = \int_{-1}^{2}\bigl[(x+2) - x^2\bigr]\,dx = \int_{-1}^{2}\bigl(-x^2 + x + 2\bigr)\,dx$$ $$= \left[-\frac{x^3}{3} + \frac{x^2}{2} + 2x\right]_{-1}^{2}$$ At $x = 2$: $-\frac{8}{3} + 2 + 4 = -\frac{8}{3} + 6 = \frac{10}{3}$.
At $x = -1$: $\frac{1}{3} + \frac{1}{2} - 2 = \frac{2 + 3 - 12}{6} = -\frac{7}{6}$.
$$A = \frac{10}{3} - \left(-\frac{7}{6}\right) = \frac{10}{3} + \frac{7}{6} = \frac{20}{6} + \frac{7}{6} = \frac{27}{6} = \frac{9}{2}$$
Solution: First find the intersection points. Set $x^2 = 2x$, so $x^2 - 2x = 0$, giving $x(x-2) = 0$. The curves intersect at $x = 0$ and $x = 2$. Between these values, $2x \ge x^2$ (check $x = 1$: $2 > 1$). Therefore: $$A = \int_0^2 (2x - x^2)\,dx = \left[x^2 - \frac{x^3}{3}\right]_0^2 = 4 - \frac{8}{3} = \frac{12 - 8}{3} = \frac{4}{3}$$
Solution: Find intersections: set $y^2 = y + 2$, so $y^2 - y - 2 = 0$, giving $(y-2)(y+1) = 0$. The curves meet at $y = -1$ and $y = 2$. For $y$ in $[-1, 2]$, the line $x = y + 2$ is to the right of the parabola $x = y^2$ (check $y = 0$: $2 > 0$). Using horizontal slices (right minus left): $$A = \int_{-1}^{2}\bigl[(y + 2) - y^2\bigr]\,dy = \left[\frac{y^2}{2} + 2y - \frac{y^3}{3}\right]_{-1}^{2}$$ At $y = 2$: $2 + 4 - \frac{8}{3} = 6 - \frac{8}{3} = \frac{10}{3}$.
At $y = -1$: $\frac{1}{2} - 2 + \frac{1}{3} = -\frac{7}{6}$.
$$A = \frac{10}{3} + \frac{7}{6} = \frac{20 + 7}{6} = \frac{27}{6} = \frac{9}{2}$$
Area between curves: drag the sliders to adjust the bounds a and b. The shaded region shows ∫[f(x)−g(x)] dx where f(x)=x+2 (blue) and g(x)=x² (red).
Area between curves: shaded region = ∫−12 [(x+2) − x²] dx = 9/2
8.2 Volumes of Revolution: Disk and Washer Method
When a region in the plane is revolved around an axis, it sweeps out a three-dimensional solid of revolution. The disk/washer method computes the volume of such a solid by slicing it into thin circular disks (or annular washers) perpendicular to the axis of rotation, then integrating the cross-sectional areas.
When a region bounded by $y = f(x)$ and the $x$-axis is revolved about the $x$-axis, each cross section is a disk of radius $R(x) = f(x)$: $$V = \pi \int_a^b \bigl[R(x)\bigr]^2\,dx$$
When the region between $y = f(x)$ (outer) and $y = g(x)$ (inner) is revolved about the $x$-axis, each cross section is an annular ring with outer radius $R(x) = f(x)$ and inner radius $r(x) = g(x)$: $$V = \pi \int_a^b \Bigl(\bigl[R(x)\bigr]^2 - \bigl[r(x)\bigr]^2\Bigr)\,dx$$
The key to setting up these integrals correctly is to identify two things: (1) the axis of rotation, and (2) the distance from each boundary curve to that axis. When revolving around a horizontal axis, you integrate with respect to $x$. When revolving around a vertical axis using disk/washer, you integrate with respect to $y$.
Solution: Each cross section perpendicular to the $x$-axis is a disk of radius $R(x) = \sqrt{x}$. $$V = \pi \int_0^4 \bigl(\sqrt{x}\bigr)^2\,dx = \pi \int_0^4 x\,dx = \pi\left[\frac{x^2}{2}\right]_0^4 = \pi \cdot \frac{16}{2} = 8\pi$$
Solution: The curves intersect where $x^2 = x$, i.e., at $x = 0$ and $x = 1$. On $[0, 1]$, $y = x \ge y = x^2$, so when revolved about the $x$-axis, $R(x) = x$ (outer) and $r(x) = x^2$ (inner). $$V = \pi \int_0^1 \bigl(x^2 - x^4\bigr)\,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} = \frac{2\pi}{15}$$
Solution: Since we revolve around the $y$-axis, we slice perpendicular to the $y$-axis, giving disks in $y$. Express the curve as $x = \sqrt{y}$, so each disk has radius $R(y) = \sqrt{y}$. $$V = \pi \int_0^4 \bigl(\sqrt{y}\bigr)^2\,dy = \pi \int_0^4 y\,dy = \pi\left[\frac{y^2}{2}\right]_0^4 = 8\pi$$
Disk method: y = √x revolved about the x-axis. Use the slider to move the representative disk along the curve and observe how radius R(x) = √x changes.
Disk method: revolving y = √x about the x-axis. Each cross-section is a disk of radius R(x) = √x.
8.3 Volumes of Revolution: Shell Method BC
The shell method provides an alternative approach to computing volumes of revolution. Instead of slicing perpendicular to the axis of rotation (as with disks/washers), we slice parallel to the axis, producing thin cylindrical shells. Each shell is "unrolled" into a flat rectangular slab whose area is $2\pi \cdot \text{radius} \cdot \text{height}$.
When the region under $y = f(x)$ from $x = a$ to $x = b$ (where $0 \le a < b$) is revolved about the $y$-axis: $$V = 2\pi \int_a^b x \cdot f(x)\,dx$$ Here $x$ is the shell radius (distance from the shell to the $y$-axis) and $f(x)$ is the shell height.
The shell method is particularly useful when the disk/washer setup would require solving for $x$ in terms of $y$ and the resulting expression is complicated, or when the region would need to be split into multiple integrals using the washer approach but can be handled in a single integral using shells.
- If revolving around the $y$-axis and your curves are given as $y = f(x)$, shells (integrate in $x$) are often simpler than washers (which would require converting to $x = g(y)$).
- If revolving around the $x$-axis and your curves are given as $y = f(x)$, washers (integrate in $x$) are usually the natural choice.
- As a general rule: if the axis of rotation is parallel to the variable you want to integrate with respect to, use shells. If it is perpendicular, use disks/washers.
Solution: Each cylindrical shell at position $x$ has radius $x$ and height $f(x) = x^2$. $$V = 2\pi \int_0^2 x \cdot x^2\,dx = 2\pi \int_0^2 x^3\,dx = 2\pi\left[\frac{x^4}{4}\right]_0^2 = 2\pi \cdot \frac{16}{4} = 8\pi$$ Note: this matches Example 8.2.3, which found the same volume using the disk method in $y$. Both methods yield $8\pi$.
Solution: The curves intersect at $x = 0$ and $x = 1$, with $x \ge x^2$ on $[0,1]$. Each shell at position $x$ has radius $x$ and height $(x - x^2)$. $$V = 2\pi \int_0^1 x\bigl(x - x^2\bigr)\,dx = 2\pi \int_0^1 \bigl(x^2 - x^3\bigr)\,dx$$ $$= 2\pi\left[\frac{x^3}{3} - \frac{x^4}{4}\right]_0^1 = 2\pi\left(\frac{1}{3} - \frac{1}{4}\right) = 2\pi \cdot \frac{1}{12} = \frac{\pi}{6}$$
8.4 Volumes with Known Cross Sections
Not all volume problems involve revolving a region. Many AP Calculus problems ask you to build a solid whose base is a known planar region and whose cross sections perpendicular to an axis have a specified geometric shape (squares, semicircles, equilateral triangles, etc.). The volume is found by integrating the cross-sectional area.
If the cross section perpendicular to the $x$-axis at position $x$ has area $A(x)$, then: $$V = \int_a^b A(x)\,dx$$ The critical step is expressing $A(x)$ in terms of $x$ using the geometry of the cross-sectional shape and the dimensions of the base region.
Here is a quick reference for common cross-sectional shapes. Let $s(x)$ denote the side length (or diameter) of the cross section at position $x$, which is typically the vertical distance between the curves that form the base:
- Squares: $A(x) = [s(x)]^2$
- Semicircles: $A(x) = \frac{\pi}{8}[s(x)]^2$ (diameter $= s(x)$, so radius $= s/2$, area $= \frac{1}{2}\pi(s/2)^2$)
- Equilateral triangles: $A(x) = \frac{\sqrt{3}}{4}[s(x)]^2$
- Isosceles right triangles (leg as base): $A(x) = \frac{1}{2}[s(x)]^2$
Solution: At each $x$, the side of the square equals the distance from $y = 0$ to $y = \sqrt{x}$, so $s(x) = \sqrt{x}$. The area of each square cross section is: $$A(x) = [\sqrt{x}]^2 = x$$ $$V = \int_0^4 x\,dx = \left[\frac{x^2}{2}\right]_0^4 = \frac{16}{2} = 8$$
Solution: The diameter at position $x$ is $s(x) = x - x^2$. The area of a semicircle with diameter $s$ is $A = \frac{\pi}{8}s^2$: $$A(x) = \frac{\pi}{8}(x - x^2)^2 = \frac{\pi}{8}(x^2 - 2x^3 + x^4)$$ $$V = \frac{\pi}{8}\int_0^1 (x^2 - 2x^3 + x^4)\,dx = \frac{\pi}{8}\left[\frac{x^3}{3} - \frac{x^4}{2} + \frac{x^5}{5}\right]_0^1$$ $$= \frac{\pi}{8}\left(\frac{1}{3} - \frac{1}{2} + \frac{1}{5}\right) = \frac{\pi}{8}\cdot\frac{10 - 15 + 6}{30} = \frac{\pi}{8}\cdot\frac{1}{30} = \frac{\pi}{240}$$
Cross sections with known shape: circular base x²+y²=r² (adjust r with slider) with side length s(x) = 2√(r²−x²). The slider shows the base curve and the side length at position x₀.
Cross sections: circular base x²+y²=4 with square cross-sections perpendicular to the x-axis. Side s(x) = 2√(4−x²).
8.5 Arc Length BC
The arc length formula measures the distance along a curve. It extends the Pythagorean theorem to infinitesimal segments: each tiny piece of the curve has horizontal run $dx$ and vertical rise $dy = f'(x)\,dx$, so its length is $\sqrt{(dx)^2 + (dy)^2} = \sqrt{1 + [f'(x)]^2}\,dx$.
If $f'(x)$ is continuous on $[a, b]$, the length of the curve $y = f(x)$ from $x = a$ to $x = b$ is: $$L = \int_a^b \sqrt{1 + \bigl[f'(x)\bigr]^2}\,dx$$
Arc length integrals are notoriously difficult to evaluate by hand. On the AP exam, you may be asked to set up the integral (without evaluating) or to evaluate it for a carefully chosen function where the algebra simplifies. Functions that produce clean arc length integrals often involve terms like $x^{3/2}$, $x^2$, or $e^x$ that pair nicely inside the square root.
Solution: Compute the derivative: $$f'(x) = \frac{3}{2}\cdot\frac{x^{1/2}}{3} = \frac{\sqrt{x}}{2}$$ Then $[f'(x)]^2 = \frac{x}{4}$, so: $$L = \int_0^5 \sqrt{1 + \frac{x}{4}}\,dx = \int_0^5 \sqrt{\frac{4 + x}{4}}\,dx = \frac{1}{2}\int_0^5 \sqrt{4 + x}\,dx$$ Let $u = 4 + x$, $du = dx$. When $x = 0$, $u = 4$; when $x = 5$, $u = 9$. $$L = \frac{1}{2}\int_4^9 \sqrt{u}\,du = \frac{1}{2}\cdot\frac{2}{3}\bigl[u^{3/2}\bigr]_4^9 = \frac{1}{3}\bigl(27 - 8\bigr) = \frac{19}{3}$$
8.6 Average Value of a Function
The average value of a continuous function over an interval generalizes the familiar concept of an arithmetic mean to a function that takes infinitely many values. Intuitively, it is the height of the rectangle that has the same area as the region under the curve.
If $f$ is continuous on $[a, b]$, the average value of $f$ on $[a, b]$ is: $$f_{\text{avg}} = \frac{1}{b - a}\int_a^b f(x)\,dx$$
If $f$ is continuous on $[a, b]$, there exists at least one $c$ in $(a, b)$ such that: $$f(c) = \frac{1}{b - a}\int_a^b f(x)\,dx$$ In other words, the function actually attains its average value at some point in the interval.
This theorem guarantees that for any continuous function, there is always a point where the function equals its average. On the AP exam, you may be asked to find the value of $c$ where this occurs.
Solution: $$f_{\text{avg}} = \frac{1}{3 - 0}\int_0^3 x^2\,dx = \frac{1}{3}\left[\frac{x^3}{3}\right]_0^3 = \frac{1}{3}\cdot\frac{27}{3} = \frac{9}{3} = 3$$ By the Mean Value Theorem for Integrals, $f(c) = 3$ for some $c$ in $(0, 3)$. Setting $c^2 = 3$ gives $c = \sqrt{3} \approx 1.732$.
Solution: $$f_{\text{avg}} = \frac{1}{\pi - 0}\int_0^{\pi}\sin x\,dx = \frac{1}{\pi}\bigl[-\cos x\bigr]_0^{\pi} = \frac{1}{\pi}\bigl[-\cos\pi + \cos 0\bigr] = \frac{1}{\pi}(1 + 1) = \frac{2}{\pi}$$ To find $c$: set $\sin c = \frac{2}{\pi}$, so $c = \arcsin\!\left(\frac{2}{\pi}\right) \approx 0.690$ radians. Since $\frac{2}{\pi} \approx 0.6366 < 1$, such a $c$ exists in $(0, \pi)$.
8.7 Practice Problems
Test your understanding with these ten problems covering every topic in this chapter. Try each problem on your own before expanding the solution.
Show Solution
On $[-1, 2]$, check $x = 0$: $4 - 0 = 4 > 0 - 0 = 0$, so $y = 4 - x^2$ is on top. $$A = \int_{-1}^{2}\bigl[(4 - x^2) - (x^2 - 2x)\bigr]\,dx = \int_{-1}^{2}(4 + 2x - 2x^2)\,dx$$ $$= \left[4x + x^2 - \frac{2x^3}{3}\right]_{-1}^{2} = \left(8 + 4 - \frac{16}{3}\right) - \left(-4 + 1 + \frac{2}{3}\right)$$ $$= \frac{20}{3} - \left(-\frac{7}{3}\right) = \frac{20}{3} + \frac{7}{3} = 9$$
Show Solution
Show Solution
Outer radius: $R(x) = x - (-1) = x + 1$ (distance from $y = x$ to $y = -1$).
Inner radius: $r(x) = x^2 - (-1) = x^2 + 1$ (distance from $y = x^2$ to $y = -1$).
$$V = \pi\int_0^1\bigl[(x+1)^2 - (x^2+1)^2\bigr]\,dx$$ Expand: $(x+1)^2 = x^2 + 2x + 1$ and $(x^2+1)^2 = x^4 + 2x^2 + 1$. $$= \pi\int_0^1 (x^2 + 2x + 1 - x^4 - 2x^2 - 1)\,dx = \pi\int_0^1(-x^4 - x^2 + 2x)\,dx$$ $$= \pi\left[-\frac{x^5}{5} - \frac{x^3}{3} + x^2\right]_0^1 = \pi\left(-\frac{1}{5} - \frac{1}{3} + 1\right) = \pi\cdot\frac{-3 - 5 + 15}{15} = \frac{7\pi}{15}$$
Show Solution
Show Solution
Show Solution
Show Solution
Show Solution
Show Solution
Show Solution
Radius $= 5 - x$ (distance from $x$ to $x = 5$)
Height $= 4x - x^2$ $$V = 2\pi\int_0^4 (5 - x)(4x - x^2)\,dx = 2\pi\int_0^4 (20x - 5x^2 - 4x^2 + x^3)\,dx$$ $$= 2\pi\int_0^4(20x - 9x^2 + x^3)\,dx = 2\pi\left[10x^2 - 3x^3 + \frac{x^4}{4}\right]_0^4$$ $$= 2\pi\left(160 - 192 + 64\right) = 2\pi(32) = 64\pi$$