6

I need to factorise $x^4 + 3x^2 + 6x + 10$ completely over $\mathbb{Q}$.

I am not sure how to do this. I can't find any roots of this equation in $\mathbb{Z}$.

user88595
  • 4,549
cf12418
  • 869

1 Answers1

8

Let : $$x^4 + 3x^2 + 6x + 10 = (x^2 + ax + b)(x^2 + cx + d)$$

Expanding the right hand side and matching coefficients with the left hand side you need to solve the following equations : \begin{eqnarray*} a + c &=& 0 \qquad (x^3)\\ b + d + ac &=& 3 \qquad (x^2)\\ ad + bc &=& 6 \qquad (x)\\ bd &=& 10 \qquad (x^0) \end{eqnarray*}

Clearly $a = -c$ and then you could try $b = \pm1, d = \pm10$ or $b = \pm2, d = \pm5$ and see what you get for $a$ and $c$.
Something else you can notice from the third equation is that $a(d-b) = 6$. This leads to the fact that $d-b|6$ hence they can't be $\pm1$ and $\pm10$.

user88595
  • 4,549