The question every training loop asks
A model with a billion parameters is, mathematically, a function from those parameters to a single number: the loss. Training asks the same question at every step, about every parameter: if I nudge this one, does the loss go up or down, and by how much?
That is a derivative. Not a symbolic exercise on paper, but a number you need in order to decide where to step next. Everything in this course exists to answer that question cheaply enough that you can ask it a billion times per second.
Key idea: Calculus enters machine learning as a search strategy. You cannot see the shape of the loss surface, so you feel it locally: measure the slope where you are standing, step downhill, repeat.

