Solving Polynomials with Different Degrees
What Polynomials Are and Why Degrees Matter
A polynomial is a mathematical expression with variables and coefficients. The degree of a polynomial is the highest exponent of its variable. This number determines everything about how you'll solve it.
Higher degree doesn't just mean "more complicated" — it means fundamentally different solution methods. A linear equation and a cubic equation are not the same problem wearing different clothes.
- Degree 0: Constants like 5 or -12. Already solved.
- Degree 1: Linear equations. One solution.
- Degree 2: Quadratic equations. Up to two solutions.
- Degree 3: Cubic equations. Up to three solutions.
- Degree 4+: Quartic and higher. Gets messy fast.
Degree 1: Solving Linear Polynomials
Linear polynomials are the simplest. You solve them the same way you always have: isolate the variable.
Given 3x + 9 = 0:
Subtract 9 from both sides, then divide by 3. x = -3. That's it.
The standard form is ax + b = 0, and the solution is always x = -b/a. One step. One answer.
What to Watch For
If a = 0, you're not looking at a linear equation anymore — you're looking at a constant. Either it equals zero (infinitely many solutions) or it doesn't (no solution). Check this before you start.
Degree 2: Solving Quadratic Polynomials
Quadratics are where things get interesting. The standard form is ax² + bx + c = 0, where a ≠ 0.
You have three real options:
1. Factoring
Fast when it works. Find two numbers that multiply to ac and add to b.
Example: x² + 5x + 6 = 0
Numbers that multiply to 6 and add to 5: 2 and 3.
x² + 2x + 3x + 6 = 0
(x + 2)(x + 3) = 0
x = -2 or x = -3
Factoring fails when roots are irrational, fractional, or don't exist. Don't waste time forcing it.
2. Quadratic Formula
This works every time:
x = (-b ± √(b² - 4ac)) / 2a
The expression under the square root, b² - 4ac, is the discriminant. It tells you what you're dealing with:
- Positive: Two real solutions
- Zero: One repeated solution
- Negative: Two complex solutions
3. Completing the Square
Useful when you need vertex form or when coefficients make the quadratic formula ugly. Move the constant, halve the x-coefficient, square it, balance the equation.
It works. It's just slower than the formula for most problems.
Degree 3: Solving Cubic Polynomials
Cubics have the form ax³ + bx² + cx + d = 0. Up to three real solutions. Here's how to handle them.
Step 1: Check for Rational Roots
The Rational Root Theorem says any rational solution p/q must have p dividing d and q dividing a.
For 2x³ - 11x² + 12x + 9 = 0, test candidates like ±1, ±3, ±9, and fractions like ±1/2, ±3/2.
Plug them in. If one works, you've found a factor.
Step 2: Factor Out the Known Root
Once you find x = r, factor out (x - r) using synthetic or long division. This drops you to a quadratic.
Step 3: Solve the Remaining Quadratic
Apply factoring or the quadratic formula to what remains. Done.
Example: x³ - 6x² + 11x - 6 = 0
Test x = 1: 1 - 6 + 11 - 6 = 0 ✓
Factor: (x - 1)(x² - 5x + 6) = 0
Factor again: (x - 1)(x - 2)(x - 3) = 0
x = 1, 2, or 3
When Rational Roots Don't Exist
You might need the cubic formula (cardano's method) or numerical approximation. Graph the function. Find where it crosses the x-axis. That's your answer — approximately.
Degree 4 and Higher
Quartics and beyond follow the same pattern: try to factor, find one root, reduce the degree, repeat.
There is no general formula for polynomials degree 5 or higher. This isn't a gap in your education — it's a proven mathematical fact (Abel-Ruffini theorem). Numerical methods are your only option for messy cases.
- Graphing calculators give approximate solutions instantly
- Newton's method converges fast when you're close to a root
- Computer algebra systems handle the heavy lifting for degree 10+
Solving Polynomials: Method Comparison
| Degree | Best Method | When It Fails | Solution Count |
|---|---|---|---|
| 1 | Isolate variable | a = 0 (not linear) | 1 |
| 2 | Quadratic formula | Complex roots | 0, 1, or 2 |
| 3 | Find rational root, reduce | No rational roots | 1, 2, or 3 |
| 4 | Factor or numerical | No simple factors | Up to 4 |
| 5+ | Numerical methods | Always numerical | Up to degree |
Getting Started: A Practical Approach
Here's what to actually do when you see a polynomial problem:
- Identify the degree. Highest exponent tells you what you're dealing with.
- Check for special forms. Difference of squares? Perfect square trinomial? These have fast shortcuts.
- Try factoring first for degrees 2-3. It's the fastest path when it works.
- Move to the formula if factoring stalls. Quadratic formula always works for degree 2.
- Use technology for degree 4+. Graph it. Find approximate roots. Don't try to factor by hand.
Common Mistakes That Waste Time
- Forgetting to set the equation to zero. You can't solve what isn't balanced.
- Factoring when roots are irrational. x² - 2 = 0 doesn't factor nicely. Use the formula.
- Dropping negative signs when distributing through parentheses.
- Ignoring the discriminant. It tells you what kind of answers exist before you finish.
- Solving for the wrong variable in multi-variable problems.
When to Use Technology
Modern tools exist for a reason. Graphing calculators and software like Desmos, Wolfram Alpha, or Python's NumPy can solve polynomials that would take hours by hand.
Use them when:
- Coefficients are messy decimals
- Degree is 4 or higher
- You need approximate solutions quickly
- You're checking your manual work
The goal is getting the right answer. How you get there matters less than most teachers admit.
Bottom Line
Linear polynomials: isolate and divide. Quadratics: use the formula unless factoring is obvious. Cubics: hunt for rational roots first, reduce to a quadratic, then finish. Anything higher: factor what you can, approximate the rest.
Don't force methods that don't fit. A quadratic that won't factor isn't broken — it's telling you to use the formula.