Mathematics.

rings

Polynomial Rings

Abstract Algebra II35 minDifficulty7 out of 10

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

Definition

Given a ring R, the polynomial ring R[x] consists of formal expressions with finitely many nonzero coefficients aᵢ ∈ R:

R[x]={i=0naixi:n0, aiR}R[x] = \left\{ \sum_{i=0}^{n} a_i x^i : n \geq 0,\ a_i \in R \right\}
Elements of R[x]
deg(aixi)=max{i:ai0}\deg\left(\sum a_i x^i\right) = \max\{ i : a_i \neq 0 \}
Degree of a polynomial
(f+g)(x)=(ai+bi)xi,(fg)(x)=k(i+j=kaibj)xk(f + g)(x) = \sum (a_i + b_i)x^i, \quad (fg)(x) = \sum_k \left(\sum_{i+j=k} a_i b_j\right) x^k
Addition and multiplication (convolution of coefficients)

Notation

NotationMeaning
R[x]R[x]The ring of polynomials in x with coefficients in R
deg(f)\deg(f)The degree of polynomial f
F[x]F[x]Polynomial ring over a field F — a Euclidean domain
fgf \mid gf divides g in the polynomial ring

Properties

Integral domain inheritance

If R is an integral domain, then so is R[x].\text{If } R \text{ is an integral domain, then so is } R[x].

Degree additivity over a domain

deg(fg)=deg(f)+deg(g)when R has no zero divisors.\deg(fg) = \deg(f) + \deg(g) \quad \text{when } R \text{ has no zero divisors}.

Division algorithm over a field

f,gF[x], g0, !q,rF[x]: f=qg+r, deg(r)<deg(g).\forall f,g \in F[x],\ g \neq 0,\ \exists! q, r \in F[x]:\ f = qg + r,\ \deg(r) < \deg(g).

Condition: R = F a field

F[x] is a Euclidean/PID

When F is a field,F[x] is a principal ideal domain, so every ideal is (p(x)) for some polynomial p.\text{When } F \text{ is a field}, F[x] \text{ is a principal ideal domain, so every ideal is } (p(x)) \text{ for some polynomial } p.

Applications

Reed–Solomon and BCH error-correcting codes represent messages as polynomials over finite fields, exploiting the division algorithm in F[x].

Worked Examples

  1. Distribute the multiplication.

    (x+1)(x1)=x2x+x1(x+1)(x-1) = x^2 - x + x - 1
  2. Combine like terms.

    =x21= x^2 - 1
  3. Since ℤ has no zero divisors, deg(fg) = deg(f) + deg(g) = 1 + 1 = 2, matching the result.

    deg(fg)=2\deg(fg) = 2

Answer: fg = x² - 1, of degree 2.

Practice Problems

Difficulty 6/10

Explain why ℤ[x] is not a principal ideal domain, using the ideal (2, x).

Difficulty 4/10

In the polynomial ring ℝ[x], multiply (x + 2)(x² − 1) and give the degree of the result.

Common Mistakes

Common Mistake

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.

Common Mistake

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

A polynomial ring R[x] consists of:
Polynomial rings over finite fields (like GF(2)[x]) are central to:

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

  1. BookDummit, D. & Foote, R. Abstract Algebra, 3rd ed., Ch. 9.