I've tried to get the following limit:
$$ \lim_{(x,y)\rightarrow(0,0)} xy\sin\left(\frac{1}{xy}\right) $$
wolfram claims it doesn't exist.
- How to show that?
- Why can't I take $z=xy$ and receive a known limit of one variable?
$$ \lim_{z\rightarrow0} z \sin\left(\frac{1}{z}\right) $$
Assuming[Element[x | y, Reals], Limit[x*y*Sin[1/(x*y)], x->0, y->0]]. Although when I run the query even without Assuming it gives me 0 as the result with a footnote assuming x,y are reals. – Voo May 14 '14 at 11:47