How can I factorise $c^4+4c^3+5c^2+8c+6$?
2026-04-03 14:07:18.1775225238
How can I factorise $c^4+4c^3+5c^2+8c+6$?
311 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
3
When all polynomial coefficients are integers, any rational root (if it exists at all) $\frac p q$ of $a_nx^n + a_{n-1}x^{n-1} +\ldots + a_1x + a_0$ must satisfy: $$ p | a_0,\ q | a_n$$
In this particular case, we have $a_n = 1$, so $q = 1$, i.e., any rational root of $x^4 + 4x^3 +5x^2 +8x + 6$ must be integer that divides $6$, i.e. $\frac p q\in\{-6,-3,-2,-1,1,2,3,6\}$. Since all coefficients of your polynomial are positive, $\frac p q$ can't be positive.
One can then quickly check that $-1$ and $-3$ are indeed roots. That means that $$x^4 + 4x^3 +5x^2 +8x + 6 = (x+1)(x+3)r(x)$$ and if you use long division, you can find that $r(x) = x^2 +2$, which cannot be factored further over $\Bbb R$ (but can over $\Bbb C$, $x^2 + 2 = (x - i\sqrt 2)(x + i\sqrt 2)$).
Alternatively, you can note that $$x^4 + 4x^3 + 5x^2 +8x + 6 = (x^4 + 4x^3 + 3x^2) + (2x^2 +8x + 6) =\\ =x^2(x^2 + 4x + 3) + 2(x^2 + 4x + 3) = (x^2 + 2)(x^2 + 4x + 3)$$
and find the roots by qudratic formula. Though, this is often harder to do in practice then the above method.