Chapter 18 — Further Reading

Every entry below is annotated: what to read, where it maps in our chapter, and why it is worth your time. The two anchor textbooks are cross-referenced section by section so you can pivot to a second explanation the moment one of ours does not land.

Primary textbook mapping

Stewart, J. (2020). Calculus: Early Transcendentals (9th ed.). Cengage. Our Chapter 18 corresponds to Stewart's Chapter 6 (Applications of Integration) and parts of Chapter 8 (Further Applications):

  • §6.1 Areas Between Curves ↔ our §18.2. Same top-minus-bottom slice and the same split-at-crossings caution.
  • §6.2 Volumes (disks and washers) ↔ our §18.3. Stewart's "volumes by cross-section" generalizes our disk method.
  • §6.3 Volumes by Cylindrical Shells ↔ our §18.4, including the disk-vs-shell decision.
  • §6.4 Work ↔ our §18.7 (springs, pumping, cables).
  • §6.5 Average Value of a Function ↔ our Exercises 18.39–18.40's average-value framing.
  • §8.1 Arc Length ↔ our §18.5; §8.2 Area of a Surface of Revolution ↔ our §18.6.
  • §8.3 Applications to Physics and Engineering ↔ our §§18.8–18.9 (hydrostatic force, moments, and centroids, including Pappus's theorem).

Stewart has the deepest exercise bank in print; if you want fifty more area-or-volume problems graded by difficulty, this is the source.

Strang, G., & Herman, E. (OpenStax). Calculus, Volume 2. Free online. Maps to our chapter as:

  • §2.1 Areas Between Curves ↔ §18.2; §2.2 Determining Volumes by Slicing and §2.3 Volumes of Revolution: Cylindrical Shells ↔ §§18.3–18.4.
  • §2.4 Arc Length and Surface Area ↔ §§18.5–18.6; §2.5 Physical Applications ↔ §§18.7–18.8 (work, hydrostatic force); §2.6 Moments and Centers of Mass ↔ §18.9.

OpenStax frames everything with the same explicit "slice and sum" language we use and is the best free companion. Use it for a clean second pass on any section.

Rigorous and proof-oriented treatments

Spivak, M. (2008). Calculus (4th ed.). Publish or Perish. Treats area and volume with unusual care for why the slice argument is legitimate (it is secretly a limit of Riemann sums). Read Spivak when you want the geometric setup justified rather than asserted — pairs with the Math Major Sidebar on Pappus in §18.9.

Apostol, T. M. (1967). Calculus, Volume I. Wiley. Excellent on the geometric derivations of volume and the historical Archimedes-style arguments behind the sphere (our §18.3 Historical Note).

Engineering applications (Case Studies and §§18.7–18.8)

Hibbeler, R. C. (2015). Engineering Mechanics: Statics. Pearson. The standard statics text; its centroid, distributed-load, and hydrostatic-pressure chapters are §§18.8–18.9 applied at industrial scale. Best single source for why center of pressure (Case Study 2) sits below the centroid.

Munson, B. R., Young, D. F., & Okiishi, T. H. Fundamentals of Fluid Mechanics, ch. 2 (Fluid Statics). The engineering reference for hydrostatic force on plane and curved surfaces, and the center-of-pressure formula behind Case Study 2 (flood gate). Includes the parallel-axis shortcut that reproduces our second moment integral in one step.

Çengel, Y. A., & Cimbala, J. M. (2017). Fluid Mechanics: Fundamentals and Applications. McGraw-Hill. Covers the pump-efficiency factor that turns the ideal pumping energy of Case Study 1 (spherical water tower) into a real electricity bill — the gap between our $7.1\ \text{kWh}$ ideal and the $\sim12\ \text{kWh}$ a utility actually pays.

American Water Works Association (AWWA). Steel Water-Storage Tanks (Manual M42). The industry standard for tank geometry, inspection, and drainage — the real-world document behind Case Study 1.

Applied-calculus texts that foreground "slice and sum"

Hughes-Hallett, D., et al. Calculus: Single and Multivariable. Wiley. This author group teaches the slice-and-sum pattern more deliberately than any other mainstream text, building every application from "a small piece contributes $\,d(\text{quantity})$." If §18.11's universal table is the idea you most want to internalize, read their applications chapter.

Numerical computation (§18.10)

For arc lengths and surfaces with no elementary antiderivative (the ellipse perimeter of §18.5), numerical integration is not a luxury — it is the only route to a number. scipy.integrate.quad covers every single-variable integral in this chapter:

from numpy import pi, sqrt
from scipy.integrate import quad

# Volume of revolution (disks):   V = ∫ π f(x)^2 dx
V, _ = quad(lambda x: pi * f(x)**2, a, b)

# Arc length:                     L = ∫ √(1 + f'(x)^2) dx
L, _ = quad(lambda x: sqrt(1 + fprime(x)**2), a, b)

# Work / hydrostatic force:       any ∫ g(x) dx
W, _ = quad(F, a, b)

For the multivariable generalizations of Chapter 32 (volumes of arbitrary solids, centers of mass of arbitrary bodies), graduate to scipy.integrate.dblquad and tplquad.

A practice recommendation

The skills of this chapter are learned by many problems, and the skill that matters is setup, not arithmetic. Before moving to Chapter 19, work at least:

  • 6 area problems including at least two with crossings (split the interval).
  • 8 volume problems mixing disks, washers, and shells, around at least two different axes (including a shifted one).
  • 3 arc-length / surface-area problems, at least one that is non-elementary (set up and evaluate numerically).
  • 4 work problems: a spring, a pumping tank, a hanging cable, and one variable-force physics problem.
  • 2 hydrostatic-force problems (one non-rectangular plate) and 2 center-of-mass problems.

Verify each hand answer with sympy or scipy. The integrals are often messy but mechanical; the real skill is drawing the slice, writing its contribution, and choosing the variable that avoids a split. Master that and the computation takes care of itself.


Continue to: Index · Exercises · Quiz · Case Study 1 · Case Study 2 · Key Takeaways