5

I need to make the decomposition in $\mathbb{R}$ of:

$$x^5+x$$

Here my steps:

$$x(x^4+1)$$ $$x\big[ (x^2)^2+1 \big]$$ $$x\big[(x^2+1)^2-2x^2\big]$$

how should I proceed?

3 Answers3

4

Just use $$b^2-a^2=(b-a)(b+a).$$

Paul
  • 20,553
0

To factor $x^4+1$ into linear factors find the roots of that polynomial! So we are looking for complex numbers satisfying $x^4=-1$. Squaring gives us $x^8=1$. So we are looking for 8th roots of unity. Since $x^4=-1\ne 1$ we are looking for primitive 8th roots of unity. There are exactly four of them: $$\frac{\pm 1 \pm i}{\sqrt{2}}.$$

0

Another (less ingenious but more systematic?) way is to first work over complex numbers:
$$\begin{align}x^4+1&=(x^2)^2-i^2=(x^2-i)(x^2+i)\\ &=(x+\frac{1+i}{\sqrt2})(x-\frac{1+i}{\sqrt2})\cdot(x+\frac{-1+i}{\sqrt2})(x-\frac{-1+i}{\sqrt2})\\ &=(x-\frac{1+i}{\sqrt2})(x+\frac{-1+i}{\sqrt2})\cdot(x-\frac{-1+i}{\sqrt2})(x+\frac{1+i}{\sqrt2})\\ &=(x^2-\sqrt2x+1)(x^2+\sqrt2x+1)\end{align}$$ So this obtains the decomposition by permuting the two hidden factors over complex numbers.
Hope this helps.

awllower
  • 16,536