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

Polynomial Functions and End Behavior

Lesson ~11 min read 8 MCQs

In simple terms: In simple terms, polynomial end behavior is about predicting if a graph's arms point up or down as it goes way off the chart to the left and right.

Why this matters

Have you ever been on a roller coaster? Think about the big ones, like the Titan at Six Flags Over Texas. No matter how many small twists, loops, or dips there are in the middle, you always remember two things: the massive first climb and the final drop or brake run. The rest of the ride is exciting, but that first hill's height and direction set the entire tone for the ride's scale.

Polynomial functions are a lot like that. They can have lots of interesting turns and wiggles in the middle, which we call local behavior. But the "end behavior" — what the graph does as it goes off the chart to the far left and far right — is determined by one single, powerful part of the equation. Today, we'll learn how to find that one part and use it to predict the graph's ultimate destination, no matter how complicated it looks in the middle.

A polynomial function showing local wiggles and dominant end behavior.

Concept overview

flowchart TD
    A[Start with p(x)] --> B{Find leading term ax^n};
    B --> C{Is degree 'n' Even or Odd?};
    C -->|Even| D{Is coefficient 'a' Positive or Negative?};
    C -->|Odd| E{Is coefficient 'a' Positive or Negative?};
    D -->|Positive| F[Rises Left, Rises Right<br>lim = ∞, lim = ∞];
    D -->|Negative| G[Falls Left, Falls Right<br>lim = -∞, lim = -∞];
    E -->|Positive| H[Falls Left, Rises Right<br>lim = -∞, lim = ∞];
    E -->|Negative| I[Rises Left, Falls Right<br>lim = ∞, lim = -∞];
This diagram is a flowchart that shows the decision-making process for determining a polynomial's end behavior. It starts by finding the leading term, then branches based on whether the degree is even or odd, and finally branches again based on whether the leading coefficient is positive or negative, leading to one of four possible outcomes for the graph's end behavior.

Core explanation

Hello everyone! I'm Saavi, and I'm here to help you make sense of polynomial functions. Today, we're tackling "end behavior." It sounds complicated, but the core idea is surprisingly simple.

What is End Behavior?

End behavior is the answer to the question: "What happens to my graph at the edges of the universe?"

If you imagine your graph on a huge coordinate plane, what are the tips of the graph doing as you trace them way, way out to the right (where x is a huge positive number) and way, way out to the left (where x is a huge negative number)? Are they pointing up to the sky (towards positive infinity) or down to the ground (towards negative infinity)?

In calculus, we have a precise way to write this using limits.

  • lim_{x→∞} p(x) asks: As x heads towards positive infinity, where do the y-values (p(x)) go?
  • lim_{x→-∞} p(x) asks: As x heads towards negative infinity, where do the y-values (p(x)) go?

The answer to both of these will always be either (the graph goes up) or −∞ (the graph goes down).

The Leader of the Pack: The Leading Term

Here’s the secret: for any polynomial, one term calls all the shots for end behavior. This is the leading term — the term with the highest exponent.

Think of a polynomial like p(x) = x^4 - 50x^3 - 1000.

When x is small, like x=2, all the terms matter. But what happens when x is huge, like x = 1,000,000?

  • x^4 becomes (1,000,000)^4, a number with 24 zeros.
  • 50x^3 becomes 50 * (1,000,000)^3, a number with 18 zeros.

The x^4 term is so astronomically larger than the other terms that their contribution becomes a rounding error. The leading term completely dominates. It's like a tug-of-war between an elephant and a few ants. Once the numbers get big enough, only the elephant matters.

Comparing x^4, 50x^3, and 1000 as x grows.

This is the most important idea for this topic (EK 1.6.A.3): As x approaches infinity or negative infinity, the leading term of a polynomial becomes so powerful that it alone determines the end behavior.

The Leading Term Test: A Two-Question Guide

To figure out the end behavior, you only need to ask two questions about the leading term, which we can write as ax^n:

  1. Is the degree (n) an even or odd number?
  2. Is the leading coefficient (a) positive or negative?

Let's break down the four possible combinations.

Case 1: Even Degree, Positive Leading Coefficient

  • Example
    p(x) = x^4 - 3x^2 + x
  • Think of
    The simplest version is y = x^2, a basic parabola that opens up.
  • Behavior
    An even exponent makes any number positive, whether you plug in a huge positive or a huge negative. So, both arms of the graph go up.
  • In Limit Notation
    • lim_{x→-∞} p(x) = ∞ (Rises on the left)
    • lim_{x→∞} p(x) = ∞ (Rises on the right)

Case 2: Even Degree, Negative Leading Coefficient

  • Example
    p(x) = -2x^2 + 4x - 1
  • Think of
    y = -x^2, a parabola that opens down.
  • Behavior
    The even degree still makes the x part positive on both ends, but the negative coefficient a flips it. So, both arms go down.
  • In Limit Notation
    • lim_{x→-∞} p(x) = -∞ (Falls on the left)
    • lim_{x→∞} p(x) = -∞ (Falls on the right)

Case 3: Odd Degree, Positive Leading Coefficient

  • Example
    p(x) = x^3 - 5x
  • Think of
    y = x^3, which starts low and ends high.
  • Behavior
    An odd exponent preserves the sign of x. A huge negative x cubed is still negative. A huge positive x cubed is still positive. The arms point in opposite directions.
  • In Limit Notation
    • lim_{x→-∞} p(x) = -∞ (Falls on the left)
    • lim_{x→∞} p(x) = ∞ (Rises on the right)

Case 4: Odd Degree, Negative Leading Coefficient

  • Example
    p(x) = -x^5 + 4x^3
  • Think of
    y = -x^3, which starts high and ends low.
  • Behavior
    The odd degree preserves the sign of x, but the negative coefficient flips the results. What was negative becomes positive, and what was positive becomes negative.
  • In Limit Notation
    • lim_{x→-∞} p(x) = ∞ (Rises on the left)
    • lim_{x→∞} p(x) = -∞ (Falls on the right)

And that's it! Every polynomial's end behavior fits into one of these four categories. Just find the leading term, check its degree and sign, and you can predict where the graph is headed.

Four cases of polynomial end behavior based on degree and leading coefficient.

Worked examples

Let's walk through a few problems together. The key is to be systematic: find the leader, analyze it, then state the conclusion.

Example 1

A Polynomial in Disguise

Problem: Describe the end behavior of the function g(x) = 7 + 4x^2 - 8x^6 + 3x.

Step 1: Identify the leading term. Don't just grab the first term you see! The leading term is the one with the highest exponent (degree). In this function, the terms are out of order. The highest exponent is 6.

  • The leading term is -8x^6.

Why this step is crucial: This is the most common trap on exams. The College Board loves to write polynomials out of standard form to see if you're paying attention. Always scan the entire function for the highest power of x.

Step 2: Analyze the leading term. Now we look at our two key features from -8x^6:

  • Degree (n)
    The degree is 6, which is an even number.
  • Leading Coefficient (a)
    The coefficient is -8, which is a negative number.

Step 3: Determine the end behavior. We have an even degree and a negative leading coefficient. This is Case 2 from our explanation.

  • An even degree means the arms of the graph point in the same direction.
  • The negative coefficient means that direction is down.

So, the graph falls on the left and falls on the right.

The graph of g(x) = 7 + 4x^2 - 8x^6 + 3x, showing both ends falling.

Step 4: Write the answer in formal limit notation.

  • As x approaches negative infinity, g(x) approaches negative infinity: lim_{x→-∞} g(x) = -∞.
  • As x approaches positive infinity, g(x) approaches negative infinity: lim_{x→∞} g(x) = -∞.
Example 2

End Behavior from Factored Form

Problem: Describe the end behavior of h(x) = (3 - 2x)(x + 4)^2.

Step 1: Identify the leading term (without fully expanding). We don't need to multiply the whole thing out. We just need to figure out what the highest-degree term would be if we did. To do this, find the highest-degree term from each factor and multiply them together.

  • In (3 - 2x), the highest-degree term is -2x.
  • In (x + 4)^2, the highest-degree term would come from (x)^2, which is x^2.

Now, multiply these together: (-2x) * (x^2) = -2x^3.

  • The leading term is -2x^3.

Step 2: Analyze the leading term. From -2x^3:

  • Degree (n)
    3 (an odd number)
  • Leading Coefficient (a)
    2 (a negative number)

Step 3: Determine the end behavior. We have an odd degree and a negative leading coefficient. This is Case 4.

  • An odd degree means the arms point in opposite directions.
  • A negative coefficient means the graph will generally fall from left to right (it starts high and ends low).

So, the graph rises on the left and falls on the right.

Step 4: Write the answer in formal limit notation.

  • lim_{x→-∞} h(x) = ∞
  • lim_{x→∞} h(x) = -∞
The graph of h(x) = (3 - 2x)(x + 4)^2, demonstrating odd degree, negative leading coefficient end behavior.

Try it yourself

Time to put this into practice. For each function below, find the leading term, determine the end behavior, and write it using limit notation.

Problem 1: p(x) = -5x^4 + 100x^3 - 2x + 9

Hint: Is the polynomial in standard form? What are the degree and the sign of the leading coefficient?

Problem 2: q(x) = x(x - 5)(x + 2)

Hint: You don't need to multiply everything out. What would the leading term be if you multiplied the x from each factor? What does that tell you about the degree and leading coefficient?

You've got this! Take your time and follow the steps.

Graph of p(x) = -5x^4 + 100x^3 - 2x + 9, showing both ends falling.