Chapter 16 — Further Reading
Each entry below is annotated: what it covers, how it maps to this chapter's four techniques, and when to reach for it. The two primary reference texts (Stewart and OpenStax) are mapped section by section so you can read the parallel treatment of any topic.
Primary Textbook Mapping
Stewart, J. (2020). Calculus: Early Transcendentals (9th ed.). Cengage. The benchmark for breadth and exercise depth. This chapter maps directly onto Stewart's Chapter 7:
| This chapter | Stewart § | Notes |
|---|---|---|
| §16.2–16.3 Trigonometric integrals | §7.2 | Same parity strategy; Stewart adds a large drill set on $\tan/\sec$ and product-to-sum. |
| §16.4 Trigonometric substitution | §7.3 | Identical substitution table and right-triangle method; many radical integrals. |
| §16.5 Partial fractions | §7.4 | All four cases (distinct/repeated linear, irreducible quadratic) with worked examples. |
| §16.6 Numerical integration | §7.7 | Trapezoidal, Midpoint, and Simpson's rules with the same error bounds we use. |
| §16.7 Master strategy | §7.5 | Stewart's "Strategy for Integration" — a decision tree worth reading alongside ours. |
Start here for additional practice; §7.2–7.4 have the deepest problem banks on these specific techniques.
Strang, G., and Herman, E. (2016). Calculus, Volume 2. OpenStax. Free at openstax.org. Excellent free parallel coverage in Chapter 3, "Techniques of Integration":
| This chapter | OpenStax Vol. 2 § | Notes |
|---|---|---|
| §16.2–16.3 Trigonometric integrals | §3.2 | Clear worked examples; good for self-study with checkpoints. |
| §16.4 Trigonometric substitution | §3.3 | Triangle-based back-substitution, mirroring our approach. |
| §16.5 Partial fractions | §3.4 | Step-by-step decomposition with the same case taxonomy. |
| §16.6 Numerical integration | §3.6 | Trapezoidal and Simpson's rules plus error analysis. |
(OpenStax §3.7 covers improper integrals — that is our Chapter 17, not this one.) Use OpenStax for a second explanation when a Stewart example is terse, and for its freely available exercise sets.
Spivak, M. (2008). Calculus (4th ed.). Publish or Perish. For math majors. Chapter 19 ("Integration in Elementary Terms") treats these techniques with full rigor and proves the trapezoidal and Simpson error bounds rather than merely stating them. Read it if you want to see why the $1/n^2$ and $1/n^4$ rates hold.
Apostol, T. M. (1967). Calculus, Volume I. Wiley. A rigorous classic. §5.8 covers integration techniques; the sequencing differs slightly but the content matches. Strong on the logical foundations behind the mechanical rules.
Numerical Analysis (deepening §16.6)
Burden, R. L., and Faires, J. D. (2011). Numerical Analysis (9th ed.). Brooks/Cole. Chapter 4 is the definitive undergraduate treatment of quadrature: composite trapezoidal/Simpson, Romberg integration, adaptive quadrature, and Gaussian quadrature, all with derivations of the error terms. The natural next step after §16.6.
Trefethen, L. N. (2013). Approximation Theory and Approximation Practice. SIAM. Modern and unusually readable. Its quadrature chapter explains why smooth periodic integrands (like the ellipse perimeter in Case Study 1) converge so fast — the phenomenon of spectral accuracy.
Press, W. H., et al. (2007). Numerical Recipes: The Art of Scientific Computing (3rd ed.). Cambridge University Press. The pragmatic reference, with well-tested code for every method. Reach for it when you need to implement a quadrature routine rather than analyze one.
Davis, P. J., and Rabinowitz, P. (2007). Methods of Numerical Integration. Dover. The most exhaustive reference on quadrature, and inexpensive as a Dover reprint. A reference to own, not to read cover to cover.
Applications (the case studies, extended)
Nise, N. S. (2019). Control Systems Engineering (8th ed.). Wiley. The standard controls text behind Case Study 2. Partial fractions and Laplace transforms appear on nearly every page; its step-response derivations are exactly the §16.5 algebra applied to circuits.
Boyce, W. E., and DiPrima, R. C. (2017). Elementary Differential Equations (11th ed.). Wiley. Its Laplace-transform chapter uses partial fractions extensively — a direct bridge from §16.5 to the differential equations of Chapter 19.
Oppenheim, A. V., Willsky, A. S., and Nawab, S. H. (1997). Signals and Systems (2nd ed.). Prentice Hall. The classic signal-processing reference. Extends partial fractions to the discrete-time $z$-transform and connects the product-to-sum identities of §16.3 to Fourier analysis.
Almkvist, G., and Berndt, B. (1988). "Gauss, Landen, Ramanujan, … ellipses, $\pi$, and the Ladies Diary." American Mathematical Monthly, 95(7), 585–608. A delightful history of the ellipse-perimeter problem (Case Study 1) and the centuries of approximations it inspired.
On Why $\int e^{-x^2}dx$ Has No Elementary Antiderivative (for curious math majors)
Bronstein, M. (2005). Symbolic Integration I: Transcendental Functions (2nd ed.). Springer. Graduate-level account of when an elementary antiderivative exists — the theory behind the §16.7 "Key Insight."
Risch, R. H. (1969). "The problem of integration in finite terms." Transactions of the American Mathematical Society, 139, 167–189. The original decidability paper: an algorithm that decides whether any given elementary function has an elementary antiderivative.
Software
- SymPy
integrate— symbolic integration (verifies hand work): https://docs.sympy.org/latest/modules/integrals/integrals.html - SymPy
apart— automated partial-fraction decomposition. - SciPy
integrate.quad— adaptive quadrature for production: https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.quad.html - SciPy
integrate.simpson,integrate.trapezoid— numerical integration on tabular data. - Mathematica
Integrate[]— symbolic + numeric: https://reference.wolfram.com/language/ref/Integrate.html
For production work in any quantitative field, use the library, not your hand calculation. The library encodes decades of accumulated wisdom about numerical stability, error control, and special cases.
A Practice Recommendation
Integration techniques are learned by volume. Work through Stewart §7.2–7.4 and §7.7 and OpenStax §3.2–3.4 and §3.6 until pattern recognition is automatic — aim for the point where 60%+ of integrals you meet yield in your head. For the rest, the real skill is recognizing which technique to try, not executing it perfectly the first time. Pair every hand calculation with a sympy check to tighten your feedback loop, remembering that a CAS may return an equivalent-but-different antiderivative (§16.8).