0

I have this function:

$f(x,y)= \frac{2xy}{x^2+y^2}$ if $(x,y)$ is not $(0,0)$.

Now I want to prove that this function is continuous. I have tried using the epsilon delta method, but I don't really know if it works with a two variables function. The $|f(x)-f(a)|$ seems to get very complicated, because of the $(x,y)-(a_1,a_2)$. How should I approach this proof?

hgmath
  • 1,830
Carm
  • 1

1 Answers1

2

Your function is continuous as a composition of continuous functions on $\mathbb{R}^2 \backslash \{(0,0)\}$ as DonAntonio suggested.

Real Analysis: Continuity of a Composition Function

$z(x,y) = \frac{x}{y}$,

$g(x,y) = 2xy$

$h(x,y) = x^2+y^2$

Then $f(x,y) = z(g(x,y),h(x,y))$

lpnorm
  • 727