You can put this solution on YOUR website! How do I find all zeros in f(x) = x^3 + 1?
-----
x^3+1 is divisible by x+1
----
x^3+1 = (x+1)(x^2 - x + 1)
----
Solve:: (x+1)(x^2-x+1) = 0
If x+1 = 0, x = -1
OR
If x^2-x+1 = 0
x = [1 +- sqrt(1-4*1*1)]/2
x = [1+sqrt(-3)]/2 = (1+isqrt(3))/2
OR
x = (1-isqrt(3)]/2
=================
Cheers,
Stan H.
-------------