| 1 | initial version |
simplify_full() isn't a top-level function, it's a method attached to symbolic expressions. You can use it like this:
sage: f = (x-1)^2
sage: f.simplify_full()
x^2 - 2*x + 1
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.