Chapter 5: Applications of Integration
| Course: MATH162 (Calculus II) | Textbook: Stewart Calculus 9th Edition, Chapter 5 |
The Big Picture
You’ve learned to compute definite integrals. Now we ask: what can you do with them?
This chapter reveals a powerful pattern: whenever a quantity can be approximated by a Riemann sum, its exact value is a definite integral. This single idea—slice, approximate, sum, take limits—handles an astonishing range of problems:
| Section | Question | Key Insight |
|---|---|---|
| 5.1 | How much area lies between two curves? | Area = $\int (\text{top} - \text{bottom})\,dx$ |
| 5.2 | What’s the volume of an irregularly-shaped solid? | Volume = $\int A(x)\,dx$ where $A(x)$ is cross-sectional area |
| 5.3 | Can we compute the same volume differently? | Cylindrical shells: Volume = $\int 2\pi rh\,dx$ |
| 5.4 | How much energy does it take to move something? | Work = $\int F(x)\,dx$ |
| 5.5 | What’s the “typical” value of a function? | Average = $\frac{1}{b-a}\int_a^b f(x)\,dx$ |
The underlying strategy is always the same: break the problem into infinitely many tiny pieces, each of which you can handle, then add them all up.
Chapter Flow
graph TD
subgraph "Geometry"
A["§5.1 Areas<br/>Between Curves"]
B["§5.2 Volumes<br/>(Disk/Washer)"]
C["§5.3 Volumes<br/>(Shells)"]
end
subgraph "Physics"
D["§5.4 Work"]
end
subgraph "Analysis"
E["§5.5 Average<br/>Value"]
end
A --> B
B --> C
B --> D
C --> D
D --> E
A --> E
style A fill:#d1fae5,stroke:#10b981,stroke-width:2px
style B fill:#dbeafe,stroke:#3b82f6,stroke-width:2px
style C fill:#dbeafe,stroke:#3b82f6,stroke-width:2px
style D fill:#fef3c7,stroke:#f59e0b,stroke-width:2px
style E fill:#fce7f3,stroke:#ec4899,stroke-width:2px
click A "sec-5-1.html"
click B "sec-5-2.html"
click C "sec-5-3.html"
click D "sec-5-4.html"
click E "sec-5-5.html"
Sections
Section 5.1: Areas Between Curves
Core formula: $A = \int_a^b [\text{top} - \text{bottom}]\,dx$
Find the area of a region bounded by two curves. Choose whether to integrate with respect to $x$ or $y$ based on which is simpler.
| Skill | Description | Difficulty |
|---|---|---|
| Area Between Curves (Horizontal Rectangles) | Applications of Integration | Intermediate |
| Area Between Curves (Integrating with Respect to x) | Applications of Integration | Beginner |
| Area Between Curves (Integrating with Respect to y) | Applications of Integration | Intermediate |
| Area Between Curves (Vertical Rectangles) | Applications of Integration | Beginner |
| Area Between Curves That Cross | Applications of Integration | Intermediate |
| Finding Intersection Points for Area Problems | Applications of Integration | Intermediate |
Section 5.2: Volumes
Core formula: $V = \int_a^b A(x)\,dx$
Compute volumes by slicing a solid into thin cross-sections. Special cases include:
- Disk method: $A(x) = \pi r^2$ when rotating a region about an axis it touches
- Washer method: $A(x) = \pi(R^2 - r^2)$ when rotating a region about an axis it doesn’t touch
| Skill | Description | Difficulty |
|---|---|---|
| Disk Method | Applications of Integration | Intermediate |
| Volume by Slicing | Applications of Integration | Intermediate |
| Volumes with Known Cross-Sections | Applications of Integration | Advanced |
| Washer Method | Applications of Integration | Intermediate |
Section 5.3: Volumes by Cylindrical Shells
Core formula: $V = \int_a^b 2\pi rh\,dx$
An alternative to disks/washers: slice parallel to the axis of rotation, creating cylindrical shells. Often simpler when solving for $x$ would be difficult.
| Skill | Description | Difficulty |
|---|---|---|
| Shell Method: Non-Standard Axes of Rotation | Volumes of Revolution | Intermediate |
| Shell Method: Rotation About the y-axis | Volumes of Revolution | Intermediate |
| Shells vs. Washers: Choosing the Right Method | Volumes of Revolution | Intermediate |
| The Shell Method Formula | Volumes of Revolution | Beginner |
Section 5.4: Work
Core formula: $W = \int_a^b F(x)\,dx$
Compute the energy required to move an object when force varies with position. Classic applications include springs (Hooke’s Law), cables/chains, and pumping water.
| Skill | Description | Difficulty |
|---|---|---|
| Pumping Work and Lifting Problems | Applications of Integration | Advanced |
| Spring Work and Hooke’s Law | Applications of Integration | Intermediate |
| Work with Constant and Variable Forces | Applications of Integration | Intermediate |
Section 5.5: Average Value of a Function
Core formula: $f_{\text{avg}} = \frac{1}{b-a}\int_a^b f(x)\,dx$
Find the “typical” value of a continuous function over an interval. The Mean Value Theorem for Integrals guarantees that $f$ actually achieves this average value at some point.
| Skill | Description | Difficulty |
|---|---|---|
| Average Value of a Function | Applications of Integration | Beginner |
| Mean Value Theorem for Integrals | Applications of Integration | Intermediate |
The Unifying Theme
Every formula in this chapter follows the same pattern:
\[\text{Quantity} = \lim_{n \to \infty} \sum_{i=1}^{n} (\text{small piece}) = \int (\text{differential element})\]| Quantity | Differential Element | What You Sum |
|---|---|---|
| Area | $[f(x) - g(x)]\,dx$ | Thin rectangles |
| Volume (slices) | $A(x)\,dx$ | Thin disks or other cross-sections |
| Volume (shells) | $2\pi rh\,dx$ | Thin cylindrical tubes |
| Work | $F(x)\,dx$ | Tiny force × tiny displacement |
| Average | $f(x)\,dx$ | Function values, then divide by length |
Once you see this pattern, you can apply it to new situations beyond the textbook.
Prerequisites
Before starting Chapter 5, ensure you can:
- Compute definite integrals using the Fundamental Theorem of Calculus
- Apply u-substitution to evaluate integrals
- Find where two curves intersect (solve $f(x) = g(x)$)
- Sketch graphs of polynomial, exponential, and trigonometric functions
- Set up and interpret Riemann sums
Review: Chapter 4: Integrals
Study Tips
-
Draw pictures. Every problem in this chapter has a geometric interpretation. Sketch before you set up the integral.
-
Identify what varies. Ask: what quantity changes as I move through the region or solid? That’s your variable of integration.
-
Check dimensions. Area integrals should give square units; volume integrals give cubic units; work gives energy units (joules or ft-lb).
-
Compare methods. Often there’s more than one way to set up a problem. Try both and see which is simpler.
-
Verify with special cases. Does your volume formula give $\frac{4}{3}\pi r^3$ for a sphere? Does your work formula give $Fd$ when force is constant?
| Previous | Up | Next |
|---|---|---|
| Chapter 4 | Home | Chapter 6 |