Calculus: The Mathematics of Change — Complete Outline

40 chapters across 8 parts. ~1,400 pages, ~1 million words. Calc I = Parts I–II + first half of III (≈14 chapters). Calc II = second half of III + Parts IV–V (≈12 chapters). Calc III = Parts VI–VIII (≈14 chapters).


Part I — Limits and Continuity (Chapters 1–5)

The conceptual foundation everything else rests on.

Chapter 1 — Why Calculus: The Tangent and Area Problems. Two ancient problems — finding the tangent line to a curve and finding the area under one — that drove mathematicians for two thousand years. Why neither could be solved with pre-calculus mathematics. The astonishing realization, in 1665, that they are the same problem. Roadmap of the book.

Chapter 2 — Functions and Models: The Language Calculus Speaks. Review of algebraic, trigonometric, exponential, and logarithmic functions. Mathematical modeling: representing real-world phenomena with functions. Function transformations. Piecewise functions. The function as the central object of calculus. Python with matplotlib for plotting.

Chapter 3 — The Limit: What Happens When You Get Infinitely Close. Intuitive limits. One-sided limits. Limits at infinity. Limit laws. The squeeze theorem. Limits involving infinity. The ε-δ definition presented as the formalization of the intuition, not as torture. Why limits matter: they let calculus handle the infinite without ever dividing by zero.

Chapter 4 — Continuity: Where Functions Behave and Where They Don't. Definition of continuity. Types of discontinuity. The Intermediate Value Theorem (proved and motivated). Continuity of combinations and compositions. The bisection method for finding roots.

Chapter 5 — Rates of Change: The Idea That Started Everything. Average → instantaneous rate of change. The tangent line problem revisited (now with limits in hand). The velocity problem. The slope of a curve as a limit of secant lines. The derivative DEFINED — but not yet computed.


Part II — Differentiation (Chapters 6–12)

The first fundamental operation of calculus.

Chapter 6 — The Derivative: Definition, Notation, and What It Means. The derivative as a function. Derivative from the definition (limit of difference quotient). Graphing derivatives from graphs of functions. When derivatives fail to exist (corners, cusps, vertical tangents, discontinuities). Notation: $f'(x)$, $dy/dx$, $Df$. Higher-order derivatives. First appearance of gradient descent anchor.

Chapter 7 — Differentiation Rules: Power, Product, Quotient, and Chain. The rules that make computation possible. Power rule (derived). Sum/difference rules. Product rule (derived). Quotient rule. The chain rule (derived and practiced extensively — the most important rule). Derivatives of trigonometric, exponential, and logarithmic functions.

Chapter 8 — Implicit Differentiation and Related Rates. Implicit differentiation (when $y$ isn't isolated). Related rates problems: two quantities changing simultaneously. The methodology: identify variables, write the equation, differentiate with respect to time. Applications: filling tanks, approaching cars, expanding circles, sliding ladders.

Chapter 9 — Applications of Derivatives: Extrema, Mean Value Theorem, and Curve Sketching. Absolute and relative extrema. Critical points. The Mean Value Theorem (proved, motivated, applied). First and second derivative tests. Concavity and inflection points. Complete curve sketching using calculus. L'Hôpital's Rule for indeterminate forms.

Chapter 10 — Optimization: Finding the Best Answer. The most APPLIED topic in Calc I. Setting up and solving optimization problems. Constraints and objective functions. Applications: maximizing area, minimizing cost, optimal design, economic optimization (profit, revenue, cost). Biology: optimal foraging theory.

Chapter 11 — Linear Approximation, Differentials, and Newton's Method. Tangent line as best linear approximation. Differentials ($dy = f'(x)\,dx$) and estimation. Error propagation. Newton's method for finding roots (derived, implemented in Python, convergence analyzed). Application: how your calculator computes square roots. Brief mention of $e^{i\pi} + 1 = 0$ as a teaser for series chapters.

Chapter 12 — Antiderivatives and the Idea of Integration. The reverse problem: given a derivative, find the function. Antiderivative families. Basic antiderivative rules. Indefinite integrals. Initial value problems. The bridge to Part III: what's the connection between antiderivatives and areas?


Part III — Integration (Chapters 13–19)

The second fundamental operation — and its shocking connection to derivatives.

Chapter 13 — The Definite Integral: Area Under a Curve via Riemann Sums. The area problem. Riemann sums (left, right, midpoint). The definite integral as the limit of Riemann sums. Properties of the definite integral. The integral as signed area. Numerical integration with Python (Riemann sums, trapezoidal rule). First appearance of the area under the normal curve anchor.

Chapter 14 — The Fundamental Theorem of Calculus: The Most Important Theorem in Mathematics. FTC Part 1: the integral of $f$ is an antiderivative of $f$. FTC Part 2: the integral equals the antiderivative evaluated at the endpoints. BOTH parts proved and interpreted geometrically. Why this is astonishing: differentiation (slopes) and integration (areas) are INVERSE operations.

Chapter 15 — Integration Techniques I: Substitution and Integration by Parts. $u$-substitution (the reverse chain rule). Integration by parts (the reverse product rule): the LIATE heuristic. When to use each. Extensive practice.

Chapter 16 — Integration Techniques II: Trigonometric, Partial Fractions, Numerical Methods. Trigonometric integrals. Trigonometric substitution. Partial fraction decomposition. Numerical integration: trapezoidal rule, Simpson's rule, error bounds. When analytical methods fail and numerical methods take over.

Chapter 17 — Improper Integrals: When the Limits Stretch to Infinity. Improper integrals with infinite limits. Improper integrals with infinite integrands. Comparison test for improper integrals. The Gamma function preview. The Gaussian integral $\int_{-\infty}^\infty e^{-x^2}\,dx = \sqrt{\pi}$ (without proof — that needs multivariable). Continued development of the normal curve anchor.

Chapter 18 — Applications of Integration: Area, Volume, Arc Length, and Work. Area between curves. Volumes by disk/washer method. Volumes by shell method. Arc length. Surface area of revolution. Work as an integral. Hydrostatic force. Center of mass. Each application: setup, computation, Python visualization.

Chapter 19 — Differential Equations: An Introduction to the Mathematics of Change. Separable equations. First-order linear equations. Direction fields. Euler's method (numerical ODE solving in Python). Applications: population growth (exponential, logistic), mixing problems, cooling/heating (Newton's law), radioactive decay. First full development of the SIR model anchor.


Part IV — Sequences and Series (Chapters 20–24)

Adding infinitely many numbers and getting a finite answer — sometimes.

Chapter 20 — Sequences: When Lists Have Limits. Sequences as functions of natural numbers. Convergence and divergence. Limit laws for sequences. Monotone convergence theorem. Recursive sequences. Application: compound interest, fixed-point iteration.

Chapter 21 — Series: Adding Infinitely Many Numbers (and Getting a Finite Answer). Infinite series as limits of partial sums. Geometric series (the most important series). Harmonic series (diverges — why this is surprising). Telescoping series. Divergence test. Properties of convergent series.

Chapter 22 — Convergence Tests: How to Determine Whether a Series Converges. Integral test. Comparison test and limit comparison test. Ratio test. Root test. Alternating series test and estimation. Absolute vs. conditional convergence. Strategy: which test to use when.

Chapter 23 — Power Series and Taylor Series: Representing Functions as Infinite Polynomials. Power series and their radius of convergence. Taylor and Maclaurin series. Taylor's theorem with remainder. Key Taylor series: $e^x$, $\sin x$, $\cos x$, $1/(1-x)$, $\ln(1+x)$. Applications: approximation, computing values of transcendental functions, solving differential equations with series. Python: visualize Taylor polynomial convergence. Continued development of the normal curve anchor.

Chapter 24 — Applications of Series: Computation, Physics, and the Surprising Usefulness of Infinity. Euler's formula $e^{i\pi} + 1 = 0$ — derived from Taylor series. Fourier series preview. Computation: how calculators and computers evaluate functions. Probability generating functions. The Basel problem ($\sum 1/n^2 = \pi^2/6$). Climax of the Euler's formula anchor.


Part V — Parametric, Polar, and Conic Coordinate Systems (Chapters 25–27)

Curves that resist the function paradigm.

Chapter 25 — Parametric Curves: When $x$ and $y$ Both Depend on $t$. Parametric equations. Derivatives and integrals for parametric curves. Arc length and surface area. Cycloids and other classical curves. Projectile motion as a parametric curve.

Chapter 26 — Polar Coordinates: When Angles Are More Natural Than Lines. The polar coordinate system. Polar curves (cardioids, roses, spirals). Area in polar coordinates. Arc length in polar. Conic sections in polar form. Orbital mechanics.

Chapter 27 — Conic Sections: Ellipses, Parabolas, Hyperbolas. The conics as level curves of $Ax^2 + Bxy + Cy^2 + Dx + Ey + F = 0$. Focus-directrix definitions. Reflective properties (parabolic mirrors, elliptical whisper galleries). Kepler's laws and planetary orbits. Conic sections in parametric and polar form.


Part VI — Multivariable Calculus (Chapters 28–33)

From one dimension to many.

Chapter 28 — Vector-Valued Functions and Space Curves. Vector-valued functions $\mathbf{r}(t)$. Derivatives and integrals of vector functions. Arc length parameterization. Curvature and torsion. The Frenet-Serret frame. Applications: orbital trajectories, robot motion planning.

Chapter 29 — Functions of Several Variables: Surfaces, Contours, and Higher Dimensions. Functions $f(x,y)$ and $f(x,y,z)$. Graphs and level curves. Limits and continuity in higher dimensions. Partial derivatives. Geometric interpretation: tangent planes, linearization. Python: plotting 3D surfaces and contour maps.

Chapter 30 — The Multivariable Chain Rule, Gradient, and Directional Derivatives. The chain rule for multivariable functions. The gradient vector: direction of steepest ascent. Directional derivatives. Full development of the gradient descent anchor. Gradient descent for optimization (the algorithm that trains every neural network — and it's multivariate calculus).

Chapter 31 — Optimization in Several Variables: Peaks, Valleys, and Saddle Points. Critical points and second derivative test (multivariable). Constrained optimization: Lagrange multipliers (derived). Applications: economics (utility maximization), engineering (optimal design), data science (maximum likelihood estimation).

Chapter 32 — Multiple Integrals: Integrating Over Regions in 2D and 3D. Double integrals over rectangles and general regions. Iterated integrals and Fubini's theorem. Triple integrals. Change of variables: polar, cylindrical, spherical coordinates. Applications: mass, center of mass, moments of inertia, probability (joint distributions). Computes $\int_{-\infty}^\infty e^{-x^2}\,dx$ via the polar trick. Climax of the normal-curve anchor.

Chapter 33 — Change of Variables and Jacobians: The Multivariable Substitution Rule. The Jacobian determinant. General change of variables formula for multiple integrals. Why polar/cylindrical/spherical coordinates work the way they do. Application: probability density transformations.


Part VII — Vector Calculus (Chapters 34–38)

The grand finale: putting it all together in 3D.

Chapter 34 — Vector Fields: When Every Point in Space Has a Direction. Vector fields defined. Gradient fields as a special case. Flow lines. Conservative fields. Curl and divergence: measuring rotation and expansion. Application: fluid flow, electric and magnetic fields.

Chapter 35 — Line Integrals: Integration Along Curves. Line integrals of scalar functions. Line integrals of vector fields (work). The Fundamental Theorem for Line Integrals. Independence of path. Green's Theorem in the plane.

Chapter 36 — Surface Integrals: Integration Over Surfaces. Parametric surfaces. Surface area. Surface integrals of scalar functions. Surface integrals of vector fields (flux). Orientation and the normal vector.

Chapter 37 — Stokes' Theorem and the Divergence Theorem. Stokes' Theorem: surface integral of curl = line integral around the boundary. The Divergence Theorem: triple integral of divergence = surface integral of flux. Application: Maxwell's equations as statements about divergence and curl.

Chapter 38 — Generalizing FTC: One Theorem in Many Forms. Synthesis chapter. FTC for single variable, FTC for line integrals (Conservative Field Theorem), Green's, Stokes', Divergence — all manifestations of a single unifying principle. Differential forms as a glimpse forward. Why physics is "just" calculus.


Part VIII — Capstone and Synthesis (Chapters 39–40)

Chapter 39 — The Mathematical Modeling Portfolio: Putting Calculus to Work. Capstone chapter integrating the progressive project across all four tracks (Biology, Economics, Physics, Data Science). Complete worked-out portfolios in each track, drawing on every chapter. Self-assessment rubrics. Presentation guidelines.

Chapter 40 — The Big Picture: From Newton to the Modern World — What Calculus Made Possible. Synthesis chapter. How calculus enabled: Newton's mechanics, Maxwell's electromagnetism, Einstein's relativity, quantum mechanics, modern engineering, economic modeling, machine learning, computational science. Where calculus goes next: PDEs, real analysis, differential geometry, complex analysis. Connection to the rest of the textbook series (Linear Algebra, Quantum Mechanics, Statistics, Data Science, Economics).


Appendices (14)

  • Glossary — alphabetized definitions of all bolded terms with chapter references
  • Bibliography — complete reference list
  • Answers to Selected Exercises — solutions to odd-numbered problems
  • Index — topic index
  • Appendix A — Precalculus Review (algebra, trigonometry, logarithms)
  • Appendix B — Formula Reference (derivative table, integral table, Taylor series table)
  • Appendix C — Python Setup Guide (installing numpy/scipy/sympy/matplotlib/Jupyter)
  • Appendix D — Numpy/Scipy/Sympy Cheatsheet
  • Appendix E — Proof Techniques (ε-δ, induction, contradiction)
  • Appendix F — Notation Reference
  • Appendix G — Historical Notes (Newton, Leibniz, Cauchy, Weierstrass)
  • Appendix H — Stewart Chapter-to-Chapter Mapping
  • Appendix I — OpenStax Chapter-to-Chapter Mapping
  • Appendix J — Applications Catalog by Field (biology, economics, data science, physics, engineering)

Instructor Guide

Overview, three 15-week syllabi (Calc I/II/III), one self-paced syllabus, common-struggles guide, gateway-exam skills list, Python lab guide, full chapter-by-chapter teaching notes, discussion guides, and six exam templates (midterm + final × three semesters).