Chapter 40 — Quiz

This is the last quiz in the book, and it is a book-wide review. The ten questions below do not test a single chapter; they test whether you can see the structure of the whole subject — the six themes, the four anchors, the family of Fundamental Theorems, and where calculus goes next. Answer each, then open the <details> to check yourself. Each answer ends with the chapter(s) it draws on.


1. The central claim of this book is that all of calculus reduces to two moves bound by one theorem. Name the two moves and the one theorem.

AnswerThe two moves are **linearization** (the derivative: replace a function near a point by its best linear approximation) and **accumulation** (the integral: add infinitely many infinitesimal pieces into a finite total). The one theorem binding them is the **Fundamental Theorem of Calculus**, which says these two operations are inverses. *(§40.1, §40.3; Chapters 6, 13, 14.)*

2. Write the plain FTC and the generalized Stokes' theorem side by side, and state the single sentence they both express.

AnswerPlain FTC: $\int_a^b f'(x)\,dx = f(b)-f(a)$ (Chapter 14). Generalized Stokes': $\int_{\partial M}\omega = \int_M d\omega$ (Chapter 38). Both say the same thing: **the integral of a derivative over a region equals the values of the original object on the boundary of that region.** The FTC is the one-dimensional case, where the "boundary" of $[a,b]$ is its two endpoints. *(§40.3.)*

3. Maxwell's equations are pure vector calculus. From which two operators of Chapter 37 are they built, and what physical quantity falls out of them that Maxwell did not put in?

AnswerThey are built from the **divergence** $\nabla\cdot$ and the **curl** $\nabla\times$ (Chapter 37), together with partial derivatives in time (Chapter 29). Manipulating them in a vacuum forces the fields to satisfy a wave equation whose speed is $c = 1/\sqrt{\mu_0\varepsilon_0} \approx 3.00\times 10^8$ m/s — **the speed of light**. Vector calculus revealed that light *is* electromagnetism. *(§40.4; Chapters 29, 37.)*

4. Anchor trace — gradient descent. State the multivariable update rule, and name the algorithm (built from the chain rule run backward) that computes the gradient in a neural network.

AnswerThe update is $\mathbf{x}_{n+1} = \mathbf{x}_n - \eta\,\nabla f(\mathbf{x}_n)$ — step opposite the gradient, the direction of steepest increase. The gradient is computed efficiently by **backpropagation**, the Chapter 7 chain rule applied backward through the network's computational graph. This is how every neural network is trained. *(§40.5; Chapters 6, 7, 30.)*

5. Anchor trace — the SIR model. The system is $\frac{dS}{dt} = -\beta SI$, $\frac{dI}{dt} = \beta SI - \gamma I$, $\frac{dR}{dt} = \gamma I$. What quantity determines whether the epidemic initially grows, and how is it read off the equations?

AnswerThe **basic reproduction number** $R_0 = \beta/\gamma$. At the start, with $S\approx 1$, $\frac{dI}{dt} = (\beta S - \gamma)I \approx (\beta-\gamma)I$, which is positive (epidemic grows) exactly when $\beta > \gamma$, i.e. $R_0 = \beta/\gamma > 1$. This is hand analysis revealing the threshold; machine integration then draws the full epidemic curve. *(§40.5; Chapters 19, 39.)*

6. Anchor trace — the normal curve. The integral $\int_a^b \frac{1}{\sqrt{2\pi}}e^{-x^2/2}\,dx$ has no elementary antiderivative. Does that mean the FTC fails for it? How is it actually computed?

AnswerNo — the FTC applies perfectly; the integral *equals* an antiderivative evaluated at the endpoints. What fails is only our ability to *write that antiderivative with elementary symbols*. It is computed to arbitrary precision via **Taylor series** (expand $e^{-x^2/2}$, integrate term by term) or numerical quadrature. "No closed form" and "unsolvable" are entirely different statements. *(§40.5; Chapters 13, 14, 23.)*

7. Anchor trace — Euler's formula. Write Euler's formula and Euler's identity, and say which theorem-tool from Chapter 23 proves the formula.

AnswerEuler's formula: $e^{i\theta} = \cos\theta + i\sin\theta$. Setting $\theta=\pi$ gives Euler's identity: $e^{i\pi}+1=0$, linking $0,1,e,\pi,i$. It is proved by comparing the **Taylor series** (Chapter 23) of $e^{i\theta}$, $\cos\theta$, and $\sin\theta$ — the real terms reproduce cosine, the imaginary terms reproduce sine. *(§40.5; Chapters 11, 23, 24.)*

8. Which recurring theme is best illustrated by the fact that the limit, linear approximation, Taylor series, and numerical integration are all "close enough made precise"? State the theme.

Answer**Theme 6: approximation is the soul of calculus.** The limit is "close enough" made rigorous; linearization replaces a curve by its tangent; Taylor series replaces a function by a polynomial; numerical quadrature replaces an integral by a sum. Calculus is the discipline that taught humanity to say "approximately" with mathematical exactness. *(§40.6.)*

9. The book names four next courses past its last page. Match each to the question it answers: (i) how do things evolve over time? (ii) why is all of this true, with full rigor? (iii) calculus on curved spaces; (iv) the math of physics and engineering.

Answer(i) **Differential equations** — how systems evolve over time (extends Chapter 19). (ii) **Real analysis** — proves everything with full $\varepsilon$–$\delta$ rigor (extends Chapter 3). (iii) **Differential geometry** — calculus on curved spaces and manifolds (extends Chapter 38's generalized Stokes' theorem). (iv) **Partial differential equations** — the equations of physics and engineering, like Maxwell's and Schrödinger's. *(§40.7.)*

10. Name three honest limits of calculus from §40.10, and for each name the broader tool that takes over where calculus stops.

Answer(1) **Most differential equations have no closed-form solution** → numerical methods. (2) **Determinism does not mean predictability** — chaotic systems obey deterministic equations yet are unpredictable → chaos theory / nonlinear dynamics. (3) **Smoothness is an assumption** — the world has jumps, kinks, and randomness → stochastic calculus (for randomness), discrete mathematics (for the granular). A fourth: the quantum and the very large needed operator theory and differential geometry. *(§40.10.)*

Scoring

  • 9–10 correct: Outstanding. You see the architecture of the entire subject, not just its parts. You are ready for any of the next courses.
  • 7–8 correct: Excellent. Solid command of the synthesis; reread the sections behind any you missed.
  • 5–6 correct: Good. The structural picture is forming — revisit §40.3 (the FTC family) and §40.5 (the four anchors), the two most easily blurred.
  • Below 5: Reread Chapter 40 in full. This chapter is a map; the territory is the previous thirty-nine, so missed questions point you back to specific chapters.

Beyond the Quiz

This is the last quiz in the book. From here, your real test is not a question with a marked answer — it is a problem in the world that needs someone who can think quantitatively about change. You are now that person. Use it well.