I'm trying to find all real roots of a cubic. I wanted to use Cardando's Method but I'm not sure I'm correctly understanding how to obtain all 3 roots given the depressed cubic: $$t^3 + pt + q = 0$$
What I'm understanding is that unless $q = 0$ and $p \neq 0$ there are at most 2 roots?
Generally these two roots should be obtained by finding the $u$ and $v$ from $t = u + v$ and then:
- The first root of $t$ is: $u(\frac{-1 + i\sqrt 3}{2}) + v(\frac{-1 - i\sqrt 3}{2})$
- And the second root of $t$ is: $u(\frac{-1 - i\sqrt 3}{2}) + v(\frac{-1 + i\sqrt 3}{2})$
So a couple questions here. How do we know there are only 2 roots in these cases, and where did those two magic coefficients come from that I'm multiplying $u$ and $v$ by?
Cardanos method. – Bernard Nov 18 '15 at 12:54