What a function does far out, and how the two kinds of asymptote come from two different limits.
By the end of this chapter you can
Evaluate a limit as x grows without bound
Find horizontal asymptotes by comparing degrees
Distinguish a vertical asymptote from a hole
Rank the growth rates that decide every such limit
So far the input has approached a finite point. Let it run off instead:
x→∞ asks what the function settles down to far out, and the answer is
a horizontal asymptote when there is one.
This is the same limit idea with a different approach, and the technique is
different too — nothing to factor and cancel, because nothing is 00.
The competition is between things growing.
The one move: divide by the dominant term
For a ratio of polynomials, divide top and bottom by the highest power of x
appearing anywhere in the fraction. Every term then either survives as a
constant or dies as xkc→0.
Those three outcomes are the only ones, and a degree comparison predicts which
without doing any work:
Degrees
Limit
Asymptote
top < bottom
0
y=0
top = bottom
ratio of leading coefficients
y= that ratio
top > bottom
±∞
none (horizontal)
Roots need care about sign
x2=∣x∣, not x. Going to +∞ that distinction is invisible;
going to −∞ it flips the answer’s sign.
x→∞limx4x2+1=2butx→−∞limx4x2+1=−2
x→∞lim(x4x2+1)=2
x→−∞lim(x4x2+1)=−2
checked by the build
Both are verified above, and they differ. A student who writes x2=x
gets the second one wrong and has no way to notice.
Which grows faster
Beyond polynomials, limits at infinity are decided by a ranking. Each of these
beats everything to its left, eventually and permanently:
lnx≪xp≪ex≪x!
“Eventually” is doing real work in that sentence. x100 is vastly larger
than ex for a long time — they cross somewhere past x≈1000 — and
after the crossing the exponential wins by margins that grow without bound.
A table of small values would tell you the opposite of the truth.
x→∞lim(xlog(x))=0
x→∞lim(x5e−x)=0
x→∞lim(x100ex)=∞
checked by the build
The middle claim is the useful one: any power divided by an exponential tends
to zero. It settles most questions of this kind on sight.
Vertical asymptotes
A horizontal asymptote comes from x→∞. A vertical one comes from
the other kind of limit — a finite point where the function grows without bound.
For a rational function, that is a zero of the denominator which is not also a
zero of the numerator. When it is a zero of both, the factor cancels and you get
a hole instead.
(x−1)(x+2)x−1
has a hole at x=1 and a vertical asymptote at x=−2 — the same expression
producing both kinds of behaviour, distinguished only by whether the factor
cancels.
x+21=x+21
x→1limx+21=31
checked by the build
At x=1 the limit is a perfectly ordinary 31 — the hole is invisible
to the limit, which is chapter 1.1’s point arriving again. At x=−2 nothing
cancels, and there is no limit at all.
{
"question": "What is the limit of (5x³ − 2x)/(x³ + 4) as x → ∞?",
"options": [
{
"text": "5, the ratio of the leading coefficients",
"correct": true,
"why": "Equal degrees, so dividing top and bottom by x³ leaves (5 − 2/x²)/(1 + 4/x³), and both fractions vanish. The horizontal asymptote is y = 5."
},
{
"text": "∞, because the numerator has the larger coefficient",
"correct": false,
"why": "Coefficients do not decide growth — degree does, and these degrees are equal. A larger coefficient scales the ratio, it does not make it diverge."
},
{
"text": "0, because both parts grow without bound",
"correct": false,
"why": "Both growing is what makes it indeterminate, not what makes it zero. You get 0 only when the denominator grows strictly faster, which needs a higher degree below."
},
{
"text": "It does not exist, since ∞/∞ is undefined",
"correct": false,
"why": "∞/∞ is indeterminate, which means the form alone decides nothing — exactly like 0/0. Doing the division resolves it to 5."
}
]
}