How to find irreducible factors of a polynomial? For example, how to find the irreducible factors of $x^4+1$ over integers mod 3? I have a start but need some help.
-
1Irreducible factors over which field? – Cameron Buie Apr 11 '13 at 04:07
-
2Depends what field you're considering. For example, $x^2+1$ is irreducible as an element of $\mathbb{R}[x]$, but factors into irreducibles as $$(x-i)(x+i)$$ as an element of $\mathbb{C}[x]$. – Zev Chonoles Apr 11 '13 at 04:08
-
Sorry, I forgot to say over the field integers mod 3. – Allen Miller Apr 11 '13 at 04:13
-
To see other examples of why the field makes a difference, see here. – Cameron Buie Apr 11 '13 at 04:13
-
Anyone have an idea? It seems like there are no linear roots. I'm having trouble thinking about this in $Z$[x]_3. Normally $x^4 +1$ wouldn't have any roots. – Allen Miller Apr 11 '13 at 04:25
-
you can see this.http://mathforum.org/library/drmath/view/69482.html – Xiaolang Apr 11 '13 at 04:28
-
See this question. – Jyrki Lahtonen Apr 11 '13 at 05:22
3 Answers
First of all, note that for any $x\in \Bbb Z_3$, we have either $x^4=0$ or $x^4=1$, so in no case do we have $x^4+1=0$. Thus, if it factors at all over $\Bbb Z_3$, it will factor as two irreducible quadratics. We may as well assume they are monic, and we readily find that they must be of the form $$x^4+1=(x^2+ax+b)(x^2-ax+d),$$ where $$b+d=a^2\\a(d-b)=0\\bd=1.$$ Now, if $a=0$, then we would find by the first and third of the equations in the system above that $-1$ has a square root in $\Bbb Z_3.$ (Why?) However, $0$ and $1$ are the only squares in $\Bbb Z_3$, so $a\ne0$, whence $b=d$ by the second equation in the system above, so the system becomes $$2b=a^2=1\\b^2=1.$$ Hence, $b=2=-1,$ so $$x^4+1=(x^2+x-1)(x^2-x-1).$$ See this post for some of the details I glossed over.

- 102,994
An integer factorization that everyone ought to know or to learn: $$x^4+4=(x^2+2x+2)(x^2-2x+2)\,.$$ The mod-$3$-factorization of $x^4+1$ follows.

- 62,818
Hint $\rm\: mod\ 3\!:\,\ x^4\!+\!1 \equiv (x^2\!-\!1)^2\!-x^2 \equiv\, (x^2\!-\!1\!+\!x)\,(x^2\!-\!1\!-\!x)$
$\begin{eqnarray}\rm\!\! {\bf Generally}\ \ mod\,\ a^2\!+\!2b\!:\,\ x^4\!+\!b^2 &\equiv\,&\rm x^4\!+\!b^2\!-\!(\color{#0a0}{2b}\!+\!\color{#c00}{a^2})\,x^2\\ &\equiv\,&\rm x^4\!-\!\color{#0a0}{2b}\,x^2\!+b^2 - \color{#c00}{a^2}\,x^2\\ &\equiv\,&\rm (x^2\!-\!b)^2-(ax)^2\\ &\equiv\,&\rm (x^2\!-\!b\!-\!ax)\,(x^2\!-\!b\!+\!ax)\end{eqnarray}$
i.e. completing the square yields a differences of squares, so a factorization.

- 19,574