Free for students · Ad-free · WCAG 2.1 AA Compliant · Accessibility

Connecting Limits at Infinity and Horizontal Asymptotes

Lesson ~10 min read

In simple terms: In simple terms, limits at infinity describe where a graph levels off as you look far to the left or right, which corresponds to its horizontal asymptote.

Why this matters

Imagine you're on a cross-country road trip, driving from Chicago to Los Angeles. When you start, your car's GPS might estimate an arrival time of "45 hours." After a few hours on the wide-open highway in Nebraska, you check again. It says "38 hours." A few hours later, "31 hours."

But what if you could just keep driving on a perfectly straight road, forever? What would happen to the average speed for your entire trip? Initially, it would jump around. But after thousands of miles, adding one more mile at 70 mph barely changes your overall average. Your average speed would get closer and closer to a single, stable value.

That's exactly what a limit at infinity is. We're not plugging "infinity" into a function. We're asking: as our input x gets astronomically large, does our output y settle down and approach one specific number? Let's find out how.

Concept overview

flowchart TD
    A[Start: Find limit of rational function as x -> infinity] --> B{Compare degree of Numerator (N) and Denominator (D)};
    B --> C{N < D? (Bottom-Heavy)};
    C -- Yes --> D[Limit is 0. Horizontal Asymptote: y = 0];
    C -- No --> E{N = D? (Balanced)};
    E -- Yes --> F[Limit is ratio of leading coefficients. HA: y = ratio];
    E -- No --> G{N > D? (Top-Heavy)};
    G -- Yes --> H[Limit is infinity or -infinity. No Horizontal Asymptote.];
This diagram is a flowchart that guides users on how to find the limit of a rational function at infinity. It starts with a decision point to compare the degrees of the numerator and denominator, then branches into three paths: Bottom-Heavy (limit is 0), Balanced (limit is a ratio), and Top-Heavy (no finite limit).

Core explanation

Hello! I'm Saavi, and I'm here to help you connect some important ideas in calculus. Today, we're talking about what happens at the "ends" of a graph.

What is a Limit at Infinity?

In previous lessons, we looked at limits as x approached a specific number, like c. We asked, "What y-value are we getting closer to as our x-value gets closer to c?"

Now, we're going to ask a different question:

What y-value does the function approach as x gets infinitely large (goes to ) or infinitely small (goes to -∞)?

This is the end behavior of the function. We write it like this:

lim_{x→∞} f(x) or lim_{x→-∞} f(x)

Think of it like that cross-country road trip. As the miles x pile up into the thousands and millions, does the function's value f(x) level off and get super close to a single number L?

If it does, we say the limit is L. And this L has a very important graphical meaning.

The Connection: Horizontal Asymptotes

If lim_{x→∞} f(x) = L or lim_{x→-∞} f(x) = L, then the line y = L is a horizontal asymptote of the graph of f(x).

A horizontal asymptote is like a guideline for the graph at its extreme ends. It's the value the function snuggles up to as x runs off the edge of the coordinate plane.

The "Tug-of-War": Finding Limits of Rational Functions

So, how do we actually find these limits without graphing? For rational functions (a polynomial divided by a polynomial), there's a fantastic method that I call the "Tug-of-War."

Imagine the numerator and the denominator are in a tug-of-war to see who grows faster as x gets huge. The winner is determined by the degree, which is the highest exponent in a polynomial.

Let's look at a function f(x) = N(x) / D(x), where N(x) is the numerator and D(x) is the denominator.

Case 1: Bottom-Heavy (Degree of Numerator < Degree of Denominator)

Consider f(x) = (3x + 1) / (x^2 - 5). The degree of the top is 1. The degree of the bottom is 2.

As x gets huge (say, a million), the numerator is around 3 million. But the denominator is around a million squared—a trillion! The denominator is growing magnitudes faster than the numerator.

It's like comparing the wealth of a local business owner (the numerator) to the entire US national debt (the denominator). The business owner's wealth is a rounding error. When you divide a relatively small number by an astronomically large one, the result is incredibly close to zero.

Rule: If the denominator's degree is higher, it wins the tug-of-war and pulls the whole fraction down to zero. lim_{x→∞} f(x) = 0. The horizontal asymptote is y = 0.

Case 2: Balanced Powers (Degree of Numerator = Degree of Denominator)

Consider g(x) = (4x^2 - 9) / (2x^2 + 3x). The degree of the top is 2. The degree of the bottom is also 2.

Here, the numerator and denominator are growing at a comparable rate. It's a stalemate! When x is enormous, the -9 on top and the +3x on the bottom are like pocket change. They don't matter. The only terms that have any real influence are the ones with the highest power: 4x^2 and 2x^2.

So, for very large x, the function behaves just like (4x^2) / (2x^2), which simplifies to 4/2 = 2.

Rule: If the degrees are equal, the limit is the ratio of the leading coefficients (the numbers in front of the highest-power terms). lim_{x→∞} g(x) = 4/2 = 2. The horizontal asymptote is y = 2.

Case 3: Top-Heavy (Degree of Numerator > Degree of Denominator)

Consider h(x) = (x^3 + 2x) / (7x^2 - 1). The degree of the top is 3. The degree of the bottom is 2.

Now, the numerator is growing way faster. It's like dividing the US national debt by the assets of a local business. The result is a huge, unbounded number. The numerator wins the tug-of-war and pulls the function's value up to infinity (or down to negative infinity).

Rule: If the numerator's degree is higher, the limit does not exist as a finite number. The limit is or -∞. lim_{x→∞} h(x) = ∞. There is no horizontal asymptote.

This comparison of how fast the numerator and denominator grow is exactly what the College Board means by "relative magnitudes of functions." You're becoming a pro at this!

Worked examples

Let's put this into practice. Seeing it in action is the best way to make it stick.

Example 1

Balanced Powers

Problem: Find the horizontal asymptotes of the function f(x) = (10x^3 + 5x - 1) / (2x^3 - 4x^2).

Solution:

  1. 1
    Identify the goal
    We need to find the horizontal asymptotes. This means we need to calculate the limits as x → ∞ and x → -∞.
  2. 2
    Analyze the function
    This is a rational function. Let's use our "Tug-of-War" method by comparing the degrees of the numerator and the denominator.
    • Degree of the numerator (10x^3 + ...): The highest power is 3.
    • Degree of the denominator (2x^3 - ...): The highest power is 3.
  3. 3
    Apply the rule
    The degrees are equal! This is our "Balanced Powers" case. When the degrees are the same, the limit is the ratio of the leading coefficients.
    • The leading coefficient of the numerator is 10.
    • The leading coefficient of the denominator is 2.
  4. 4
    Calculate the limit
    lim_{x→∞} f(x) = 10 / 2 = 5

    Because the powers are both odd, the limit as x → -∞ will also be 5. (For rational functions, if a limit at infinity exists, it's the same in both directions).

  5. 5
    State the conclusion
    The limit is 5. Therefore, the horizontal asymptote is the line y = 5.
    • Common Mistake Alert: A student might just write "5" as the answer. Remember, an asymptote is a line, so you must write the equation y = 5.
Example 2

Bottom-Heavy

Problem: Find lim_{x→∞} (sin(x)) / (x).

Solution:

  1. 1
    Identify the goal
    We need to find the limit of this function as x gets infinitely large.
  2. 2
    Analyze the function
    This isn't a simple rational function, but we can still think about the "relative magnitudes."
    • The numerator is sin(x). What do we know about the sine function? It just oscillates back and forth between -1 and 1, forever. It never gets bigger than 1 or smaller than -1. It's bounded.
    • The denominator is x. As x → ∞, the denominator grows without any bound. It gets enormous.
  3. 3
    Apply the logic
    We are dividing a number that's stuck between -1 and 1 by an increasingly gigantic number.
    • sin(100) / 100
    • sin(1,000,000) / 1,000,000
    • sin(1,000,000,000) / 1,000,000,000

    No matter what the sine value is, you're dividing it by a massive number. The result gets squeezed closer and closer to zero. This is a classic example of the Squeeze Theorem, but the intuitive "Tug-of-War" logic gets you there, too. The denominator's growth completely overpowers the numerator's bounded oscillation.

  4. 4
    State the conclusion
    lim_{x→∞} (sin(x)) / (x) = 0. The horizontal asymptote is y = 0.

Try it yourself

Alright, your turn to practice. Take your time, think about the "Tug-of-War," and write down your reasoning.

Problem 1: Find the horizontal asymptote(s) for the function g(x) = (8x^2 - 12x + 3) / (15 - 2x + 4x^2).

  • Hint: First, identify the degree of the polynomial in the numerator and the denominator. Are they the same? Don't let the jumbled order of the denominator fool you!

Problem 2: Evaluate the limit: lim_{x→-∞} (x^4 + 5x) / (10x^3 - 2x^5).

  • Hint: Which term grows fastest in the numerator? Which term grows fastest in the denominator? Be careful with the signs. Is this a Top-Heavy, Bottom-Heavy, or Balanced case?