Connecting Limits at Infinity and Horizontal Asymptotes
Why this matters
Imagine you're on a cross-country road trip, driving west from Chicago. As you cross the vast Great Plains, your elevation might fluctuate a bit, but for hours on end, you're essentially at a steady, flat altitude. Then, you hit the Rocky Mountains, and your elevation shoots up and down dramatically. But once you're past them and heading toward the Pacific coast, your elevation might again level off to a new, stable value near sea level.
In calculus, we're also interested in this "long-term" behavior. We don't just care what a function is doing right here at x=3. We want to know: what happens to the function's value when x gets incredibly large, like on that long, flat stretch of road? Where does the graph "level out"? This is the idea of end behavior, and it's precisely what limits at infinity help us understand.
Concept overview
flowchart TD
A[Start: Find lim x->inf P(x)/Q(x)] --> B{Compare degree of P(x) and Q(x)};
B --> C{deg(P) < deg(Q)?};
C -- Yes --> D[Limit is 0. HA at y=0];
C -- No --> E{deg(P) = deg(Q)?};
E -- Yes --> F[Limit is ratio of leading coefficients. HA at y=ratio];
E -- No --> G[deg(P) > deg(Q)];
G --> H[Limit is +inf or -inf. No HA.];
Core explanation
So far, we've mostly talked about limits as x approaches a specific number, like x → 2. Now, we're asking a different kind of question: What happens to f(x) as x gets unimaginably huge? What is the function's "end behavior"?
This is what we mean by a limit at infinity. We write it like this:
lim_(x→∞) f(x) = L
This notation asks: "As x marches off toward positive infinity, what number L does the function's value f(x) get closer and closer to?"
Similarly, lim_(x→-∞) f(x) = M asks what happens as x becomes a massive negative number.
The Connection to Horizontal Asymptotes
Here's the beautiful, direct connection:
- If
lim_(x→∞) f(x) = L, then the liney = Lis a horizontal asymptote. - If
lim_(x→-∞) f(x) = M, then the liney = Mis a horizontal asymptote.
A function can have up to two different horizontal asymptotes—one for the far right side of the graph (x→∞) and one for the far left (x→-∞). Or, it could have just one, or none at all. The limit tells us exactly what's happening.
Think of the asymptote y=L as a gravitational pull on the function. As x gets huge, the graph gets pulled closer and closer to that line, never quite settling on it but getting infinitesimally close.
The Key Idea: The Humble Fraction 1/x
The most important limit at infinity to understand is this one:
lim_(x→∞) 1/x = 0
Why? Imagine dividing one dollar among your friends. If you have 2 friends, they each get $0.50. If you have 100 friends, they each get a penny. If you have a million friends (x = 1,000,000), each person's share is practically nothing ($0.000001). As the number of friends (x) goes to infinity, the share each one gets (1/x) approaches zero.
The same logic applies to any c/x^n where n > 0:
lim_(x→∞) c/(x^n) = 0 and lim_(x→-∞) c/(x^n) = 0
This little fact is the secret weapon for solving almost all limits at infinity involving fractions.
Comparing Function "Horsepower": The Main Event
When you have a rational function—a polynomial divided by another polynomial—the limit at infinity is like a race between the numerator and the denominator. The term with the highest power of x in each part is the "strongest runner" and ultimately decides the outcome.
Let's look at a function f(x) = P(x) / Q(x), where P(x) and Q(x) are polynomials.
The "formal" way to solve this is to find the highest power of x in the denominator, and then divide every single term in the entire fraction by that power of x. This feels weird at first, but it works because it turns most terms into fractions that go to zero, leaving you with a much simpler problem.
But this process leads to a powerful shortcut based on comparing the degrees (the highest exponents) of the numerator and denominator.
Case 1: Bottom-Heavy (Degree of Numerator < Degree of Denominator)
Example: lim_(x→∞) (3x^2 + 5) / (4x^3 - 7x)
The denominator (4x^3) grows much, much faster than the numerator (3x^2). It's like a rocket ship versus a bicycle. The denominator gets huge so quickly that the overall fraction's value is crushed down toward zero.
- RuleIf the denominator's degree is bigger, the limit is 0.
- Horizontal Asymptote
y = 0.
Case 2: Balanced Powers (Degree of Numerator = Degree of Denominator)
Example: lim_(x→∞) (2x^2 + 1) / (5x^2 - 3x)
Here, the numerator and denominator are more evenly matched. The 2x^2 and the 5x^2 are the leaders of the pack. As x gets enormous, the other terms (+1 and -3x) become insignificant, like a few extra pennies on a multi-million dollar deal. The function's behavior is dominated by the ratio of the strongest terms.
f(x) ≈ (2x^2) / (5x^2) = 2/5
- RuleIf the degrees are equal, the limit is the ratio of the leading coefficients.
- Horizontal Asymptote
y = 2/5.
Case 3: Top-Heavy (Degree of Numerator > Degree of Denominator)
Example: lim_(x→∞) (x^3 - 100) / (x^2 + 5)
The numerator (x^3) is now the powerhouse. It grows much faster than the denominator (x^2). The value of the fraction will grow larger and larger without any bound.
- RuleIf the numerator's degree is bigger, the limit does not exist (DNE). The function goes to
∞or-∞. - Horizontal AsymptoteNone. The function doesn't level off.
Worked examples
Let's walk through a few together. The key is to identify which of the three cases you're dealing with.
Balanced Powers
Problem: Find the horizontal asymptotes of the function f(x) = (8x^2 - 4x) / (2x^2 + 1).
Solution:
To find horizontal asymptotes, we need to evaluate the limits as x → ∞ and x → -∞.
- 1Identify the degrees
- The degree of the numerator (
8x^2 - 4x) is 2. - The degree of the denominator (
2x^2 + 1) is 2.
- The degree of the numerator (
- 2Recognize the caseThe degrees are equal. This is a "Balanced Powers" case.
- 3Find the limitThe limit will be the ratio of the leading coefficients. The leading coefficient in the numerator is 8, and in the denominator, it's 2.
lim_(x→∞) (8x^2 - 4x) / (2x^2 + 1) = 8/2 = 4 - 4Check the other directionFor rational functions, the limit as
x → -∞is the same asx → ∞. So,lim_(x→-∞) f(x) = 4as well. - 5State the conclusionSince the limit in both directions is 4, the function has one horizontal asymptote at
y = 4.
The Sneaky Square Root
Problem: Find lim_(x→-∞) (5x - 2) / sqrt(9x^2 + 4).
Solution: This one is tricky, and it's a favorite type of problem on the AP exam.
- 1Identify the "effective" degrees
- The degree of the numerator (
5x) is 1. - What about the denominator? We have
sqrt(9x^2). The square root ofx^2behaves likex, so the "effective" degree of the denominator is also 1. This looks like a "Balanced Powers" case.
- The degree of the numerator (
- 2Be careful with the limit directionWe are going to
-∞. This is critical. - 3Analyze the denominatorThe term
sqrt(x^2)is technically|x|.- When
x > 0,|x| = x. - When
x < 0,|x| = -x. Since we are going to-∞,xis negative. Therefore,sqrt(x^2)behaves like-x.
- When
- 4Find the limitAs
xgets very large and negative, the function behaves like:f(x) ≈ 5x / sqrt(9x^2) = 5x / (sqrt(9) * sqrt(x^2)) = 5x / (3 * |x|)Since
x → -∞, we use|x| = -x:lim_(x→-∞) 5x / (3 * (-x)) = lim_(x→-∞) 5x / (-3x)Now the
x's cancel, and we get5 / -3 = -5/3.
Why this step is important: If you had just taken sqrt(9x^2) as 3x, you would have gotten 5/3, which is the correct limit as x → ∞ but the wrong answer for this problem. The negative sign matters!
Try it yourself
Ready to try a couple on your own? Don't just jump to the answer—talk yourself through the process of comparing the degrees.
Problem 1:
Find any horizontal asymptotes for the function g(x) = (10x^3 + 2x) / (2x^4 - 5x^2).
Hint: What kind of race is this? Is the numerator or denominator more powerful? What does that mean for the final value as x gets enormous?
Problem 2:
Evaluate the limit: lim_(x→∞) (sqrt(4x^6 - x) / (3x^3 + 1))
Hint: What is the "effective" degree of the numerator? Be careful with that square root. Is this a balanced, top-heavy, or bottom-heavy situation?
In simple terms, limits at infinity describe what value a function approaches as you go infinitely far to the left or right on its graph. This helps us find horizontal asymptotes, which are the lines the graph levels out on.
- LIM-2.D: Interpret the behavior of functions using limits involving infinity.
- LIM-2.D.3
- The concept of a limit can be extended to include limits at infinity.
- LIM-2.D.4
- Limits at infinity describe end behavior.
- LIM-2.D.5
- Relative magnitudes of functions and their rates of change can be compared using limits.
flowchart TD
A[Start: Find lim x->inf P(x)/Q(x)] --> B{Compare degree of P(x) and Q(x)};
B --> C{deg(P) < deg(Q)?};
C -- Yes --> D[Limit is 0. HA at y=0];
C -- No --> E{deg(P) = deg(Q)?};
E -- Yes --> F[Limit is ratio of leading coefficients. HA at y=ratio];
E -- No --> G[deg(P) > deg(Q)];
G --> H[Limit is +inf or -inf. No HA.];
Read what Saavi narrates
(gentle, warm intro music fades)
Hello and welcome to Shrutam. I'm Saavi, and I'm glad you're here.
Today, we're talking about something called limits at infinity. It sounds complicated, but the idea is actually pretty intuitive.
Imagine you're on a cross-country road trip, driving west from Chicago. For hours, your elevation is basically flat. Then you hit the Rocky Mountains, and your elevation goes way up and down. But once you're past them, your altitude levels off again as you approach the coast.
In calculus, we're interested in that "leveling off" part. We want to know: what happens to a function's value when `x` gets incredibly large? Where does the graph "level out"? This is called the end behavior, and it's what limits at infinity help us find. This end behavior directly tells us the location of any horizontal asymptotes on the graph.
Let's try an example together. Let's find the horizontal asymptotes for the function `f(x) = (8x^2 - 4x) / (2x^2 + 1)`.
To do this, we need to see what happens as x goes to infinity. First, look at the highest power of x in the numerator... that's x-squared. And in the denominator... it's also x-squared.
Since the highest powers are the same, this is a "balanced" race. The numerator and denominator are growing at about the same rate. When this happens, the limit is simply the ratio of the numbers in front of those highest powers... our leading coefficients.
In the numerator, the leading coefficient is 8. In the denominator, it's 2.
So, the limit is 8 divided by 2, which is 4.
This means that as you go infinitely far to the right on the graph, the function's value gets closer and closer to 4. The line y equals 4 is our horizontal asymptote.
Now, here's a common place to slip up. Students sometimes think a function can never cross its horizontal asymptote. That's not true! The asymptote just describes the end behavior... what happens way out on the edges of the graph. The function can wiggle around and even cross the line in the middle. Just remember the asymptote is all about where the function is heading in the long run.
Keep practicing this idea of comparing the "horsepower" of the numerator and denominator. You've got this.
(gentle, warm outro music fades in)
When evaluating a limit as `x → -∞`, `x` is a negative number. This means `sqrt(x^2)` simplifies to `-x`, not `x`. This sign flip is a very common trap.
Whenever you see `sqrt(x^2)` in a limit going to negative infinity, immediately replace it with `|x|` and then `-x` to get the sign correct.
A horizontal asymptote must be a finite number, represented by a line `y = L`. Infinity is not a number. If the limit is `∞`, the function is growing without bound, not leveling off.
State that the limit is `∞` (or `-∞`), but conclude that there is **no horizontal asymptote**.
They describe totally different behaviors. Vertical asymptotes are about where the function value blows up because of a division by zero (a domain issue). Horizontal asymptotes are about the end behavior as `x` goes to `±∞`.
Remember: **H**orizontal = **E**nd behavior (`x→∞`). **V**ertical = **D**omain issue (division by zero).
The limit is the ratio of the *leading* coefficients—the ones attached to the highest power of `x`. Grabbing other numbers will give you the wrong ratio.
Explicitly circle the term with the highest degree in the numerator and the denominator. Use the coefficients from those two terms only.
This is a common misconception from pre-calculus. A function can cross its horizontal asymptote, sometimes even infinitely many times (like `f(x) = sin(x)/x`). The asymptote only describes the end behavior—what happens as `x` gets huge.
Understand that the asymptote is a guide for the "ends" of the graph. The behavior in the "middle" (for smaller `x` values) can be anything.