Ask Your Question

Revision history [back]

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