I have to compute the second order Taylor series of the function
$ f = e^{x^2 + y^2}$ near $(0,0)$.
The Jacobian is:
$$ Df(x,y) = (2\ x\ e^{x^2 + y^2}, 2\ y\ e^{x^2 + y^2}) $$
and the Hessian:
$$ D^2f(x,y) = \left( \begin{array}{cc} 4\ x^2\ e^{x^2 + y^2} & 4\ x\ y\ e^{x^2 + y^2} \\ 4\ x\ y\ e^{x^2 + y^2} & 4\ y^2\ e^{x^2 + y^2} \end{array}\right) $$
both of which are $0$ at $(0,0)$.
So the second order taylor series degenerates to
$$ T_2(x,y) = f(0,0) = 1$$
... which sounds like a rather poor approximation for any $x, y$, e.g. $(0.2,0.2)$. Also it's a bit confusing for me that both Jacobian and Hessian are $0$ at that point.
Do I miss something here, or is the function itself simply not favorable for Taylor approximation?