Navigation: Wiki Home > Skills > Polynomial Functions and Degree
Drop a ball and watch it fall. The height doesn't decrease at a constant rate; it accelerates. Plot height versus time, and you get a curve, not a line. This is where polynomials come in: they model situations where the rate of change itself is changing.
Polynomials are the workhorses of calculus. They're smooth, predictable, and easy to work with. More importantly, they appear everywhere: projectile motion follows a parabola (quadratic), the volume of a box depends on its dimensions (often cubic), and many physical relationships can be approximated by polynomials.
The degree of a polynomial tells you its fundamental shape. A degree-1 polynomial is a line. Degree 2 gives you a parabola. Degree 3 produces an S-curve. Learning to recognize these shapes by their degree is essential for choosing the right model.
| Property | Value |
|---|---|
| Concept | Essential Functions |
| Chapter | Chapter 1, Section 2 |
| Difficulty | Beginner |
| Time | ~18 minutes |
A polynomial function has the form:
$$P(x) = a_n x^n + a_{n-1} x^{n-1} + \cdots + a_1 x + a_0$$
where:
| Term | Name | Role |
|---|---|---|
| $a_n$ | Leading coefficient | Determines opening direction and "width" |
| $n$ | Degree | Determines the basic shape and number of possible turns |
| $a_0$ | Constant term | The $y$-intercept |
The degree is the highest power of $x$ with a nonzero coefficient:
| Degree | Name | General Form | Shape |
|---|---|---|---|
| 0 | Constant | $P(x) = c$ | Horizontal line |
| 1 | Linear | $P(x) = ax + b$ | Slanted line |
| 2 | Quadratic | $P(x) = ax^2 + bx + c$ | Parabola |
| 3 | Cubic | $P(x) = ax^3 + bx^2 + cx + d$ | S-shaped curve |
| 4 | Quartic | $P(x) = ax^4 + \cdots$ | W or M shape possible |
Degree 1 (Linear) Degree 2 (Quadratic) Degree 3 (Cubic)
/ ∩ _/
/ / \ _/
/ / \ ⌣
/
The most important non-linear polynomial is the quadratic:
$$f(x) = ax^2 + bx + c$$
Key features:
As $x \to \pm\infty$, the leading term dominates:
| Leading Term | As $x \to +\infty$ | As $x \to -\infty$ |
|---|---|---|
| $+x^2$ (even, positive) | $P(x) \to +\infty$ | $P(x) \to +\infty$ |
| $-x^2$ (even, negative) | $P(x) \to -\infty$ | $P(x) \to -\infty$ |
| $+x^3$ (odd, positive) | $P(x) \to +\infty$ | $P(x) \to -\infty$ |
| $-x^3$ (odd, negative) | $P(x) \to -\infty$ | $P(x) \to +\infty$ |
Rule of thumb:
A polynomial of degree $n$ can have:
Determine the degree and leading coefficient of each polynomial:
Without graphing, describe the end behavior of each polynomial:
A projectile is launched upward, and its height $h$ (in meters) after $t$ seconds is given by: $$h(t) = -5t^2 + 30t + 2$$
A ball is dropped from a tower. The following heights are recorded:
| Time $t$ (sec) | Height $h$ (m) |
|---|---|
| 0 | 80 |
| 1 | 75 |
| 2 | 60 |
Consider the family of polynomials $P_n(x) = x^n$ for positive integers $n$.
| $x$ | $P_2(x)$ | $P_3(x)$ | $P_4(x)$ | $P_5(x)$ |
|---|---|---|---|---|
| $-1$ | ||||
| $0$ | ||||
| $0.5$ | ||||
| $2$ |
Think of degree as "complexity level":
Each increase in degree adds one potential "bend" to the graph. A degree-$n$ polynomial can wiggle up to $n-1$ times.
Looking back:
Looking ahead:
Real-world connections:
| Previous | Up | Next |
|---|---|---|
| Linear Models | Section Index | Power Functions |
Last updated: 2026-01-22