Is there a step by step checklist to check if a multivariable limit exists and find its value?

Solution 1:

I wouldn't say there's a "step by step" method for all limits, as many require individual analysis and sometimes a clever observation, but I've assembeled a list of general techniques (I also used this to answer this question).

In general, it is much easier to show that a limit does not exist than it is to show a limit does exist, and either case might require a clever insight or tricky manipulation. There are a few common ways of working with multi-variable functions to obtain the existence or nonexistence of a limit:

  1. Try different paths. That is, parameterize $x$ and $y$ as $x = x(t)$, $y = y(t)$ such that $(x(0),y(0)) = (a,b)$, where $(a,b)$ is the point you want to approach in the limit. This is usually the first resort, and if the paths are chosen judiciously, you will obtain two different answers, which implies the nonexistence of the limit, because for the limit to exist, it must have the same value along every possible path. Note that this test can only be used to show nonexistence: to prove a limit exists requires more work.
  2. Use polar or spherical coordinates. This approach can prove that the limit exists in special cases, and it can also show that limits do not exist, because they may depend on the path ($\theta$). It's a good idea to use when you have something that looks like $x^2 + y^2$ or $x^2 + y^2 + z^2$ that is troublesome, as these simply become $r^2$ after the substitution. We write $x = r\cos\theta$, $y = r\sin\theta$, and as the limits are usually taken as $(x,y)\to (0,0)$, we now must look at what happens as $r\to 0^+$. Sometimes, this will depend on $\theta$, which corresponds to a specific path ($\theta$ controls the direction), and sometimes, the $r$ will dominate and leave you with an expression where $\theta$ does not matter - in this case, the limit exists. However, one must be careful, because there are some expressions that might seem to be independent of $\theta$ as $r\to 0^+$, but are not: for example, take $$ r\frac{\cos^2\theta\sin^2\theta}{\cos^3\theta + \sin^3\theta}. $$ For any constant $\theta$ such that the denominator exists (and is nonzero), the limit as $r\to 0^+$ is $0$, but there are certain paths $\theta = \theta(r)$ along which the value of the limit will not be $0$.
  3. $\delta - \epsilon$ proofs: When correct, these show the existence of a limit. However, one must already know what the limit is before this type of proof is possible. If you are unfamiliar with $\delta - \epsilon$ arguments, the statement is: Given a function $f : \mathbb{R}^n\to\mathbb{R}$, we say $$ \lim_{\vec{x}\to\vec{x}_0} f(\vec{x}) = L $$ if for every $\epsilon > 0$, there exists a $\delta > 0$ such that $\left|\,f(\vec{x}) - L\right| < \epsilon$ whenever $d(\vec{x}, \vec{x}_0) < \delta$. Here, $d(\vec{x}, \vec{x}_0)$ refers to the distance in Euclidean $n$-space (for example, with $n = 2$ we have $d((a,b), (c,d)) = \sqrt{(a - c)^2 + (b - d)^2}$.) This approach should be used if you are already convinced that the limit exists and is equal to $L$.
  4. Use algebra and theory. You have probably seen that the product and sum of continuous functions are continuous, and that for continuous functions, the limit can be evaluated by "plugging in." Furthermore, if $f$ is continuous, then you can move a limit on the outside to a limit on the inside: $\lim_{p\to a} f(g(p)) = f(\lim_{p\to a} g(p))$. If you can identify that your function is continuous, or at least becomes continuous after algebraic manipulation (e.g. canceling a "bad factor" from the denominator), you can use the theorems to say that the limit exists. Another useful theorem is the squeeze theorem: if you can cleverly bound your function on both sides by two functions tending to the same limit, you know the limit exists.
  5. As Norbert notes, another useful technique is expanding your non-elementary functions in Taylor series and using big $O$ notation. You can usually convert the troublesome limit into a quotient and expand the non-elementary functions near the point in question to get a polynomial of sufficiently high degree in both the numerator and the denominator (plus an error term that doesn't play much of a role): i.e. your function $\frac{f(t)}{g(t)}$, where $f$ and $g$ are combinations of functions whose growth you don't know much about, becomes $\frac{P(t) + O(t^n)}{Q(t) + O(t^n)}$, where $P$ and $Q$ are polynomials, and $$ \lim_{t\to 0}\frac{P(t) + O(t^n)}{Q(t) + O(t^n)} = \lim_{t\to 0}\frac{P(t)}{Q(t)}, $$ because the error terms ($O$ terms) are negligible. Some examples for the one variable case can be found here, and the multivariable case works the same, only using the multivariable version of Taylor's theorem.

Solution 2:

I think there is no common method for all types of limits. You need significantly decrease the range of possible functions to get at least some kind of a road map.

For this two particular limits I suggest you the following two "brand new" approaches:

  1. The first one is usage of equivalences (or more general use of Taylor series expansion). Since $\sin x\sim x$ and $e^y-1\sim y$ we get $$ \begin{align} \lim\limits_{(x,y)\to(0,0)}\frac{\sin^2 x(e^y-1)}{x^2+3y^2}&= \lim\limits_{(x,y)\to(0,0)}\frac{x^2 y}{x^2+3y^2}\frac{\sin^2 x}{x^2}\frac{e^y-1}{y}\\ &=\left(\lim\limits_{(x,y)\to(0,0)}\frac{x^2 y}{x^2+3y^2}\right)\left(\lim\limits_{(x,y)\to(0,0)}\frac{\sin^2 x}{x^2}\right)\left(\lim\limits_{(x,y)\to(0,0)}\frac{e^y-1}{y}\right)\\ &=\lim\limits_{(x,y)\to(0,0)}\frac{x^2 y}{x^2+3y^2}\\ \end{align} $$ The last limit does exists and equals $0$. Indeed $$ 0\leq \left|\frac{x^2y}{x^2+3y^2}\right|=\frac{x^3|y|}{x^2+3y^2}\leq\frac{x^2|y|}{2\sqrt{3}xy}=\frac{1}{2\sqrt{3}}x\;\mathrm{sign}\; y $$ $$ \lim\limits_{(x,y)\to(0,0)}\frac{1}{2\sqrt{3}}x\;\mathrm{sign}\; y=0 $$ Hence by mean value theorem $$ \lim\limits_{(x,y)\to(0,0)}\frac{x^2 y}{x^2+3y^2}=0 $$ so $$ \lim\limits_{(x,y)\to(0,0)}\frac{\sin^2 x(e^y-1)}{x^2+3y^2}=0 $$

  2. The second one is usage of continuiuty of fucntions. In your particular case this is $\exp$, then $$ \lim\limits_{(x,y)\to(0,0)}\exp\left(-\frac{x^2+y^2}{x^4+3y^6}\right)=\exp\left(-\lim\limits_{(x,y)\to(0,0)}\frac{x^2+y^2}{4x^4+y^6}\right) $$ Now we introduce polar coordinates to evaluate the internal limit $$ \begin{align} \lim\limits_{(x,y)\to(0,0)}\frac{x^2+y^2}{4x^4+y^6}&= \lim\limits_{r\to 0}\frac{r^2}{4r^4\cos^4\phi+r^6\sin^6\phi}\\ &=\lim\limits_{r\to 0}\frac{1}{r^2(4\cos^4\phi+r^2\sin^6\phi)} \end{align} $$ Again we use inequalities $$ r^2(4\cos^4\phi+r^2\sin^6\phi)\leq r^2(4\cos^2\phi+r^2\sin^2\phi)\\\leq r^2\max(4,r^2)(\cos^\phi+\sin^2\phi)=r^2\max(4,r^2) $$ and even more for $r<2$ we can say that $$ r^2(4\cos^4\phi+r^2\sin^6\phi)\leq r^2\max(4,r^2)\leq 4r^2 $$ hence $$ \begin{align} \lim\limits_{(x,y)\to(0,0)}\frac{x^2+y^2}{4x^4+y^6}&= \lim\limits_{r\to 0}\frac{1}{r^2(4\cos^4\phi+r^2\sin^6\phi)}\\ &\geq\lim\limits_{r\to 0}\frac{1}{4r^2}=+\infty \end{align} $$ and $$ \lim\limits_{(x,y)\to(0,0)}\exp\left(-\frac{x^2+y^2}{x^4+3y^6}\right)=\exp(-\infty)=0 $$