$$f(x, y) = e^{2x+xy+y^2}$$
Find the 2nd order taylor polynomial to the above function about (0,0)
The formula is:
$$P(x,y)=f(a,b)+f_x(a,b)(x-a)+f_y(a,b)(y-b)+\frac 12[f_{xx}(x-a)^2+2f_{xy}(x-a)(y-b)+f_{yy}(y-b)^2]$$
$$f_x=e^{2x+xy+y^2}(2+y)$$ $$f_y=e^{2x+xy+y^2}(x+2y)$$ $$f_{xx}=e^{2x+xy+y^2}(2+y)^2$$ $$f_{yy}=e^{2x+xy+y^2}(x+2y)^2+2e^{2x+xy+y^2}$$ $$f_{xy}=e^{2x+xy+y^2}(2+y)(x+2y)+e^{2x+xy+y^2}$$
But I still get the wrong answer. What I am doing wrong?