Evaluating Limits

by Justin Skycak on

The limit of a function, as the input approaches some value, is the output we would expect if we saw only the surrounding portion of the graph.

This post is a chapter in the book Justin Math: Calculus. Suggested citation: Skycak, J. (2019). Evaluating Limits. Justin Math: Calculus. https://justinmath.com/evaluating-limits/


The limit of a function $f(x)$, as $x$ approaches some value $a$, is the value we would expect for $f(a)$ if we saw only the portion of the graph around (but not including) $x=a$. If the resulting value is $L$, then we denote the limit as follows:

$\lim\limits_{x \to a} f(x) = L$


Limit vs Function Value

For example, for the function $f(x)=x^2$, the limit as $x\to 2$ is the same as the actual value of the function, which is $4$.

icon


On the other hand, for the function

\begin{align*} f(x) = \begin{cases} x^2 &\text{if } x \neq 2 \\ 1 &\text{if } x=2 \end{cases} \end{align*}


the limit as $x \to 2$ is not the same as the actual value of the function: the limit is $4$, while the actual value of the function is $f(x)=2$.

Remember, the limit is the value we would expect if we only saw the surrounding parts of the graph – and in this graph, the surrounding y-values get closer and closer to $4$ as the x-value gets closer and closer to $2$.

Based on this, we expect that the y-value is $4$, so we say the limit is $4$, even though our expectation here is incorrect. The limit is still $4$, and it is different from the actual function value $f(2)=1$.

icon


Continuity

Most of the functions we’re familiar with from algebra are continuous, meaning that the actual output value $f(a)$ is the same as the limit as $x\to a$.

However, for discontinuous functions such as some piecewise functions and rational functions, the limit as $x\to a$ might be different from the actual output value $f(a)$.

If a function can be drawn in a single stroke, then it is continuous, and the limits are the same as the function values. However, if you need to pick up your pen at some point while drawing the function, then the function is discontinuous, and some limits might be different from the actual function values.

Existence of Limits

Sometimes, limits don’t even exist. For example, for the function

\begin{align*} f(x) = \begin{cases} -x-3 &\text{if } x \leq -1 \\ x+4 &\text{if } x > -1 \end{cases} \end{align*}


the limit comes out to different values, depending on whether we approach $x\to -1$ from the left (denoted $x \to -1^-$) or the right (denoted $x \to -1^+$).

  • • Coming from the left, we are on the piece $f(x)=-x-3$, so the limit is $-(-1)-3=-2$.
  • • Coming from the right, we are on the piece $f(x)=x+4$, so the limit is $-1+4=3$.
icon


In general, a limit exists when its left and right limits are equal, and does not exist if its left and right limits are not equal.

For example, for the function $f(x)=\frac{1}{x^2}$, we have $\lim\limits_{x\to 0} f(x) = \infty$ because $\lim\limits_{x \to 0^-} f(x)=\infty$ and $\lim\limits_{x \to 0^+} f(x)=\infty$.

On the other hand, for the function $f(x)=\frac{1}{x}$, we have that $\lim\limits_{x \to 0} f(x)$ does not exist because $\lim\limits_{x \to 0^-} f(x)=-\infty$ while $\lim\limits_{x \to 0^+} f(x)= \infty$.

icon


Limits at Infinity

One exception to the rule that left and right limits must be equal is limits at infinity, i.e. limits with $x \to \infty$ or $x \to -\infty$. In this case, it doesn’t make sense to talk about a limit in more than one direction, because we can’t choose numbers greater than $\infty$, and we can’t choose numbers more negative than $-\infty$. As a consequence, limits with $x \to \infty$ are just taken as left limits ($x \to \infty^-$), and limits with $x \to -\infty$ are just taken as right limits ($x \to -\infty^+$).

Limits at infinity can be thought of in terms of end behavior and horizontal asymptotes. For example, the polynomial $p(x)=-x^3+x^2+5$ has end behavior $p(x) \to -\infty$ as $x \to \infty$, and $p(x) \to \infty$ as $x \to -\infty$. Its limits at infinity are then $\lim\limits_{x \to \infty} p(x) = -\infty$, and $\lim\limits_{x \to -\infty} p(x) = \infty$.

icon


On the other hand, the end behavior of the rational function $r(x) = \frac{-2x}{x+1}$ consists of a horizontal asymptote $y=-2$. As a result, its limits at infinity are $\lim\limits_{x \to \infty} r(x)=-2$, and $\lim\limits_{x \to -\infty} r(x) = -2$.

icon


The exponential function $f(x)=2^x+3$ has mixed end behavior: it blows up to infinity as $x \to \infty$, and settles down towards an asymptote $y=3$ as $x \to -\infty$. Consequently, its limits at infinity are $\lim\limits_{x \to \infty} f(x) = \infty$, and $\lim\limits_{x \to -\infty} f(x) = 3$.

icon


Indeterminate Form

Some limits like the one below can be difficult to think about graphically, because the function itself is difficult to graph.

\begin{align*} \lim\limits_{x \to 0} \dfrac{ \sqrt{x+1} - 1}{x} \end{align*}


At first sight, it’s not clear how the function behaves as $x$ approaches $0$. We can’t evaluate the function at $x=0$ because it is undefined there, and it’s not easy to see what happens as $x \to 0^+$ or $x \to 0^-$, since both the numerator and denominator go to $0$. (Therefore, we say that the limit is indeterminate in its current form.)

Thankfully, algebraic tricks can often be used to simplify difficult limits into easier limits. In this case, if we multiply the numerator and denominator by the conjugate of the numerator, then we can simplify the limit to a point where we are able to evaluate the function at $x=0$.

$\begin{align*}\lim\limits_{x\to 0} \frac{\sqrt{1+x}-1}{x} &= \lim\limits_{x\to 0} \frac{\sqrt{1+x}-1}{x} \cdot \frac{\sqrt{1+x}+1}{\sqrt{1+x}+1} \\ &= \lim\limits_{x\to 0} \frac{(1+x)-1}{x \left( \sqrt{1+x}+1 \right)} \\ &= \lim\limits_{x\to 0} \frac{x}{x \left( \sqrt{1+x}+1 \right)} \\ &= \lim\limits_{x\to 0} \frac{1}{ \sqrt{1+x}+1 } \\ &= \frac{1}{ \sqrt{1+0}+1 } \\ &= \frac{1}{2} \end{align*}$


Similarly, to solve indeterminate limits where the numerator and denominator are both polynomials, we can often simplify the limit by factoring and canceling common factors:

$\begin{align*} \lim\limits_{x \to -2} \frac{x^2-x-6}{x+2} &= \lim\limits_{x \to -2} \frac{(x+2)(x-3)}{x+2} \\ &= \lim\limits_{x \to -2} x-3 \\ &= -2-3 \\ &= -5 \end{align*}$


Estimating Limits Numerically

Another trick for evaluating limits is thinking about them numerically. We can try substituting a number for $x$ that is close to the intended limit in each direction, and doesn’t make computations too hard.

For example, to evaluate the limit

$\begin{align*} \lim\limits_{x \to -2} \frac{x^2-x-6}{x+2} \end{align*}$


numerically, we can approximate the left and right limits by substituting $x=-2.001$ and $x=-, respectively.

$\begin{align*} \lim\limits_{x \to -2^-} \frac{x^2-x-6}{x+2} \approx \frac{(-2.001)^2-(-2.001)-6}{-2.001+2} = -5.001 \end{align*}$


$\begin{align*} \lim\limits_{x \to -2^+} \frac{x^2-x-6}{x+2} \approx \frac{(-1.999)^2-(-1.999)-6}{-1.999+2} = -4.999 \end{align*}$


Both the left and right limits are approximately $-5$, so we would estimate the limit to be $-5$. Indeed, this matches the result we found earlier.

One caveat to numerical evaluation is that it always results in decimal approximations, and if the actual limit value is irrational, it can be difficult to find the exact value of the limit.

In a simple case, we might be able to recognize that an approximation of $1.4142$ actually corresponds to the value $\sqrt{2}$. However, in a trickier case, we might not be able to recognize that an approximation of $1.1547$ actually corresponds to the value $\frac{2}{\sqrt{3}}$.

Exercises

Evaluate the indicated limits. If the limit does not exist, list the left and right limits separately (if applicable). (You can view the solution by clicking on the problem.)

$\begin{align*}1) \hspace{.5cm} &f(x) = \frac{1}{3}x+1 \\ &\lim\limits_{x\to -6} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$-1$


$\begin{align*}2) \hspace{.5cm} &f(x) = 3x^2+x-4 \\ &\lim\limits_{x\to 2} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$10$


$\begin{align*}3) \hspace{.5cm} &f(x) = \begin{cases} x+9 &\mbox{if } x>-3 \\ x^2+x &\mbox{if } x \leq -3 \end{cases} \\ &\lim\limits_{x\to -3} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$6$


$\begin{align*}4) \hspace{.5cm} &f(x) = \begin{cases} x^2-1 &\mbox{if } x \geq 2 \\ 2x+1 &\mbox{if } x < 2 \end{cases} \\ &\lim\limits_{x\to 2} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$\begin{align*} &\text{does not exist} \\ &\text{left: } 5 \text{, right: } 3 \end{align*}$


$\begin{align*}5) \hspace{.5cm} &f(x) = \begin{cases} x^3+x &\mbox{if } x > 5 \\ 2x-3 &\mbox{if } x \leq 5 \end{cases} \\ &\lim\limits_{x\to 0} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$-3$


$\begin{align*}6) \hspace{.5cm} &f(x) = \begin{cases} 1+\sin x &\mbox{if } x > \frac{\pi}{2} \\ \cos x &\mbox{if } x \leq \frac{\pi}{2} \end{cases} \\ &\lim\limits_{x\to \pi} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$1$


$\begin{align*}7) \hspace{.5cm} &f(x) = \begin{cases} \sin x &\mbox{if } x \geq -\pi \\ \cos \left( x+\frac{\pi}{2} \right) &\mbox{if } x < -\pi \end{cases} \\ &\lim\limits_{x\to -\pi} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$0$


$\begin{align*}8) \hspace{.5cm} &f(x) = \begin{cases} \tan x &\mbox{if } x \geq 1 \\ \ln x &\mbox{if } x < 1 \end{cases} \\ &\lim\limits_{x\to 1} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$\begin{align*} &\text{does not exist} \\ &\text{left: } 0 \text{, right: } \tan 1 \end{align*}$


$\begin{align*}9) \hspace{.5cm} &f(x) = \frac{1}{(x-3)^2} \\ &\lim\limits_{x\to 3} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$\infty$


$\begin{align*}10) \hspace{.5cm} &f(x) = \frac{-3}{(x+2)^4} \\ &\lim\limits_{x\to -2} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$-\infty$


$\begin{align*}11) \hspace{.5cm} &f(x) = | \tan x | \\ &\lim\limits_{x\to \frac{\pi}{2}} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$\frac{1}{2}$


$\begin{align*}12) \hspace{.5cm} &f(x) = \frac{1}{\sin x} \\ &\lim\limits_{x\to 0} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$0$


$\begin{align*}13) \hspace{.5cm} &f(x) = \frac{1}{1-\cos x} \\ &\lim\limits_{x\to 0} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$asdf$


$\begin{align*}14) \hspace{.5cm} &f(x) = \begin{cases} -\frac{1}{x} &\mbox{if } x > 0 \\ \frac{1}{x} &\mbox{if } x \leq 0 \end{cases} \\ &\lim\limits_{x\to 0} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$\text{does not exist}$


$\begin{align*}15) \hspace{.5cm} &f(x) = \frac{x}{2x+1} \\ &\lim\limits_{x\to \infty} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$asdf$


$\begin{align*}16) \hspace{.5cm} &f(x) = 4^{x-3} \\ &\lim\limits_{x\to -\infty} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$-2$


$\begin{align*}17) \hspace{.5cm} &f(x) = 3+2\sin x \\ &\lim\limits_{x\to \infty} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$\infty$


$\begin{align*}18) \hspace{.5cm} &f(x) = \frac{2x}{\sqrt{1+x^2}} \\ &\lim\limits_{x\to -\infty} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$-2$


$\begin{align*}19) \hspace{.5cm} &f(x) = \log_2 x \\ &\lim\limits_{x\to \infty} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$\infty$


$\begin{align*}20) \hspace{.5cm} &f(x) = \frac{\log_3 x}{\log_2 x} \\ &\lim\limits_{x\to \infty} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$\frac{\log 2}{\log 3}$


$\begin{align*}21) \hspace{.5cm} &f(x) = \frac{x^2+3x+2}{x+1} \\ &\lim\limits_{x\to -1} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$1$


$\begin{align*}22) \hspace{.5cm} &f(x) = \frac{2x^2-13x+15}{x-5} \\ &\lim\limits_{x\to 5} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$7$


$\begin{align*}23) \hspace{.5cm} &f(x) = \frac{x^2-5x+6}{4-x^2} \\ &\lim\limits_{x\to 2} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$\frac{1}{4}$


$\begin{align*}24) \hspace{.5cm} &f(x) = \frac{x^2-9}{(x-3)^3} \\ &\lim\limits_{x\to 3} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$\infty$


$\begin{align*}25) \hspace{.5cm} &f(x) = \frac{x^3+x^2-x-1}{x^2-1} \\ &\lim\limits_{x\to 1} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$2$


$\begin{align*}26) \hspace{.5cm} &f(x) = \frac{4-x^2}{x^2-4x+4} \\ &\lim\limits_{x\to 2} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$\begin{align*} &\text{does not exist} \\ &\text{left: } \infty \text{, right: } -\infty \end{align*}$


$\begin{align*}27) \hspace{.5cm} &f(x) = \frac{\sqrt{3+2x}-\sqrt{3}}{x} \\ &\lim\limits_{x\to 0} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$\frac{1}{\sqrt{3}}$


$\begin{align*}28) \hspace{.5cm} &f(x) = \frac{\sqrt{4+3x^2}-2}{x^2} \\ &\lim\limits_{x\to 0} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$\frac{3}{4}$


$\begin{align*}29) \hspace{.5cm} &f(x) = \frac{\sqrt{x^2-1}-\sqrt{3}}{x+2} \\ &\lim\limits_{x\to -2} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$-\frac{2}{\sqrt{3}}$


$\begin{align*}30) \hspace{.5cm} &f(x) = \frac{\sqrt{x+1}+1}{x^2} \\ &\lim\limits_{x\to 0} f(x) = \underline{\hspace{.5cm}} \end{align*}$
Solution:
$\infty$



This post is a chapter in the book Justin Math: Calculus. Suggested citation: Skycak, J. (2019). Evaluating Limits. Justin Math: Calculus. https://justinmath.com/evaluating-limits/