Ask Your Question

Revision history [back]

Sage symbolics handles fractional powers better than numerical ones, so if you replace

U=x^0.7*y^0.3;U

with

U=x^(7/10)*y^(3/10);U

it seems to work much better.