First time here? Check out the FAQ!
answered 2012-09-29 02:30:15 +0100
simplify_full() isn't a top-level function, it's a method attached to symbolic expressions. You can use it like this:
simplify_full()
sage: f = (x-1)^2 sage: f.simplify_full() x^2 - 2*x + 1