0

As you may know we can define the equation of a tangent line of a differentiable function at any point $a$ is given by: $$y = f(a) + f'(a)(x-a)$$

However how can I interpret this equation? $$y = f(a) + f'(a)(x-a) + f''(a)(x-a)^2$$

This would be very useful to me. Looks like a Taylor expansion at the point $a$. However I can't see this geometrically.

If this doesn't have an answer, is there any geometric meaning to the third derivative of a function?

Blue
  • 83,939
Nuno Mateus
  • 325
  • 1
  • 9

2 Answers2

4

You mean $$y = f(a) + f'(a)(x-a) + \frac {f''(a)}{2}(x-a)^2$$

which is a quadratic approximation to the function around the point $(a,f(a))$ instead of the linear approximation which is the tangent line.

This is a better approximation due to the second derive at the point $ (a,f(a))$ which involves the concavity of the graph as well as the slope at the point of tangency.

1

The equation $y = f(a) + f'(a) (x-a)$ represents the only 1st degree polynomial function that has the same value and the same first derivative at $x=a$ as the function $f$. Geometrically, this is the equation of the unique line that is the best fit or best approximation to the graph of $y=f(x)$ at the point $(a,f(a))$.

The equation $y = f(a) + f'(a) (x-a) + \frac{f''(a)}{2} (x-a)^2$ represents the only 2nd degree polynomial function (quadratic function) that has the same value, the same first derivative, and the same second derivative at $x=a$ as the function $f$. Geometrically, this is the equation of the unique parabola that is the best fit, or best approximation, to the graph of $y=f(x)$ at the point $(a,f(a))$.

Want to guess what the equation $y = f(a) + f'(a) (x-a) + \frac{f''(a)}{2} (x-a)^2 + \frac{f'''(a)}{6}(x-a)^3$ represents?

Lee Mosher
  • 135,265