6

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.

  1. How to show that?
  2. 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) $$

User
  • 887
  • 1
    Could it be because Wolfram is concerned that $\lim_{z\rightarrow0} zi \sin(\dfrac{1}{zi}) \neq \lim_{z\rightarrow0} z \sin(\frac{1}{z})$. That might explain the error Wolfram gives – user73445 May 04 '13 at 22:07
  • 1
    Is there a way to specify that $x,y$ are real when using wolfram? – TCL May 04 '13 at 22:26
  • 1
    It also depends on exactly how you define limits. (If you require the function to be defined in a full punctured neighborhood of the points you approach or not.) See http://math.stackexchange.com/questions/283747 for some more discussions. – mrf May 04 '13 at 22:33
  • @TCL Surprisingly it doesn't seem to allow the usual Mathematica syntax 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

1 Answers1

1

1) The limit clearly exists since $\sin$ is bounded and $xy\rightarrow 0$.

2) In this problem you can. In a problem such as $\lim_{(x,y)\rightarrow (0,0)}\frac{x}{y}$ you run into trouble because you seem to suggest that it's ok to write it as $\lim_{z\rightarrow 0}\frac{z}{z}=1$ and that's wrong. To see why it's wrong, $x/y$ can be arbitrarily large if you keep $x$ fixed and make $y$ smaller.

Alex R.
  • 32,771