rings
Polynomial Rings
You should know: rings, polynomials
Overview
A polynomial ring R[x] is built by taking all polynomials with coefficients from a ring R and treating them as a new ring under polynomial addition and multiplication. Polynomial rings are the setting for factorization, root-finding, and the construction of field extensions, and they inherit many properties of their coefficient ring R.
Intuition
Once you know how to add and multiply numbers in some ring R, you automatically know how to add and multiply polynomials with those numbers as coefficients: combine like-degree terms for addition, distribute and collect for multiplication. R[x] packages 'polynomials with coefficients in R' as its own algebraic universe, and the good behavior of R (e.g. no zero divisors) often transfers directly to R[x].
Formal Definition
Given a ring R, the polynomial ring R[x] consists of formal expressions with finitely many nonzero coefficients aᵢ ∈ R:
Notation
| Notation | Meaning |
|---|---|
| The ring of polynomials in x with coefficients in R | |
| The degree of polynomial f | |
| Polynomial ring over a field F — a Euclidean domain | |
| f divides g in the polynomial ring |
Properties
Integral domain inheritance
Degree additivity over a domain
Division algorithm over a field
Condition: R = F a field
F[x] is a Euclidean/PID
Applications
Worked Examples
Distribute the multiplication.
Combine like terms.
Since ℤ has no zero divisors, deg(fg) = deg(f) + deg(g) = 1 + 1 = 2, matching the result.
Answer: fg = x² - 1, of degree 2.
Practice Problems
Explain why ℤ[x] is not a principal ideal domain, using the ideal (2, x).
In the polynomial ring ℝ[x], multiply (x + 2)(x² − 1) and give the degree of the result.
Common Mistakes
Assuming F[x] behaves like a field just because F is a field.
F[x] is never a field (x has no multiplicative inverse polynomial), but it is a Euclidean domain / PID, which is the next best structural property.
Applying deg(fg) = deg(f) + deg(g) over any ring R.
This fails when R has zero divisors — e.g. in ℤ₄[x], (2x)(2x) = 4x² = 0, which has degree −∞ (or undefined), not 2+2=4.
Quiz
Summary
- R[x] consists of polynomials with coefficients in R, with addition and convolution-style multiplication.
- If R is an integral domain, R[x] is too, and degrees add multiplicatively: deg(fg) = deg(f)+deg(g).
- Over a field F, F[x] has a division algorithm and is a principal ideal domain.
- ℤ[x] is not a PID — the ideal (2, x) needs two generators, illustrating a key difference from F[x].
References
- WebsiteWikipedia — Polynomial ring
- BookDummit, D. & Foote, R. Abstract Algebra, 3rd ed., Ch. 9.
Mathematics