While attempting to answer this question with help of MAPLE, something very strange happened, at least according to me. We have the following function: $$ \phi(x,y) = x^2-y^2+\frac{x^2-y^2}{(x^2+y^2)^2} $$ The partial derivatives of this function are (according to MAPLE and myself): $$ u = \frac{\partial \phi}{\partial x} = 2 x + \frac{2 x}{(x^2+y^2)^2} - \frac{4(x^2-y^2)x}{(x^2+y^2)^3} \\ v = \frac{\partial \phi}{\partial y} = - 2 y - \frac{2 y}{(x^2+y^2)^2} - \frac{4(x^2-y^2)y}{(x^2+y^2)^3} $$ Then we calculate $\sqrt{u^2+v^2}$ and ask MAPLE to simplify, with the following result: $$ \sqrt{u^2+v^2} = 2\,\sqrt {{\frac{x^8+4\,x^6y^2-2\,x^4+6\,x^4y^4 +12\,x^2y^2+4\,x^2y^6-2\,y^4+y^8 \color{red}{+1}}{\left(x^2+y^2\right)^{3}}}} $$ But, even at first sight .. how can there be a $+1$ in that fraction ? Here comes the MAPLE sequence:
phi(x,y) := (x^2-y^2)+(x^2-y^2)/(x^2+y^2)^2; diff(phi(x,y),x); diff(phi(x,y),y); simplify(sqrt(diff(phi(x,y),x)^2+diff(phi(x,y),y)^2));I use a legal MAPLE 8 version, to be precise.