Consider this equation solving on WolframAlpha,
http://www.wolframalpha.com/input/?i=+solve+%5B+0+%3D+x^4+-+6x^2+-+8xcos%28+%282pi+%29%2F5+%29+-+2cos%28+%284pi%29%2F5%29+-+1+%5D
But the same equation on sage gives the roots,
[x == -1/2sqrt(-2sqrt(5) + 10) - 1, x == 1/2sqrt(-2sqrt(5) + 10) - 1, x == -1/2sqrt(2sqrt(5) + 6) + 1, x == 1/2sqrt(2sqrt(5) + 6) + 1]
It seems that the first two roots given by WolframAlpha differ from the last two roots given by Sage.
Why?