I want to show that the function $f : \mathbb{R}\times \mathbb{R} \to \mathbb{R}$ defined by
$ f(x,y)= \begin{cases} \frac{xy}{x^{2}+y^{2}},& \text{if } (x,y)\neq (0,0)\\ 0, & \text{otherwise} \end{cases} $
is continuous on $\mathbb{R} \times \mathbb{R} \setminus{(0,0)}$.
Here is my approach so far:
Fix $(x_{0},y_{0}) \in \mathbb{R} \times \mathbb{R} \setminus{(0,0)}$. We will show $f$ is continuous here, that is:
$\forall$ $\epsilon > 0$, $\exists \ \delta > 0$ such that
$d((x,y),(x_{0},y_{0})) < \delta \implies |f(x,y) - f(x_{0},y_{0})| < \epsilon$
I'm not sure which metric to use for the delta condition yet, but let's say I use $d((x,y),(x_{0},y_{0})) = |x-x_0| + |y - y_{0}|$.
the epsilon conditions holds if and only if
$$|\frac{xy}{x^{2}+y^{2}}-\frac{x_{0}y_{0}}{x_{0}^{2}+y_{0}^{2}}| < \epsilon$$ $$ \iff |\frac{xx_{0}(yx_{0}-xy_{0})+yy_{0}(xy_{0}-yx_{0})}{x^{2}+y^{2}}| < \epsilon|x_{0}^2 + y_{0}^2| := \epsilon'$$
Now, it's relatively easy to bound the terms in the numerator, given $|x-x_0| + |y - y_{0}| < \delta$. But I'm having a lot of trouble trying to show that $|x^{2}+y^{2}|> \eta$, for some $\eta > 0$. Surely this must be true, since if $(x,y)$ is close to $(x_{0},y_{0})$, then $x^{2}+y^{2}$ must be close to $x_{0}^{2} + y_{0}^{2}$.
Is this the right direction to head with this proof? Can I find a lower bound for $|x^{2}+y^{2}|$ using the triangle inequality?