Abstract Algebra – Prove that the Polynomial $x^5+2x+1$ is Irreducible Over $\mathbb{Z}$

abstract-algebrairreducible-polynomialspolynomials

Show that there do not exist polynomials $p(x)$ and $q(x)$ , each having integer coefficients and of degree greater than or equal to 1 such that: $$p(x)\cdot q(x) = x^5 + 2x + 1 $$


My approach

I found that only possible integral root of the $x^5 + 2x + 1 = 0 $ is ± 1 and these are not the zeroes of the polynomial. Hence obviously it doesn't have any linear factor. So i assumed $q(x)$ to be a third degree polynomial and $p(x)$ to be a second degree polynomial . That is ;$$p(x)=x^2+ax+b$$ $$q(x)=x^3+cx^2+dx+e$$ But i don't know how to solve it further. So please help me with this. And if there is some other approach to this question, then please share it .

Best Answer

Looking at questions like these modulo a prime is not guaranteed to work but it is definitely something that should be in your toolbox.

  • The theoretical justification comes from a corollary to Gauss' lemma and states that a monic polynomial $f(x)\in\Bbb{Z}[x]$ is irreducible in $\Bbb{Q}[x]$ if and only if it is irreducible in $\Bbb{Z}[x]$.
  • Should it happen that $f(x)=g(x)h(x)$ non-trivially in $\Bbb{Z}[x]$, then both $g$ and $h$ can be assumed to be monic. Reducing that equation modulo a prime $p$ tells that $\overline{f}(x)=\overline{g}(x)\overline{h}(x)$ in $\Bbb{Z}_p[x]$. As $g$ and $h$ were monic, we have $\deg g=\deg \overline{g}$ and $\deg h=\deg \overline{h}$.
  • Checking for irreducibility in $\Bbb{Z}_p[x]$ is often easier because, at least in principle, we can try all the alternatives as the field of coefficients is finite. Should it happen that $\overline{f}$ is irreducible then we can immediately conclude that $f$ is also irreducible.
  • Factoring in $\Bbb{Z}_p[x]$ is also easier (for small $p$ it is feasible to build a list of low degree irreducible polynomials and use those much the same way you use a list of small primes to factor smallish integers). Even if $\overline{f}$ is not irreducible we may still get information about the degrees of $g$ and $h$. Behold!

Let's look at your example polynomial $f(x)=x^5+2x+1$ modulo primes $p=2$ and $p=3$. Either choice of $p$ leads to a proof of irreducibility.

  • When $p=2$ we get $\overline{f}=x^5+1=(x+1)(x^4+x^3+x^2+x+1)$. Here it is not immediately obvious that the degree four polynomial is irreducible, but it does follow from the facts that A) it has no zeros modulo two (only two choices to test!), B) $x^2+x+1$ is the only irreducible quadratic in $\Bbb{Z}_2[x]$, and e.g. long division shows that the quartic is not divisible by that either. How does this help us? What we have at this point is that if $f$ is not irreducible it must be a product of a linear factor and a quartic factor. But the rational root test tells you that $f(x)$ does not have a linear factor. We are done - $f$ must be irreducible! Here the key was that a modulo $2$ consideration showed that $f$ cannot have a quadratic factor!
  • As Lulu pointed out, $f(x)$ is irreducible modulo $p=3$. It is, of course, easy to see that none of $f(0),f(1),f(2)$ are congruent to $0$ modulo $3$, so $f(x)$ has no linear factors. To exclude the possibility of a quadratic factor takes a bit more work here than it did with $p=2$. Anyway, with a bit of work we can show that $p_1(x)=x^2+1$, $p_2(x)=(x-1)^2+1$ and $p_3(x)=(x+1)^2+1$ are all the irreducible monic quadratics in $\Bbb{Z}_3[x]$. It takes a bit of work to show that none of them are factors of $f(x)$. We can do that in one swoop if we use the fact that $$(x-1)(x+1)p_1(x)p_2(x)p_3(x)=x^8-1$$ (this comes from a general related result, ask if you want to know more), and then compute with Euclid's algorithm that $\gcd(x^8-1,f(x))=1$ in $\Bbb{Z}_3[x]$. Anyway, we then know that $f$ is irreducible modulo three, and we are done.

For comparison, the methods in other answers are all very fine. They work well here as well as in many other cases. They work in many cases where modular techniques may fail. But, modular tricks are good to know. For example, instead of your $f(x)$ consider the polynomial $$ f(x)=x^5+2x+7^n, $$ where $n$ is either a parameter or some ridiculously large natural number. AFAICT all the other answers fail or lead to uncomfortably many cases. But, the above proof using reduction modulo $3$ goes through verbatim. The modulo $2$ argument survives if you can do the part with the rational root test and show that $f(\pm 7^\ell)\neq0$ for all $\ell, 0\le\ell\le n$. One term will usually dominate the others.