Fitting a bowl instead of a plane
Gradient descent builds a linear model at the current point and steps along it, with a scalar standing in for everything the model does not know. Newton's method builds a quadratic model instead:
Minimising that over is a calculus exercise. Differentiate, set to zero, and solve:
Notice what replaced the step size. Gradient descent multiplies the gradient by a scalar, shrinking every direction equally. Newton multiplies it by the inverse Hessian, which stretches and rotates: long steps along flat directions, short steps along steep ones, decided separately for each direction at every iteration.

