First time here? Check out the FAQ!
answered 2013-12-11 10:09:44 +0100
An alternative approach is not to use the symbolic ring but a polynomial ring:
sage: x = polygen(RR) sage: (x^3+8).roots() [(-2.00000000000000, 1)]
This returns a list of roots in RR with multiplcities.