Where did the linear approximation/linearization formula come from? I understand that it takes root in the point-slope form and slope intercept form of a linear equation, but I don't understand where they got the exact formula $$f(x) \approx f(x_0)+f'(x_0)(x-x_0)$$ Also, where did Newton's Method come from? Can someone please explain this, or rather the individual components of the equation, to me?
Thanks!
Consider the two points $(x_0, f(x_0))$ and $(x,f(x))$. Now suppose we wanted to find the slope between these two points. Using the slope formula, we know that this slope is: \begin{align*} m &= \frac{f(x) - f(x_0)}{x - x_0} \\ m(x - x_0) &= f(x) - f(x_0) \\ f(x_0) + m(x - x_0) &= f(x) \\ f(x) &= f(x_0) + m(x - x_0) \end{align*}
Now provided that $x$ and $x_0$ are "close enough", we can approximate the slope of the tangent line of $f$ at $x_0$ to be $m$. Hence, we obtain: $$ f(x) \approx f(x_0) + f'(x_0)(x - x_0) $$