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

Rational Functions and End Behavior

Lesson ~11 min read 8 MCQs

In simple terms: In simple terms, this topic is about predicting how a rational function's graph will look on the far left and far right edges, which we call its end behavior.

Why this matters

Imagine you're a flight controller at the Dallas/Fort Worth airport, one of the busiest in the world. On your screen, you see the flight paths of dozens of planes. For planes just taking off or landing, their paths are complex, full of turns and changes in altitude. But once a plane reaches its cruising altitude and is heading out over the plains of Texas, its path straightens out, following a predictable line.

Rational functions are a lot like those flight paths. Close to the origin (the "airport"), their graphs can have interesting curves, breaks, and wiggles. But what happens when they get far away from the center? What is their "cruising altitude"?

That's what we're exploring today: the end behavior of rational functions. We'll learn a simple set of rules to predict whether a function will level off at a specific altitude (a horizontal asymptote), fly off to infinity along a slanted line (a slant asymptote), or behave like another polynomial.

Rational function showing complex behavior near origin and leveling off at ends.

Concept overview

flowchart TD
    A[Start: Look at r(x) = P(x)/Q(x)] --> B{Compare degree of P(x), n, and Q(x), m};
    B --> C{n < m?};
    C -- Yes --> D[Horizontal Asymptote at y = 0];
    C -- No --> E{n = m?};
    E -- Yes --> F[Horizontal Asymptote at y = ratio of leading coefficients];
    E -- No --> G{n = m + 1?};
    G -- Yes --> H[Slant Asymptote found by polynomial division];
    G -- No --> I[End behavior is like a non-linear polynomial];
This diagram is a flowchart that guides users through determining the end behavior of a rational function. It starts by comparing the degrees of the numerator (n) and denominator (m), then branches into three paths: n < m leads to a horizontal asymptote at y=0, n = m leads to a horizontal asymptote at the ratio of leading coefficients, and n > m leads to either a slant asymptote or other polynomial end behavior.

Core explanation

Hello everyone. Let's dive into one of the most important concepts for understanding the graphs of rational functions: end behavior.

First, what is a rational function? It's simply a function that is the ratio of two polynomials. Think of it as a fraction where the numerator P(x) and the denominator Q(x) are both polynomials.

r(x) = P(x) / Q(x)

The big question with end behavior is: What happens to the value of r(x) as our input x gets incredibly large (approaching positive infinity) or incredibly small (approaching negative infinity)?

The "Loudest Voice" Analogy

Imagine you're at a huge stadium concert in Chicago. There are two groups of people talking, one group on the field (the numerator) and one in the stands (the denominator). When you're close by, you can hear all the individual conversations. But as you walk far, far away from the stadium, you can only hear the very loudest person from each group.

In a polynomial, the "loudest voice" is always the leading term—the term with the highest power of x. For very large values of x, the leading term completely dominates all the other terms.

For example, in P(x) = 2x² + 100x - 500, if you plug in x = 1,000,000, the 2x² term is so massive that the other terms barely matter.

Comparing the growth of terms in a polynomial for large x.

So, to find the end behavior of a rational function, we only need to look at the "loudest voices": the ratio of the leading terms. This simplifies the whole problem!

Let's say our rational function is r(x) = (a_n * x^n + ...) / (b_m * x^m + ...) where a_n * x^n and b_m * x^m are the leading terms. The end behavior of r(x) is the same as the end behavior of this much simpler function:

y = (a_n * x^n) / (b_m * x^m)

This leads to three simple cases, based on comparing the degrees n (from the numerator) and m (from the denominator).

Case 1: Denominator Wins (Degree of Numerator < Degree of Denominator)

Let's look at f(x) = (3x + 2) / (x² + 4x - 5).

  • Degree of numerator (n): 1
  • Degree of denominator (m): 2

Here, n < m. The denominator's polynomial has a higher degree. Its "voice" is louder.

As x gets huge, the in the denominator grows much, much faster than the 3x in the numerator. You're dividing a medium-sized number by a gigantic number. What happens when you do that? The result gets incredibly close to zero.

Think about it: 10 divided by 1,000 is small. 10 divided by 1,000,000 is even smaller.

Rule: If the degree of the numerator is less than the degree of the denominator, the graph will have a horizontal asymptote at y = 0.

In limit notation, we write this as: lim_{x→∞} f(x) = 0 and lim_{x→-∞} f(x) = 0

Case 2: A Balanced Fight (Degree of Numerator = Degree of Denominator)

Now consider f(x) = (2x² + 1) / (x² - 1).

  • Degree of numerator (n): 2
  • Degree of denominator (m): 2

Here, n = m. The leading terms have the same power. Their "voices" are equally loud.

As x gets huge, the +1 and -1 become insignificant. The function behaves just like (2x²) / (x²). And what does that simplify to? Just 2!

The function's value will get closer and closer to the ratio of the leading coefficients.

Rule: If the degrees are equal, the graph has a horizontal asymptote at y = (leading coefficient of numerator) / (leading coefficient of denominator).

For our example, the asymptote is at y = 2 / 1, or y = 2.

In limit notation: lim_{x→∞} f(x) = 2 and lim_{x→-∞} f(x) = 2

Case 3: Numerator Wins (Degree of Numerator > Degree of Denominator)

Finally, let's check out f(x) = (x² + 1) / (x - 1).

  • Degree of numerator (n): 2
  • Degree of denominator (m): 1

Here, n > m. The numerator's "voice" is louder. It grows much faster than the denominator. The value of the function will fly off toward positive or negative infinity. There is no horizontal asymptote.

But we can be more specific. The end behavior will resemble the graph of the polynomial you get from dividing the leading terms: y = x² / x = x. This tells us the function generally increases like the line y=x.

To find the equation of this slant asymptote, you must perform polynomial long division.

        x   + 1
      _________
x - 1 | x² + 0x + 1
      -(x² - x)
      _________
            x + 1
          -(x - 1)
          _______
                2 

So, f(x) = (x + 1) + 2/(x-1). As x gets huge, the 2/(x-1) part becomes zero, and the function behaves just like the line y = x + 1. This is our slant asymptote.

The graph of f(x) will get closer and closer to the line y = x + 1 on the far left and far right.

Function f(x) = (3x + 2) / (x² + 4x - 5) approaching y=0.

Worked examples

Let's walk through the three main cases for end behavior with specific examples. The key is always to start by comparing the degrees of the top and bottom polynomials.

Example 1

Horizontal Asymptote at y = 0

Problem: Describe the end behavior of the function f(x) = (3x + 2) / (x² + 4x - 5).

Step 1: Identify the degrees.

  • The numerator is 3x + 2. It's a linear polynomial, so its degree is n = 1.
  • The denominator is x² + 4x - 5. It's a quadratic polynomial, so its degree is m = 2.

Step 2: Compare the degrees.

  • We see that n < m (since 1 < 2).
  • This tells us the denominator grows much faster than the numerator for large values of x.

Step 3: Determine the end behavior.

  • Because the denominator dominates, the value of the fraction will approach zero as x goes to positive or negative infinity.
  • This is the classic "bottom-heavy" case. A common mistake is to think you need to do more work. You don't! Once you see the denominator's degree is higher, you're done.

Example 2

Horizontal Asymptote at a Non-zero Constant

Problem: Describe the end behavior of the function g(x) = (2x² + 1) / (x² - 1).

Step 1: Identify the degrees.

  • Numerator: 2x² + 1, degree n = 2.
  • Denominator: x² - 1, degree m = 2.

Step 2: Compare the degrees.

  • The degrees are equal: n = m.
  • This means the numerator and denominator grow at a similar rate. Their end behavior is a "balanced fight."

Step 3: Determine the end behavior.

  • When degrees are equal, the end behavior is determined by the ratio of the leading coefficients.
  • Leading coefficient of numerator: 2
  • Leading coefficient of denominator: 1
  • The horizontal asymptote is at y = 2 / 1 = 2.

Example 3

Slant (Oblique) Asymptote

Problem: Find the equation of the slant asymptote for the function h(x) = (x² + 1) / (x - 1).

Function h(x) = (x² + 1) / (x - 1) approaching slant asymptote y = x + 1.

Step 1: Identify and compare degrees.

  • Numerator degree: n = 2.
  • Denominator degree: m = 1.
  • Since n > m, we know there's no horizontal asymptote.
  • Because the numerator's degree is exactly one greater than the denominator's (2 = 1 + 1), we know there is a slant asymptote.

Step 2: Perform polynomial division.

  • To find the equation of the line it approaches, we must divide x² + 1 by x - 1. It's helpful to write x² + 0x + 1 to keep track of the terms.
  • The division gives us a quotient of x + 1 and a remainder of 2.
  • So, h(x) = (x + 1) + 2/(x - 1).

Step 3: Identify the asymptote.

  • As x approaches infinity, the remainder term 2/(x - 1) approaches zero.
  • The function's behavior is therefore dominated by the quotient part.
Function g(x) = (2x² + 1) / (x² - 1) approaching horizontal asymptote y=2.

Try it yourself

Ready to try a couple on your own? Remember the process: compare degrees first, then apply the correct rule.

Problem 1: Describe the end behavior of the function f(x) = (8x³ - 5x + 2) / (2x³ + x²).

  • Hint: What are the degrees of the numerator and denominator? Are they equal? If so, what's the rule for the ratio of the leading coefficients?

Problem 2: Does the function g(x) = (x³ - 2x + 1) / (x - 4) have a horizontal or slant asymptote?

  • Hint: Compare the degrees. Is the numerator's degree less than, equal to, or greater than the denominator's? If it's greater, is it exactly one greater? What does that tell you? (You don't have to find the asymptote, just identify what kind it is).
Function f(x) = (8x³ - 5x + 2) / (2x³ + x²) approaching horizontal asymptote y=4.