Appendix J — Applications Catalog by Field

Most calculus textbooks promise that the subject is useful and then spend three hundred pages on falling rocks and sliding ladders. This book makes a different promise: calculus is the native language of every quantitative field, and we mean to prove it. Physics is where calculus was born, but it is no longer where calculus lives. A biologist modeling an epidemic, an economist pricing a perpetuity, a machine-learning engineer training a billion-parameter network, and an actuary discounting a future liability are all doing the same three things — measuring rates of change with derivatives, accumulating change with integrals, and approximating the intractable with series and linearization. Theme 5 of this book ("calculus appears in every quantitative field") is not a slogan; it is the organizing principle of the chapters themselves.

This appendix is a map. Find your field below, scan the table, and jump straight to the chapter that develops the application you care about. If motivation matters more to you than completeness, read those chapters and their case studies first. The mathematics will still be there when you come back for it.

The Four Anchor Examples

Four worked examples thread through the entire book. Each is introduced early, deepened across several chapters, and brought to a climax. Together they show the same calculus serving four different disciplines.

Anchor Field Introduced Climax
Gradient descent — stepping downhill against the derivative to minimize error Data science / ML Ch. 6 (the derivative is the direction to step) Ch. 30 (the multivariable gradient $\nabla f$ trains real models)
The SIR model of epidemics — three coupled ODEs for susceptible, infected, recovered Biology / epidemiology Ch. 19 (full development) Ch. 39 (capstone modeling portfolio)
Area under the normal curve — the probability hidden inside $e^{-x^2/2}$ Statistics / probability Ch. 13 (a definite integral with no elementary antiderivative) Ch. 23 (Taylor series finally evaluates it)
Euler's formula $e^{i\pi} + 1 = 0$ — the bridge between exponentials and trigonometry Pure math / complex analysis Ch. 11 (first mention) Ch. 24 (full derivation via three Taylor series)

Watch for these. When the SIR model reappears in the multivariable chapters, or when the normal-curve integral that defeated you in Chapter 13 falls instantly to a power series in Chapter 23, you are seeing the book's central argument made concrete: the tools compound.


Physics and Engineering

The classical home of calculus — Newton invented it to do exactly this — but notice how much of "physics" is really engineering design dressed in equations of motion.

Application Calculus used Chapter(s)
Kinematics: position $\to$ velocity $\to$ acceleration Differentiation; antiderivatives to integrate back Ch. 5, 6, 12
Projectile motion (parabolic trajectory) Vector-valued functions; parametric curves Ch. 25, 28
Jerk and snap (roller-coaster comfort) Higher-order derivatives Ch. 25
Work done by a variable force $W=\int_a^b F(x)\,dx$ Definite integral Ch. 18
Springs and Hooke's law; energy in oscillation Integration; second-order ODEs Ch. 18, 19
Simple harmonic motion / pendulum Differential equations; small-angle linear approximation Ch. 11, 19
Center of mass and moments Integration (single and multiple) Ch. 18, 32
Hydrostatic force on a dam or tank wall Definite integral of pressure $\times$ depth Ch. 18
Fluid flow and flux through a surface Surface integrals; divergence theorem Ch. 36, 37
Lift on an airplane wing (circulation) Line integrals; Stokes' theorem Ch. 35, 36
Orbital mechanics and Kepler's laws Polar coordinates; conic sections; vector calculus Ch. 26, 27, 28
Computing a planet's mass from its orbit Multiple integrals Ch. 32
Electromagnetism — Maxwell's equations Divergence and curl of vector fields Ch. 34, 37
Faraday's law (electric generators) Flux through a moving loop; line integrals Ch. 35
General relativity (a preview of curvature) Generalized FTC; differential forms Ch. 38

Real-World Application — Maxwell's four equations are nothing more than statements about the divergence and curl of the electric and magnetic fields. When you finish Chapter 37, you can read them. That is the payoff of vector calculus: it turns "light is an electromagnetic wave" from a slogan into a derivation.


Biology and Medicine

Living systems change, and change is what calculus measures. The SIR anchor lives here.

Application Calculus used Chapter(s)
Exponential population growth $P'=kP$ First-order ODE; the exponential function Ch. 19
Logistic growth (population with carrying capacity) Separable ODE; inflection via second derivative Ch. 19
SIR epidemic model (anchor) System of coupled nonlinear ODEs Ch. 19, 39
Pharmacokinetics: drug concentration over time Exponential decay ODE; superposition of doses Ch. 9, 15, 19
Drug bioavailability — area under the curve (AUC) Definite integral; integration by parts Ch. 15, 18
Optimal dosing interval (therapeutic window) Optimization; periodic accumulation Ch. 9, 10
Tumor growth (Gompertz and logistic models) Differential equations Ch. 19
Enzyme kinetics (Michaelis–Menten saturation) Limits; rates of change; curve fitting Ch. 3, 5
Carbon-14 dating Exponential-decay ODE Ch. 19
Heart-rate and ECG signal rates Derivatives of measured signals Ch. 6
Foraging behavior (optimal time per patch) Optimization Ch. 10

Real-World Application — Michaelis–Menten kinetics, $v = \dfrac{V_{\max}[S]}{K_m + [S]}$, is just a rational function whose limiting behavior you study in Chapter 3. As substrate $[S]\to\infty$, the reaction rate saturates at $V_{\max}$ — a horizontal asymptote you can read off a limit. Biology's most famous rate law is a freshman calculus exercise in disguise.


Economics and Business

Economics adopted calculus wholesale in the nineteenth century; the word "marginal" is the economist's word for "derivative."

Application Calculus used Chapter(s)
Marginal cost, revenue, and profit Derivatives Ch. 5, 6, 9
Profit maximization (set marginal revenue = marginal cost) First and second derivative tests Ch. 10
Cost minimization (the optimal beverage can) Single-variable optimization Ch. 10
Consumer and producer surplus Definite integral between curves Ch. 18
Price elasticity of demand Derivative as a relative rate Ch. 9
Economic order quantity (EOQ inventory model) Optimization of a total-cost function Ch. 10
Present value of a future payment Exponential discounting; improper integrals Ch. 17, 21
Present value of a perpetuity / continuous income stream Convergent improper integral; geometric series Ch. 17, 21
Compound interest, continuous compounding $A=Pe^{rt}$ The number $e$ as a limit; exponential growth Ch. 7, 20
Utility maximization under a budget constraint Lagrange multipliers Ch. 31
Risk aversion as concavity of a utility function Second derivative; concavity Ch. 9
Markowitz portfolio optimization Constrained optimization (several variables) Ch. 31, 39

Common Pitfall — Students often confuse maximizing profit with maximizing revenue. They are different optimization problems with different critical points: profit is maximized where marginal revenue equals marginal cost (Ch. 10), not where revenue alone peaks. The derivative you set to zero matters.


Data Science and Machine Learning

The fastest-growing consumer of calculus. Training any model is an optimization problem solved with derivatives; the gradient-descent anchor lives here.

Application Calculus used Chapter(s)
Gradient descent (anchor) Derivative as descent direction; the gradient $\nabla f$ Ch. 6, 30
Loss surfaces and finding minima Multivariable critical points; the Hessian Ch. 30, 31
Backpropagation through a network The chain rule (composed many times) Ch. 7, 30
The sigmoid / logistic activation $\sigma(x)=\frac{1}{1+e^{-x}}$ Derivatives of exponentials; $\sigma'=\sigma(1-\sigma)$ Ch. 7
Logistic regression Sigmoid; maximum likelihood Ch. 2, 31
Linear regression / least squares Minimizing squared error; partial derivatives Ch. 10, 31
Curve fitting to data Optimization; Taylor approximation Ch. 10, 23
Maximum likelihood estimation Optimizing a log-likelihood (a derivative set to zero) Ch. 31
Probability densities under change of variable Jacobian determinants Ch. 33
Training large language models High-dimensional gradient descent Ch. 30

The Key Insight — Every neural network you have ever heard of is trained by computing one gradient and taking one step downhill, millions of times. The gradient is a vector of partial derivatives (Ch. 30); the step is gradient descent (Ch. 6); the chain rule is what makes the gradient computable through dozens of layers (Ch. 7). Three calculus ideas, one trillion-parameter model.


Statistics and Probability

Continuous probability is calculus: a density is a function, a probability is the integral of that density, and an expectation is a weighted integral.

Application Calculus used Chapter(s)
Area under the normal curve (anchor) Definite integral of $e^{-x^2/2}$; Taylor series to evaluate it Ch. 13, 23
Probability as the integral of a density (PDF) Definite integral Ch. 13, 18
The CDF is the integral of the PDF; the PDF is the derivative of the CDF Fundamental Theorem of Calculus Ch. 14
Expected value $E[X]=\int x\,f(x)\,dx$ Integration, often by parts Ch. 15, 18
Variance and higher moments Improper integrals Ch. 17
Normalizing constants; the Gaussian integral $\int_{-\infty}^{\infty} e^{-x^2}\,dx=\sqrt{\pi}$ Double integral in polar coordinates Ch. 32
The Gamma function $\Gamma(s)=\int_0^\infty t^{s-1}e^{-t}\,dt$ Improper integrals; integration by parts Ch. 17
Maximum likelihood estimation Optimization Ch. 31

Real-World Application — The normal-curve integral has no elementary antiderivative, which is why your statistics class made you look up $z$-tables. Chapter 23 shows where those tables come from: expand $e^{-x^2/2}$ as a Taylor series and integrate term by term. The anchor that stumped you in Chapter 13 surrenders in Chapter 23 — a deliberate demonstration that series are not abstract decoration but working tools.


Chemistry

Application Calculus used Chapter(s)
Reaction rates $-\frac{d[A]}{dt}=k[A]^n$ Derivatives; separable ODEs Ch. 6, 19
Half-life and radioactive decay Exponential-decay ODE Ch. 19
Equilibrium and rate-saturation behavior Limits and asymptotes Ch. 3
Heat of reaction accumulated over time Definite integral Ch. 18

Environmental and Earth Sciences

Application Calculus used Chapter(s)
Carbon dating of organic samples Exponential-decay ODE Ch. 19
Pollutant concentration in a mixing tank First-order linear ODE Ch. 19
Total carbon emitted over a period Definite integral of an emission rate Ch. 18
Topographic maps as level curves of elevation Functions of several variables; gradients Ch. 29, 30
Weather and climate fields (flow, divergence) Vector fields; divergence Ch. 34
Map projections and area distortion Change of variables; Jacobians Ch. 33

Finance and Actuarial Science

Application Calculus used Chapter(s)
Continuous compounding $A=Pe^{rt}$ $e$ as a limit; exponential growth Ch. 7, 20
Present value and discounting Improper integrals Ch. 17, 21
Perpetuities and continuous annuities Convergent improper integrals; geometric series Ch. 17, 21
Force of mortality / hazard rate Derivative of a survival (CDF) function Ch. 14
Duration and convexity of a bond First and second derivatives of price Ch. 9, 23
Portfolio optimization (mean–variance) Constrained optimization Ch. 31, 39

Geometric Intuition — A bond's duration is the first derivative of its price with respect to interest rate, and its convexity is the second derivative. Picture the price-versus-yield curve: duration is its slope, convexity is how it bends. A Taylor expansion (Ch. 23) to two terms gives the standard "duration plus convexity" approximation traders use every day.

Computer Science

Application Calculus used Chapter(s)
Floating-point precision and the meaning of "close" Limits Ch. 3
Newton's method (how a calculator finds $\sqrt{2}$) Linear approximation; iterating the tangent line Ch. 11
Numerical integration (trapezoid, Simpson) Riemann sums; error from Taylor series Ch. 13, 16, 23
Fast evaluation of $\sin$, $\cos$, $e^x$, $\ln$ Truncated Taylor / power series Ch. 23, 24
Bézier curves in vector graphics and fonts Parametric curves Ch. 25
Surface rendering and shading (Pixar pipeline) Surface integrals; gradients of normals Ch. 36
Signal and image compression (Fourier ideas) Series; periodic decomposition Ch. 24
Backpropagation in autodiff frameworks The chain rule Ch. 7, 30

Computational Note — When your CPU computes $\sin(0.3)$ it does not consult a table of every angle. It evaluates the first few terms of the Taylor series $\sin x = x - \frac{x^3}{6} + \frac{x^5}{120} - \cdots$ (Ch. 23) and stops when the next term is smaller than machine precision. Theme 6 — "approximation is the soul of calculus" — is literally compiled into your hardware.


Reverse Index: By Mathematical Tool $\to$ Applications

Sometimes you know the tool and want to see where it pays off. This is the catalog read backward.

Derivatives (Ch. 5–9) — Any "rate of change" or "marginal" quantity: velocity and acceleration, marginal cost and revenue, reaction rates, elasticity, bond duration, the slope used in gradient descent, the descent direction in optimization.

Optimization (Ch. 10 single-variable; Ch. 31 several variables) — Maximizing profit, minimizing cost or inventory (EOQ), least-squares regression, maximum likelihood, optimal dosing, utility under a budget constraint (Lagrange multipliers), portfolio selection.

Integrals (Ch. 13–18) — Any "accumulated total": distance from velocity, work from force, area and surplus, center of mass, hydrostatic force, drug AUC, expected value, total emissions, probability from a density.

The Fundamental Theorem of Calculus (Ch. 14) — The hinge of the whole subject: differentiation and integration are inverses. It turns a CDF into a PDF and back, links a survival function to its hazard rate, and underlies every "net change" computation.

Differential equations (Ch. 19) — Any system whose rate of change depends on its current state: population and logistic growth, the SIR epidemic anchor, pharmacokinetics, radioactive and carbon decay, mixing tanks, springs and oscillation, chemical kinetics.

Sequences and series (Ch. 20–24) — Evaluating the inelegant and approximating the intractable: $\sin$/$\cos$/$e^x$ on a CPU, the normal-curve integral, the Euler's-formula anchor, geometric series behind perpetuities, error bounds for numerical methods, compression.

Multivariable calculus (Ch. 28–33) — Functions and fields of several inputs: gradient descent and loss surfaces, topographic level curves, constrained optimization, the Gaussian integral via double integrals, change-of-variable density transforms (Jacobians), center of mass of a solid, planetary mass.

Vector calculus (Ch. 34–38) — Flow, circulation, and conservation: Maxwell's equations, Faraday's law and generators, fluid flux and lift, weather fields, and the grand unification of every integral theorem under the generalized FTC.


Pick the field that interests you. Read those chapters and their case studies first if motivation matters more to you than completeness — then circle back for the proofs. The mathematics rewards both the impatient and the thorough.