Chapter 1 — Key Takeaways

The Big Ideas

  1. Calculus answers two ancient questions. The tangent problem asks for the slope of a curve at a single point. The area problem asks for the area under a curve over an interval. Both problems resisted general solution for two thousand years.

  2. Both problems are solved by a limiting procedure. The tangent slope is the limit of secant slopes as the second point approaches the first. The area under a curve is the limit of total rectangle area as the rectangles get infinitely thin.

  3. The Fundamental Theorem of Calculus says the two procedures are inverses. Differentiation (slopes) and integration (areas) undo each other. This was the great discovery of Newton and Leibniz in the 1660s–1670s, and it is the most important theorem in elementary mathematics.

  4. Calculus is the mathematics of change. Whenever a quantity is varying — over time, space, parameter, anything — calculus is the appropriate tool. This is why calculus appears in essentially every quantitative discipline.

  5. The slope of $y = x^2$ at $x = a$ is $2a$. Derived in Section 1.7 by computing the secant slope $\frac{(a+h)^2 - a^2}{h} = 2a + h$ and letting $h \to 0$. The general power rule (Chapter 7) will give us $\frac{d}{dx}(x^n) = n x^{n-1}$.

  6. The area under $y = x^2$ from $0$ to $1$ is $1/3$. Computed in Section 1.2 by summing Riemann rectangle areas. The general integral $\int_0^a x^2 \, dx = a^3/3$ (Chapter 13) will fall out instantly from FTC.

  7. The book teaches in three rigor levels. Intuitive (the picture), Computational (the rule), Formal (the proof). Engineers and scientists read levels 1 and 2. Math majors read all three.

  8. Python is a verification tool, not a replacement. Hand computation builds understanding. Python (with numpy, scipy, sympy, matplotlib) visualizes, verifies, and extends.

Key Formulas and Procedures

Idea Formula / procedure Where
Secant slope $\dfrac{f(a+h) - f(a)}{h}$ — average rate of change over $[a, a+h]$ §1.1
Slope at a point $\displaystyle \lim_{h \to 0}\dfrac{f(a+h) - f(a)}{h}$ — the limit of secant slopes §1.1, §1.7
Slope of $y=x^2$ at $x=a$ $\dfrac{(a+h)^2 - a^2}{h} = 2a + h \to 2a$ §1.7
Right-endpoint Riemann sum $\displaystyle \sum_{i=1}^{n} f\!\left(a + \tfrac{i(b-a)}{n}\right)\cdot \dfrac{b-a}{n}$ §1.2
Area as a limit area $=\displaystyle \lim_{n\to\infty}$ (Riemann sum) §1.2
Sum identity used $\displaystyle\sum_{i=1}^{n} i^2 = \dfrac{n(n+1)(2n+1)}{6}$ §1.2
Area under $y=x^2$ on $[0,1]$ $\dfrac{(n+1)(2n+1)}{6n^2} \to \dfrac13$ §1.2

The two core procedures of this chapter:

  1. Slope by shrinking $h$ — form the secant slope $\frac{f(a+h)-f(a)}{h}$, simplify algebraically until the $h$ in the denominator cancels, then let $h\to 0$ and read off the limit.
  2. Area by Riemann sum — slice $[a,b]$ into $n$ equal strips of width $(b-a)/n$, take the function's height at one edge of each strip, sum height × width, then let $n\to\infty$.

Common Errors to Avoid

  • Plugging in $h = 0$ too early. The secant slope at $h = 0$ is $0/0$, undefined. Simplify first (cancel the $h$), then take the limit. (§1.1 Common Pitfall, §1.7 Warning.)
  • Thinking a Riemann sum must blow up because you add more terms as $n$ grows. Each rectangle also gets thinner; the terms shrink fast enough for the sum to converge. (§1.2 Common Pitfall.)
  • Confusing the rectangle-area sum with $\sum i^2$. The area sum divides by $n^3$: it is $\frac{1}{n^3}\sum i^2$, not $\sum i^2$.
  • Treating the secant slope as the answer. A secant slope is an approximation; the slope at the point is its limit.
  • Believing a finite Riemann sum equals the exact area. It equals the area only in the limit $n \to \infty$; for finite $n$ there is always (shrinking) error.

Skills You Should Now Have

  • Compute the secant slope of a curve at a point using $(f(a + h) - f(a)) / h$
  • Estimate the slope at a point by letting $h$ shrink toward $0$
  • Set up a Riemann sum approximation to the area under a curve, with $n$ rectangles
  • Recognize calculus in a real-world domain (you saw it in a sprinting cheetah's velocity and a streaming service's pricing)
  • Read a derivative as an instantaneous rate (velocity, marginal revenue) and an integral as an accumulated total (distance, consumer surplus)
  • Write simple Python that computes secant slopes and Riemann sums

Phrases You Should Be Comfortable With

  • Tangent line, secant line
  • Riemann sum
  • Limit (informal — formal definition in Chapter 3)
  • Derivative, integral (informal — formal definitions in Chapters 6 and 13)
  • Fundamental Theorem of Calculus (informally; carefully proved in Chapter 14)
  • Rate of change, slope of a curve, area under a curve

What You Don't Yet Need to Know

  • The formal $\varepsilon$-$\delta$ definition of a limit (Chapter 3)
  • The differentiation rules (Chapter 7)
  • The integration techniques (Chapters 15–16)
  • The proof of FTC (Chapter 14)
  • The multivariable generalizations (Parts VI–VII)

Forward References

  • Chapter 3 makes the limit concept rigorous
  • Chapter 5 formally defines the derivative as a limit
  • Chapter 13 formally defines the integral as a limit of Riemann sums
  • Chapter 14 proves the Fundamental Theorem of Calculus
  • Chapter 30 develops gradient descent (first mentioned here)
  • Chapter 32 computes the Gaussian integral (relevant to the normal distribution mentioned here)

A Final Reflection

If you finish Chapter 1 feeling that calculus is approachable — and that the slope of $y = x^2$ at $x = 1$ being exactly $2$ is somehow surprising and elegant — you are in the right state of mind for the rest of the book. Calculus rewards the reader who is willing to be surprised, who is willing to let beauty matter, and who is willing to do the exercises.

You have started. The most useful mathematics ever invented lies ahead.