10.1 Definition and Basic Properties
The polynomial ring R[x] consists of all formal sums ∑i=0naixi with ai∈R. It is a ring under the usual addition and multiplication of polynomials.
Theorem 10.1 (Division Algorithm). If F is a field and f,g∈F[x] with g=0Then There exist unique q,r∈F[x] such that f=qg+r with deg(r)<deg(g) or r=0.
Theorem 10.2 (Factor Theorem). a∈F is a root of f∈F[x] if and only if (x−a) divides f.
Proposition 10.3. A polynomial of degree n over a field has at most n roots (counting multiplicity).
10.2 Irreducible Polynomials
A non-constant polynomial f∈F[x] is irreducible if it cannot be factored as f=gh With both g and h of degree less than deg(f).
Proposition 10.4. Every polynomial in 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+a0∈Z[x]. If there exists a prime p such that:
- p divides a0,a1,…,an−1.
- p does not divide an.
- p2 does not divide a0.
Then f is irreducible in Q[x].
Proof. Suppose f=gh with g,h∈Z[x] (by Gauss’s lemma), deg(g)=r≥1 deg(h)=s≥1, r+s=n. Modulo p: fˉ=gˉhˉ=aˉnxn in (Z/pZ)[x]. Since Z/pZ[x] is an integral domain, gˉ=bxr And hˉ=cxs for some b,c∈Z/pZ. In particular, the constant terms of g and h are both divisible by p. But then p2 divides a0Contradicting condition (3). ■
10.3 Worked Examples
Problem. Show that x2+1 is irreducible in R[x] but reducible in C[x].
Solution
Solution. In R[x]: if x2+1=(x+a)(x+b) with a,b∈RThen a+b=0 and ab=1Giving −a2=1Which has no real solution. So x2+1 is irreducible In R[x].
In C[x]: x2+1=(x+i)(x−i). ■
Problem. Use the Euclidean algorithm to compute gcd(x4+x3+x2+x+1,x3+1) in Q[x].
Solution
Solution. Apply the division algorithm:
x4+x3+x2+x+1=x(x3+1)+(x2+x+1)
x3+1=(x−1)(x2+x+1)+2
Since 2 is a non-zero constant (a unit in Q[x]), the polynomials are coprime: gcd(x4+x3+x2+x+1,x3+1)=1. ■
Problem. Show that f(x)=x5−5x+3 is irreducible in Q[x].
Solution
Solution. By the rational root theorem, possible rational roots are ±1,±3. f(1)=−1, f(−1)=7, f(3)=216, f(−3)=−269. No rational roots.
Since deg(f)=5If f is reducible, it must have an irreducible factor of degree 1 or 2. No degree-1 factor means no rational root. We check for degree-2 factors by reducing modulo 2: fˉ=x5+x+1 in F2[x]. fˉ(0)=1, fˉ(1)=1So no roots in F2. The only irreducible quadratic in F2[x] is x2+x+1. Division gives x5+x+1=(x2+x+1)(x3+x2)+1So x2+x+1 does not divide fˉ.
Thus f has no factor of degree 1 or 2So f is irreducible in Q[x]. ■