AlgebraBeginner

What is a Polynomial?

A polynomial is an expression built from variables and constants using only addition, subtraction, multiplication, and non-negative integer exponents. It sounds technical but you've been working with polynomials since you first learned algebra — every linear equation and quadratic is a polynomial.

1 What a Polynomial Is

A polynomial is a sum of terms, where each term is a constant multiplied by a variable raised to a non-negative integer power. Examples: 3x² + 2x − 7, x⁴ − 5x, 6 (a constant is a polynomial of degree 0), and 2x³ − x² + 4x + 1.

The Core Requirement

Polynomials can only have non-negative integer exponents (0, 1, 2, 3...). Terms like x⁻¹, x^(1/2), or 1/x are not polynomial terms.

2 Anatomy: Terms, Coefficients, Degree

In the polynomial 4x³ − 2x² + 7x − 9:

Parts of a polynomial
·Terms: 4x³, −2x², 7x, −9 (separated by + or −)
·Coefficients: 4, −2, 7, −9 (the numbers in front of each variable)
·Degree of each term: 3, 2, 1, 0 (the exponent on the variable)
·Degree of the polynomial: 3 (the highest degree term)
·Leading term: 4x³ (highest degree term)
·Leading coefficient: 4
·Constant term: −9 (the term with no variable)

3 Types by Degree and Number of Terms

By degree: degree 0 = constant, degree 1 = linear (2x + 3), degree 2 = quadratic (x² + 5), degree 3 = cubic (x³ − 2), degree 4 = quartic, degree 5 = quintic.

By number of terms: 1 term = monomial (3x²), 2 terms = binomial (x + 4), 3 terms = trinomial (x² + 2x + 1), 4+ terms = polynomial (general).

4 Adding, Subtracting, and Multiplying

Adding/Subtracting: combine like terms (same variable, same exponent).

Adding Polynomials
(3x² + 2x − 1) + (x² − 5x + 4)
1Group like terms: (3x² + x²) + (2x − 5x) + (−1 + 4)
2Combine: 4x² + (−3x) + 3
Answer: 4x² − 3x + 3

Multiplying: use the distributive property — multiply each term in the first polynomial by each term in the second.

Multiplying Polynomials (FOIL)
(x + 3)(x − 2)
1First: x × x = x²
2Outer: x × (−2) = −2x
3Inner: 3 × x = 3x
4Last: 3 × (−2) = −6
5Combine: x² + (−2x + 3x) − 6 = x² + x − 6
Answer: x² + x − 6

5 What Is NOT a Polynomial

These are NOT polynomials and why: 1/x = x⁻¹ (negative exponent), √x = x^(1/2) (fractional exponent), 2ˣ (variable in the exponent — this is exponential, not polynomial), x/y (division by a variable).

Variable in the exponent

2ˣ is NOT a polynomial — it's an exponential function. The variable must be the base, not the exponent. x² is polynomial; 2ˣ is not.

Practice Problems

What is the degree of 5x⁴ − 3x² + 7x − 2?
The highest exponent is 4. Degree = 4. This is a quartic polynomial.
Add: (2x² + 3x − 4) + (x² − 2x + 6)
Combine like terms: (2+1)x² + (3−2)x + (−4+6) = 3x² + x + 2
Is 3x⁻² + 5 a polynomial? Why or why not?
No — the term 3x⁻² has a negative exponent, which is not allowed in polynomials.
Multiply: (x + 5)(x + 2)
FOIL: x² + 2x + 5x + 10 = x² + 7x + 10