Chapter 32 — Further Reading
Annotated pointers for going deeper on multiple integration. Each entry says what to read and why, with explicit section mapping to the two reference texts this book tracks (see continuity §8). For full bibliographic detail, consult appendices/bibliography.md.
Standard Coverage (the core sections to read alongside this chapter)
- Stewart, Calculus: Early Transcendentals (9th ed.), §15.1–15.7. The canonical treatment, mapped section-by-section to our chapter:
- §15.1–15.2 — double integrals over rectangles and general regions (our §32.2–§32.3). Stewart's "Type I / Type II" language is the same as ours.
- §15.3 — double integrals in polar coordinates, including the $r\,dr\,d\theta$ derivation (our §32.5).
- §15.4 — applications: density, mass, moments, center of mass, moment of inertia, and a probability subsection (our §32.10–§32.11).
-
§15.6–15.7 — triple integrals in rectangular, then cylindrical and spherical coordinates (our §32.6–§32.8). Stewart's exercise sets are the gold standard for drill; work the odd-numbered problems in §15.2 and §15.3 to cement order-reversal and polar conversion.
-
OpenStax, Calculus Volume 3 (Strang & Herman, free). The free counterpart, equally thorough:
- §5.1–5.2 — double integrals over rectangular and general regions (our §32.2–§32.3).
- §5.3 — polar coordinates for double integrals (our §32.5); a clear patch-area picture for the $r$ factor.
- §5.4 — triple integrals (our §32.6).
- §5.5 — triple integrals in cylindrical and spherical coordinates (our §32.7–§32.8).
- §5.6 — calculating centers of mass and moments of inertia (our §32.10). Every section is openly licensed with worked examples and answer keys — the best free supplement for extra practice.
The Gaussian Integral and the Normal Distribution
- Stewart, §15.4 "Applications of Double Integrals" — probability subsection, and the polar evaluation of $\iint e^{-(x^2+y^2)}\,dA$ in §15.3. Read these together to see the $\int_{-\infty}^\infty e^{-x^2}\,dx = \sqrt\pi$ derivation (our §32.5) in a second voice.
- Wasserman, All of Statistics, §2.4–2.5. Where the normalized Gaussian becomes the foundation of statistical inference; explains why the $\sqrt{2\pi}$ you compute here appears in every $z$-score and confidence interval.
Deeper Theory (for the mathematically curious)
- Spivak, Calculus on Manifolds, Chapter 3 ("Integration"). A rigorous construction of the multiple integral and a careful statement of Fubini's theorem with full hypotheses — including the absolute-integrability condition our §32.2 Warning gestures at. Demanding but illuminating; read after you are comfortable computing.
- Courant & John, Introduction to Calculus and Analysis, Vol. II. A classic, physically motivated development of double and triple integrals with unusually rich applications to mechanics; excellent on moments of inertia (our §32.10).
Looking Ahead — Change of Variables
- Stewart §15.10 / OpenStax Vol. 3 §5.7 — Change of Variables in Multiple Integrals. This is the natural next read: it introduces the Jacobian determinant that our chapter previewed as the factors $r$ (polar/cylindrical) and $\rho^2\sin\phi$ (spherical). It is the subject of Chapter 33 here, and it unifies every coordinate change in this chapter under one master formula — the multivariable analog of $u$-substitution (Chapter 15).
Computation
- SciPy documentation —
scipy.integrate.dblquadandtplquad. The reference for the numerical tools used in §32.12, including the inner-to-outer argument-order convention. The docs also describenquadfor higher dimensions. - On Monte Carlo integration (our §32.12 Computational Note): any introductory numerical-methods text's chapter on stochastic integration explains why sampling beats grids past three or four dimensions — the "curse of dimensionality" — with error scaling like $1/\sqrt{N}$ regardless of dimension. Essential background for high-dimensional integrals in physics, finance, and Bayesian statistics.