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 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.

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.];
This diagram is a flowchart that shows the three-step decision process for finding the limit of a rational function at infinity. It branches based on comparing the degrees of the numerator and denominator, leading to three possible outcomes for the limit and the corresponding horizontal asymptote.

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 line y = L is a horizontal asymptote.
  • If lim_(x→-∞) f(x) = M, then the line y = M is 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.

  • Rule
    If 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

  • Rule
    If 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.

  • Rule
    If the numerator's degree is bigger, the limit does not exist (DNE). The function goes to or -∞.
  • Horizontal Asymptote
    None. 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.

Example 1

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 → -∞.

  1. 1
    Identify the degrees
    • The degree of the numerator (8x^2 - 4x) is 2.
    • The degree of the denominator (2x^2 + 1) is 2.
  2. 2
    Recognize the case
    The degrees are equal. This is a "Balanced Powers" case.
  3. 3
    Find the limit
    The 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

  4. 4
    Check the other direction
    For rational functions, the limit as x → -∞ is the same as x → ∞. So, lim_(x→-∞) f(x) = 4 as well.
  5. 5
    State the conclusion
    Since the limit in both directions is 4, the function has one horizontal asymptote at y = 4.
Example 2

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.

  1. 1
    Identify the "effective" degrees
    • The degree of the numerator (5x) is 1.
    • What about the denominator? We have sqrt(9x^2). The square root of x^2 behaves like x, so the "effective" degree of the denominator is also 1. This looks like a "Balanced Powers" case.
  2. 2
    Be careful with the limit direction
    We are going to -∞. This is critical.
  3. 3
    Analyze the denominator
    The term sqrt(x^2) is technically |x|.
    • When x > 0, |x| = x.
    • When x < 0, |x| = -x. Since we are going to -∞, x is negative. Therefore, sqrt(x^2) behaves like -x.
  4. 4
    Find the limit
    As x gets 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 get 5 / -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?