Look at the far left and far right of a polynomial's graph. Forget the middle for a moment — forget the wiggles, the zero-crossings, the vertex. Just the ends. Where do the two ends of the curve go as x runs off towards +\infty on the right, and towards -\infty on the left? Do they shoot up? Fall down? One up and one down?
That question is called the end behaviour of the polynomial, and the answer is governed by just two flags: the parity of the degree (even or odd) and the sign of the leading coefficient (plus or minus). Two binary choices means four combinations, and each combination gives a distinct arrow pattern. The widget below toggles both flags so you can see all four cases in a few clicks. You can memorise the patterns if you like, or re-derive them every time from the leading term. Either strategy works — this visualisation is here to anchor both.
The widget
Try every combination. Pick degree 2, leading +: both ends rise — the parabola's classic cup-up. Switch to - and the parabola flips, both ends fall. Bump to degree 3, leading +: the left end plunges and the right end climbs — the cubic's diagonal signature. Flip to - and the diagonal reverses. Degree 4 behaves like degree 2 (both ends the same direction), degree 5 behaves like degree 3 (opposite directions). The rule is pattern, not formula.
The four cases
| Degree parity | Leading coefficient | Left end | Right end | Example |
|---|---|---|---|---|
| even | positive | rises (↑) | rises (↑) | y = x^2 |
| even | negative | falls (↓) | falls (↓) | y = -x^2 |
| odd | positive | falls (↓) | rises (↑) | y = x^3 |
| odd | negative | rises (↑) | falls (↓) | y = -x^3 |
Read this table top to bottom: the even cases have matching ends (both up or both down), the odd cases have opposite ends (one up, one down). The sign of the leading coefficient flips everything at once — arrows on both ends reverse together. That is exactly what the widget shows when you click the sign toggle: both arrows flip in lockstep.
Why only the leading coefficient matters
The polynomial p(x) = a_n x^n + a_{n-1} x^{n-1} + \dots + a_1 x + a_0 has n + 1 terms. When |x| is very large, they do not matter equally. Compare x^5 and x^4 at x = 100: the first is 10{,}000{,}000{,}000, the second 100{,}000{,}000 — a factor of 100 smaller. At x = 1000 the ratio is 1000; at x = 10^6 it is a million. The gap grows without bound.
In the limit as |x| \to \infty, the leading term a_n x^n dwarfs every lower-degree term by an arbitrarily large factor. So the end behaviour depends only on the leading term — the constant and middle terms are negligible at infinity. End behaviour is controlled by exactly two things: the parity of n, and the sign of a_n. Everything else is a middle-of-the-graph detail.
Derivation — why even behaves this way
Consider x^n for even n, say n = 2, 4, 6, \dots. Because n is even, x^n = (x^{n/2})^2 \geq 0 for every real x. The graph of x^n sits on or above the horizontal axis — it never dips below. As |x| \to \infty, the value grows without bound in both directions: x^n \to +\infty as x \to +\infty, and x^n \to +\infty as x \to -\infty too, because (-x)^n = x^n when n is even. Both ends of the graph head up.
Multiplying by a positive leading coefficient a_n > 0 does not change anything qualitatively: both ends still head to +\infty. That is the "even, positive" arrow pattern: ↑ ↑.
Multiplying by a negative a_n < 0 flips every y-value. Plus infinity becomes minus infinity; both ends now head to -\infty. That is "even, negative": ↓ ↓.
Notice what is happening: the evenness of the degree forces the two ends to agree with each other, and the sign of the coefficient decides which direction they both go.
Derivation — why odd behaves this way
Now consider x^n for odd n, say n = 1, 3, 5, \dots. Here the sign of the output matches the sign of the input, because (-x)^n = -x^n when n is odd. So x^n is positive for x > 0 and negative for x < 0. As x \to +\infty, x^n \to +\infty; as x \to -\infty, x^n \to -\infty. The two ends go to opposite infinities.
With a positive leading coefficient, this pattern stands: the right end rises to +\infty, the left end falls to -\infty. Arrows: ↓ on the left, ↑ on the right.
With a negative leading coefficient, every y-value flips. The right end now falls to -\infty; the left end rises to +\infty. Arrows: ↑ on the left, ↓ on the right.
The oddness of the degree forces the two ends to disagree with each other, and the sign of the coefficient decides which end is which.
Why this is a fast sketch tool
When you need to sketch a polynomial quickly — in an exam or while checking a physics problem — you rarely plot many points. You build the sketch in layers, and the first layer is the frame: the end behaviour. Check the degree, check the sign of the leading coefficient, draw the two arrows. That fixes where the curve enters on the left and exits on the right.
After the frame, add the interior: up to n - 1 turning points (see the degree morph widget), the x-intercepts by factoring, and the y-intercept (the constant term). The curve is pinned at the ends by end behaviour, pinned vertically at x = 0 by the constant, and pinned at its zeros on the x-axis. Threading those pins together gives a sketch in about thirty seconds.
Common confusions
- "End behaviour depends on all the coefficients." No — only the leading coefficient. Every lower-degree term is dominated at infinity. The polynomial x^5 - 10{,}000x^4 still has end behaviour "↓ ↑" (odd, positive leading), even though the x^4 term is huge near x = 0. That huge middle-term influence does not reach the ends.
- "The constant term affects end behaviour." The constant shifts the entire graph up or down, but it does not change where the ends point. Adding 1000 to y = x^3 gives y = x^3 + 1000 — still "↓ ↑", just lifted by 1000.
- "Higher-degree polynomials always go to infinity faster." They do grow faster, yes, but the direction of the ends is still governed by the simple parity-and-sign rule. A degree-100 polynomial with positive leading coefficient has ends "↑ ↑", same as y = x^2. The speed differs; the directions are identical.
- "Odd-degree polynomials always have positive right end." Only if the leading coefficient is positive. Flip the coefficient sign and the right end flips too. Always read both flags.
Recognition drill
For each polynomial, name the end behaviour as a pair of arrows.
- y = 2x^4 - 5x^2 + 1. Degree 4 (even), leading coefficient +2 (positive). Both ends rise: ↑ ↑.
- y = -3x^3 + x. Degree 3 (odd), leading coefficient -3 (negative). Odd-negative flips the cubic's signature, so left rises and right falls: ↑ ↓.
- y = x^5 - 10. Degree 5 (odd), leading coefficient +1 (positive). Odd-positive: left falls, right rises: ↓ ↑. The -10 shifts the graph down but does not touch the ends.
- y = -x^6 + x^4. Degree 6 (even), leading coefficient -1 (negative). Even-negative: both ends fall: ↓ ↓.
Say each answer out loud before reading the next. The goal is to make the read-off automatic — degree parity, coefficient sign, arrows, done.
Closing
Two flags, four patterns, four arrow configurations. The degree's parity decides whether the two ends agree (even: same direction) or disagree (odd: opposite directions). The leading coefficient's sign decides the absolute direction of the right end, and by the parity rule, that pins down the left end too. That is the entire rule. Memorise the four arrow pictures if memory is your style, or re-derive them every time from the leading term's limit if derivation is your style. Either way, after a minute with the widget you know a polynomial's skyline at a glance — and the skyline is the first thing you draw when you sketch.