Skip to content

Polynomial Rings

10.1 Definition and Basic Properties

The polynomial ring R[x]R[x] consists of all formal sums i=0naixi\sum_{i=0}^{n} a_i x^i with aiRa_i \in R. It is a ring under the usual addition and multiplication of polynomials.

Theorem 10.1 (Division Algorithm). If FF is a field and f,gF[x]f, g \in F[x] with g0g \neq 0Then There exist unique q,rF[x]q, r \in F[x] such that f=qg+rf = qg + r with deg(r)<deg(g)\deg(r) \lt \deg(g) or r=0r = 0.

Theorem 10.2 (Factor Theorem). aFa \in F is a root of fF[x]f \in F[x] if and only if (xa)(x - a) divides ff.

Proposition 10.3. A polynomial of degree nn over a field has at most nn roots (counting multiplicity).

10.2 Irreducible Polynomials

A non-constant polynomial fF[x]f \in F[x] is irreducible if it cannot be factored as f=ghf = gh With both gg and hh of degree less than deg(f)\deg(f).

Proposition 10.4. Every polynomial in F[x]F[x] factors uniquely into irreducible polynomials (up to Reordering and multiplication by units).

Theorem 10.5 (Eisenstein”s Criterion). Let f(x)=anxn++a1x+a0Z[x]f(x) = a_n x^n + \cdots + a_1 x + a_0 \in \mathbb{Z}[x]. If there exists a prime pp such that:

  1. pp divides a0,a1,,an1a_0, a_1, \ldots, a_{n-1}.
  2. pp does not divide ana_n.
  3. p2p^2 does not divide a0a_0.

Then ff is irreducible in Q[x]\mathbb{Q}[x].

Proof. Suppose f=ghf = gh with g,hZ[x]g, h \in \mathbb{Z}[x] (by Gauss’s lemma), deg(g)=r1\deg(g) = r \geq 1 deg(h)=s1\deg(h) = s \geq 1, r+s=nr + s = n. Modulo pp: fˉ=gˉhˉ=aˉnxn\bar{f} = \bar{g}\bar{h} = \bar{a}_n x^n in (Z/pZ)[x](\mathbb{Z}/p\mathbb{Z})[x]. Since Z/pZ[x]\mathbb{Z}/p\mathbb{Z}[x] is an integral domain, gˉ=bxr\bar{g} = bx^r And hˉ=cxs\bar{h} = cx^s for some b,cZ/pZb, c \in \mathbb{Z}/p\mathbb{Z}. In particular, the constant terms of gg and hh are both divisible by pp. But then p2p^2 divides a0a_0Contradicting condition (3). \blacksquare

10.3 Worked Examples

Problem. Show that x2+1x^2 + 1 is irreducible in R[x]\mathbb{R}[x] but reducible in C[x]\mathbb{C}[x].

Solution

Solution. In R[x]\mathbb{R}[x]: if x2+1=(x+a)(x+b)x^2 + 1 = (x + a)(x + b) with a,bRa, b \in \mathbb{R}Then a+b=0a + b = 0 and ab=1ab = 1Giving a2=1-a^2 = 1Which has no real solution. So x2+1x^2 + 1 is irreducible In R[x]\mathbb{R}[x].

In C[x]\mathbb{C}[x]: x2+1=(x+i)(xi)x^2 + 1 = (x + i)(x - i). \blacksquare

Problem. Use the Euclidean algorithm to compute gcd(x4+x3+x2+x+1,x3+1)\gcd(x^4 + x^3 + x^2 + x + 1, x^3 + 1) in Q[x]\mathbb{Q}[x].

Solution

Solution. Apply the division algorithm:

x4+x3+x2+x+1=x(x3+1)+(x2+x+1)x^4 + x^3 + x^2 + x + 1 = x(x^3 + 1) + (x^2 + x + 1)

x3+1=(x1)(x2+x+1)+2x^3 + 1 = (x - 1)(x^2 + x + 1) + 2

Since 22 is a non-zero constant (a unit in Q[x]\mathbb{Q}[x]), the polynomials are coprime: gcd(x4+x3+x2+x+1,x3+1)=1\gcd(x^4 + x^3 + x^2 + x + 1, x^3 + 1) = 1. \blacksquare

Problem. Show that f(x)=x55x+3f(x) = x^5 - 5x + 3 is irreducible in Q[x]\mathbb{Q}[x].

Solution

Solution. By the rational root theorem, possible rational roots are ±1,±3\pm 1, \pm 3. f(1)=1f(1) = -1, f(1)=7f(-1) = 7, f(3)=216f(3) = 216, f(3)=269f(-3) = -269. No rational roots.

Since deg(f)=5\deg(f) = 5If ff is reducible, it must have an irreducible factor of degree 11 or 22. No degree-11 factor means no rational root. We check for degree-22 factors by reducing modulo 22: fˉ=x5+x+1\bar{f} = x^5 + x + 1 in F2[x]\mathbb{F}_2[x]. fˉ(0)=1\bar{f}(0) = 1, fˉ(1)=1\bar{f}(1) = 1So no roots in F2\mathbb{F}_2. The only irreducible quadratic in F2[x]\mathbb{F}_2[x] is x2+x+1x^2 + x + 1. Division gives x5+x+1=(x2+x+1)(x3+x2)+1x^5 + x + 1 = (x^2+x+1)(x^3 + x^2) + 1So x2+x+1x^2 + x + 1 does not divide fˉ\bar{f}.

Thus ff has no factor of degree 11 or 22So ff is irreducible in Q[x]\mathbb{Q}[x]. \blacksquare