I'm given the following function:
$f(x,y) =$ $ \begin{cases} 2xy \frac{x^2 - y^2}{x^2 + y^2} & x^2 + y^2 \neq 0 \\ 0 & x=y=0 \end{cases} $
And the task is to prove that $f_{xy}(0,0) = -2$ and that $f_{yx}(0,0) = 2$.
At first glance I'd say that neither of these is true since at $(0,0)$ the function is 0 and so both expressions should equal 0. I thought maybe I was wrong and tried to work with the other piece of the function but I got the following: $$ f_{xy}=\frac{\partial^2 f}{\partial y \partial x} = \frac{2(x^6+9x^4y^2-9x^2y^4-y^6)}{(x^2 + y^2)^3} $$
Which is clearly not $-2$ if we evaluate for $x=0, y=0$. What am I missing? Am I going about it all wrong? Any help is appreciated.