[Math] Solving 5th degree polynomial

factoringpolynomialsrational-functions

Solve the equation, $$6x^5 + 5x^4 − 51x^3 + 51x^2 − 5x − 6 = 0$$(hints: the pattern of the coefficients)

How I attempted this problem is to use the rational root theorem to obtain the factors. The possible roots are $$±(1, 1/2, 1/3, 1/6, 2, 2/3, 3, 3/2, 6)$$
By substituting the values inside the equation, only the following roots satisfy the equation:

$$x=1,\:x=\frac{3}{2},\:x=\frac{2}{3}$$

Henceforth, I came up with the following based on the above roots:
$$\left(x-1\right)\left(2x-3\right)\left(3x-2\right)$$
Clearly expanding them would give me a 3rd degree polynomial as follows:
$$6x^3 – 19x^2 + 19x – 6$$

Using polynomial division where I divided the original 5th degree equation with the above equation,
I obtained the following equation:
$$x^2+4x+1$$
Now, solving the above equation using quadratic formula, I am able to get the roots. Hence, I have obtained all the roots of the solution.
However, looking at the hint that asks me to observe the pattern of the coefficients, I think that the method used to arrive at my solution might have been long-winded (it was indeed tedious plugging in the rational .roots one-by-one into the equation to see which returns value of 0). Is there something that I'm missing in the way I approached the question?

Best Answer

If you ask me, you did the good thing ignoring the hint and solving it your way. However, there is an "algorithm" for solving these type of problems that the hint is probably referring to. Notice that sum of coefficients is $0$, so $x = 1$ is root. Dividing by $x - 1$ leaves $$6x^4 + 11x^3 - 40x^2 +11x +6 = 0$$ and noticing that $0$ isn't a root and dividing by $x^2$ you get $$6(x^2 + \frac{1}{x^2}) + 11(x + \frac{1}{x}) - 40 = 0$$ Now substitute $y = x + \frac{1}{x}$, and notice $x^2 + \frac{1}{x^2} = y^2 - 2$, you are left with two quadratic equations to solve.

Related Question