[Math] How to find out if a polynomial is irreducible

abstract-algebrairreducible-polynomialspolynomials

I have this polynomial:

$f(x)=x^4+x^3-4x^2-5x-5$. How can I find out if this polynomial is irreducible over the field $Q$ of rational numbers? I know about mod p irreducibility test but it fails in this case. In general how do you find out if a polynomial is irreducible or prove that it is reducible?

Best Answer

Being a quartic, this polynomial is reducible if and only if it has a linear or quadratic factor with integer coefficients.

A linear factor implies an integer root. The only possible roots are $1,-1,5,-5$. Checking, none of them works. Note that for $x=\pm5$ you don't need to do all the calculations since it is easy to see that then $$x^4+x^3-4x^2-5x-5\equiv-5\pmod{25}$$ and so LHS${}\ne0$.

So try $$x^4+x^3-4x^2-5x-5=(x^2+ax+b)(x^2+cx+d)\ .$$ Expanding and equating coefficients, $$a+c=1\ ,\quad ac+b+d=-4\ ,\quad ad+bc=-5\ ,\quad bd=-5\ .$$ The last equation gives four possibilities for $b$ and $d$, (in fact only two, as we may assume by symmetry that $b=\pm1$ and $d=\pm5$) and then it's easy to find the other coefficients:

  • $b=-1$, $d=5$, $a=(b+5)/(b-d)=-\frac23$, didn't work;
  • $b=1$, $d=-5$, $a=(b+5)/(b-d)=1$, $c=1-a=0$,

and we then check that $$x^4+x^3-4x^2-5x-5=(x^2+x+1)(x^2-5)\ .$$

Note that if our second attempt above had failed, this would be enough to conclude that the polynomial is irreducible.

Related Question