Properties of Limits
Key Questions
-
First, let me summarize the main properties of limits (so we can refer to these below).
Let
x_0 in mathbb{R} and suppose thatlim_{x to x_0} f(x) andlim_{x to x_0} g(x) exist and are finite. Ifc in mathbb{R} is a constant, the main properties of limits are:
1.lim_{x to x_0} [cf(x)]=c[lim_{x to x_0} f(x)]
2.lim_{x to x_0} [f(x) pm g(x)]=[lim_{x to x_0} f(x)] pm [lim_{x to x_0} g(x)]
3.lim_{x to x_0} [f(x)*g(x)]=[lim_{x to x_0} f(x)] * [lim_{x to x_0} g(x)]
4. Iflim_{x to x_0} g(x) ne 0 then we can state that
lim_{x to x_0} [f(x)/g(x)]=[lim_{x to x_0} f(x)] / [lim_{x to x_0} g(x)]
These properties are really helpful in the computation of limits (beware the conditions stated at the beginning!): you can work by splitting limits into smaller (and hopefully) simpler parts.
Let's see a first example for property number 2:
lim_{x to 0} [e^x + log(x+1)]
It would be very annoying to solve this limit using the definition. But we can computelim_{x to 0} e^x=1 andlim_{x to 0} log(x+1)=0 (I assume that the computation of these is done using the definition of limit, but I omit the calculation for space reasons). These two limits exist and are finite, so the conditions stated at the beginning hold. By the second property, the sum of these is the value of the initial limit:lim_{x to 0} [e^x + log(x+1)]=1+0=1 .Now an example where we focus on property number 4:
lim_{x to 0} {4x-3}/{x+1} . If we computelim_{x to 0} (4x-3)=lim_{x to 0} (4x)-3=4 * lim_{x to 0} (x) -3=4*0-3=-3 (first we applied property number 2 and then property number 1 - all the conditions hold) andlim_{x to 0} (x+1)=lim_{x to 0} (x) +1=0+1=1 (by property number 2), then we see that the conditions necessary to use the fourth property (existence and finiteness) hold. So we getlim_{x to 0} {4x-3}/{x+1}={lim_{x to 0} (4x-3)}/{lim_{x to 0} (x+1)}={-3}/1=-3
In these examples, the functions involved are continuous functions. Limits dealing with continuous functions are often easy to solve: if
f is continuous inx=x_0 , thenlim_{x to x_0} f(x)=f(x_0) (this is often taken as the definition of continuity). Continuous functions are exactly the ones for which a simple substitutionx=x_0 solves the limit, and they don't let us see the importance of the properties listed at the top.To better appreciate the properties listed above, let's see a case in which they aren't valid. To come up with these examples, it's necessary to involve non-continuous functions:
lim_{x to 0} [|x|/x * sin(x)] . In this case, we can't evaluatelim_{x to 0} |x|/x andlim_{x to 0} sin(x) separately and then consider their product (trying to use property 3). In factlim_{x to 0} |x|/x doesn't exist! How could we multiply a value that doesn't exist? A way to solve it is to rewrite it in this form:lim_{x to 0} [|x| * sin(x)/x] . Now we can use the third property, in factlim_{x to 0} |x|=0 andlim_{x to 0} sin(x)/x=1 (this is one of the so-called notable limits), so they both exist and are finite! We can conclude thatlim_{x to 0} [|x| * sin(x)/x]=[lim_{x to 0} |x|] * [lim_{x to 0} sin(x)/x]=0 * 1 = 0 -
Asymptotes are defined using limits.
Definition
A line
x=a is called a vertical asymptote of a functionf(x) if at least one of the following limits hold.lim_{x to a^-}f(x)=pminfty orlim_{x to a^+}f(x)=pminfty Definition
A line
y=b is called a horizontal asymptote off(x) if at least one of the following limits holds.lim_{x to +infty}f(x)=b orlim_{x to -infty}f(x)=b
I hope that this was helpful.