x -> 1/2 (-1 - Sqrt[-3 + 4 Sqrt[11]]);
x -> 1/2 (-1 + Sqrt[-3 + 4 Sqrt[11]]);
x -> 1/2 (-1 - i Sqrt[3 + 4 Sqrt[11]]);
x -> 1/2 (-1 + i Sqrt[3 + 4 Sqrt[11]]).
...from the source of all wisdom: Mathematica
....here's how you do it by hand:
0 = x^4 + 2 x^3 + 3 x^2 + 2 x - 10
= (x^2 + x)^2 + 2 (x^2 + x) - 10
= m^2 + 2m - 10; where m = x^2 + x
so,
m = -1 + sqrt(11) or m = -1 - sqrt(11)
Case m = -1 + sqrt(11):
x^2 + x +1 - sqrt(11) = 0 => x = [-1 + sqrt(-3 + sqrt(11))]/2 or x = [-1 - sqrt(-3 + sqrt(11))]/2
Case m = -1 - sqrt(11):
x^2 + x +1 + sqrt(11) = 0 => x = [-1 + i sqrt(3 + 4 sqrt(11))]/2 or x = [-1 - i sqrt(3 + 4 sqrt(11))]/2
....don't ask useless questions like this no more