Algebra – How to Factor a Fourth Degree Polynomial

algebra-precalculusfactoringquartics

I'm working on a math problem but I am having a hard time figuring out the method used by my textbook to make this factorization:

$$x^4 + 10x^3 + 39x^2 + 70x + 50 = (x^2 + 4x + 5)(x^2 + 6x + 10)$$

I've tried to see if this equation can be factored by grouping or by long division to no avail. Any help would be greatly appreciated.

Best Answer

The only really general way of which I am aware is to guess at the form of the factorization. Since it is monic (the highest term has coefficient 1), you know that the factors should also be so. Thus, there are really only 2 possible factorizations you need to think of, at least at start, which may then be further reducible through easier methods. If we denote the polynomial by $P(x)$, we produce the following candidate factorization equations:

  1. one is factorization to a linear term and cubic term, i.e.

$$P(x) = (x + a)(x^3 + b_2 x^2 + b_1 x + b_0)$$

  1. the other is factorization to two quadratic terms, i.e.

$$P(x) = (x^2 + a_1 x + a_0)(x^2 + b_1 x + b_0)$$

The "obvious" next case of this would simply result in now getting a third-degree polynomial on the left and first on the right, but that's just case 1 thanks to the commutative property, so this is exhaustive. The second case is what you have here. The first case is most easily tested and solved by a simple application of the rational root theorem which will, if it's possible, give the value for $a$ - followed by a polynomial long division to get the rest.

For the second case, there isn't really a much better method than to just multiply it all out:

$$(x^2 + a_1 x + a_0)(x^2 + b_1 x + b_0) = x^4 + c_3 x^3 + c_2 x^2 + c_1 x + c_0$$

where we've introduced for notational cleanliness (I had the computer multiply this out for me because it's there)

$$c_3 := a_1 + b_1$$ $$c_2 := a_0 + a_1 b_1 + b_0$$ $$c_1 := a_1 b_0 + a_0 b_1$$ $$c_0 := a_0 b_0$$

Then you just set the $c_j$ equal to the appropriate coefficient values read off from the terms of the given polynomial (i.e. $c_0 = 50$ in your given example), and try to find whole number values for $a_j$ and $b_j$ that work. You'd probably want to start with $c_3$ and $c_0$ first.

Related Question