Solving a cubic polynomial equation.

Solution 1:

I'll give you some hints.

1) Transform the equation to the form $x^3 + 3bx + c$. (The 3 just comes from a simple change of variable, but will come in handy). Your transformation method may come in handy here.

2) Now for the clever trick. Let $x = w - \frac{b}{w}$. This transforms the equation into $w^3 + c - \frac{b^3}{w^3} = 0$... which is a quadratic in $w^3$. So solve this

3) You now have a value for $w$. Can you now find a root of the equation?