Ask Your Question

Revision history [back]

What operating system and browser are you using, and what version of Sage? With Mac OS X, I see this problem with Firefox, but not with Safari: it looks fine with Safari. So it looks more like a browser issue than a Sage issue.

Two ways around it: first,

solns = solve(17*x^3 + 2*x^2 + 54*x + 5 == 0, x) # a list with two elements
a = solns[0]
b = solns[1]

Then you can look at either a or b individually and (I hope) it will look fine. Second, if you look at solns, it looks bad, but view(solns, viewer='pdf') should pop open a PDF file with nice looking output, and you shouldn't see any clipping.