In particular, I've this function in R^2:
f = Piecewise[ { {(x y) / (x^2 +y^2), x != 0 && y != 0}, {0, x == 0 && y == 0} } ]
Now I would like to determine if the function is differentiable at point (1,2) without using the definition. I remember that in Wolfram alpha there's an simply "is differentiable?", but there I can't set an specific point.. So can I use same simple mathematica function? Ps I know use the definition of differentiability, but at the moment I need something faster if possible