1
$\begingroup$

I have a cubic equation: $-x^3 + 7x^2 - 16x + 12 = 0.$

How they showed us to solve this quickly is to simplify the equation to $-(x - 2)^2 (x - 3) = 0$ and find the solutions this way.

My question is how to get to that form in a generic way.

I looked over at certain methods to get the solutions but they all seem to be taking too long and complicated.

  • 1
    It's basically systematic trial and error. You know what the divisors of $12$ are (including negative ones); you try them out one by one until you hit the jackpot.2012-05-07

1 Answers 1

3

In classes, cubic equations always have rational roots. This is because Cardano's method is such a mess. In your example, all the rational roots are among $\pm(1,2,3,4,6,12)$ so try them. If you find one, you have a quadratic-no problem. Outside class, a numeric solution will be acceptable and root finding will solve the problem, but you should first check the rational roots. If there is one, it may show you something about the problem.

  • 1
    There is. If there are rational roots, they are integers that divide $38$. Not too many candidates. Let's cross our fingers and try small ones first. We find that $x=-2$ works. Divide our polynomial by $x+2$. We get $x^2-8x-19$. Use the Quadratic Formula for the other roots.2012-05-07