Applications of Integrals
Applications of integrals all follow the same organizing idea: slice a quantity into small pieces, approximate each piece, and add the pieces by integration. Area, volume, work, mass, average value, arc length, and accumulated change differ in geometry and units, but the integral structure is the same.
The hardest part is often not the integration itself. It is choosing the slice, writing the representative small quantity, identifying correct bounds, and checking units. Once the setup is correct, the definite integral carries out the accumulation.
Definitions
Area between curves is computed by integrating top minus bottom:
when on . If the curves cross, split the interval at intersection points or use absolute value with care.
Volumes by washers use cross-sectional area:
Volumes by cylindrical shells use
Work done by a variable force is
If a density is spread along a line segment, mass is
The average value of on is
Arc length for a smooth curve is
Key results
The slice method has a reliable pattern:
- Draw the region or physical setup.
- Choose the slicing direction.
- Write a representative slice quantity.
- Express everything in one variable.
- Set bounds from the geometry.
- Integrate and attach units.
For area, the representative slice has height top minus bottom and width . For washer volumes, the representative slice is a disk or annulus perpendicular to the axis of rotation. For shell volumes, the representative slice is parallel to the axis of rotation and becomes a cylindrical shell.
The choice between washers and shells is often strategic. If rotating around a horizontal axis, vertical slices often create washers and horizontal slices often create shells. If solving for inverse functions would be messy, shells may avoid that algebra. Both methods must give the same volume when set up correctly.
Work problems require force as a function of position. For a spring obeying Hooke's law,
so stretching from to requires
For lifting a rope or pumping fluid, each slice has a weight and a distance moved. The small work is
Average value is not the same as average of endpoint values. It is the constant height that gives the same area:
Centroid and center of mass formulas also arise from weighted integrals. The same accumulation idea applies, but each small mass is multiplied by a coordinate before integrating.
For volumes, the axis of rotation controls the radius. If the region is rotated about the -axis, radii are usually vertical distances. If it is rotated about the -axis, radii are usually horizontal distances. Rotating around a shifted line such as or requires measuring distance to that line, not simply using the function value.
The washer method squares radii because each slice is an area. Forgetting the square is a dimensional error: a radius has length units, but a cross-sectional area must have square units. The shell method multiplies circumference , height, and thickness. This also gives cubic units.
Work integrals are built from force times distance, but the force may be hidden inside weight density, spring stretch, pressure, or gravity. For pumping fluid, a horizontal slice has volume, weight, and lifting distance. For hydrostatic force, pressure depends on depth, and the force on a thin strip is pressure times area.
Arc length comes from the distance formula. Over a small interval,
Since , this becomes
Integrating adds the small lengths. Arc length integrals are often algebraically harder than area integrals, and many require numerical methods.
Average value provides a way to replace a varying quantity by an equivalent constant over an interval. If temperature varies over time, the average value is the constant temperature that would produce the same accumulated temperature-time product. In probability, expected values are weighted averages written as integrals.
When curves cross, absolute value is not a cosmetic detail. The area between and over is
but evaluating that integral usually requires splitting at intersection points. Without splitting, positive and negative signed regions may cancel and produce a result smaller than the actual geometric area.
For physical applications, a unit check is a reliable setup test. Density times length gives mass. Force times distance gives work. Area times thickness gives volume. If the units of the integrand times the differential do not match the requested quantity, the slice model is probably wrong.
Some applications can be set up in more than one correct way. A volume may be computed with washers in , shells in , or sometimes Pappus's theorem in a more advanced setting. A good setup is not the one that looks most familiar; it is the one that expresses the slice cleanly and keeps the bounds simple.
Visual
| Application | Slice quantity | Integral form | Units |
|---|---|---|---|
| Area between curves | height | square units | |
| Washer volume | annulus area | cubic units | |
| Shell volume | circumference height | cubic units | |
| Work | force | joules or ft-lb | |
| Mass | density | mass units | |
| Arc length | small curve length | length units |
Worked example 1: area between curves
Problem. Find the area enclosed by
Method.
- Find intersections:
Thus and .
- Determine which curve is on top. On ,
So the top curve is and the bottom curve is .
- Set up the area integral:
- Find an antiderivative:
- Evaluate:
- Simplify:
Checked answer. The enclosed area is square unit. The result is positive because the integrand was top minus bottom on the entire interval.
Worked example 2: volume by washers
Problem. Rotate the region under from to around the -axis. Find the volume.
Method.
-
A vertical slice perpendicular to the -axis rotates into a disk.
-
The radius is the function value:
-
There is no hole, so .
-
The washer formula becomes
- Substitute:
- Integrate:
- Evaluate:
Checked answer. The volume is cubic units. The units are cubic because each disk area is multiplied by a thickness .
A shell setup would use horizontal slices and solve . The shell radius would be , the shell height would be , and the bounds would be :
Evaluating gives
matching the washer result.
This agreement is a strong check because the two methods use different slice directions. When two independent setups produce the same value, the radius, height, and bounds are much more likely to be correct.
In applied settings, the final answer should be interpreted in context. A volume is not just ; it is cubic units of the solid generated by the stated rotation.
Code
def midpoint_integral(f, a, b, n=10000):
h = (b - a) / n
total = 0.0
for i in range(n):
total += f(a + (i + 0.5) * h)
return total * h
area = midpoint_integral(lambda x: x - x*x, 0, 1)
volume = midpoint_integral(lambda x: 3.141592653589793 * x, 0, 4)
print(area, volume)
Common pitfalls
- Integrating bottom minus top and getting a negative area.
- Forgetting to split the interval when curves cross.
- Squaring the whole diameter instead of the radius in washer problems.
- Mixing washers and shells without changing the slicing direction.
- Omitting units. Area, volume, work, and mass have different dimensions.
- Using endpoint averages instead of integral average value.
- Treating force as constant in a work problem when the force depends on position.
Connections
- Definite Integrals and the Fundamental Theorem: applied integrals rely on accumulation and exact evaluation.
- Integration Techniques and Improper Integrals: setup often leads to integrals requiring techniques.
- Multiple Integrals: area, volume, mass, and average value generalize to two and three dimensions.
- Vector Calculus: work and flux become line and surface integrals.