| 1 | initial version |
Update: The following is now possible, and should work in Sage 4.6, thanks to Burcin:
sage: x*x
x^2
sage: x.mul(x, hold=True)
x*x
sage: sin(2*pi)
0
sage: sin(2*pi,hold=True)
sin(2*pi)
More documentation can be found in each symbolic function, and x.mul? and x.add?.
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.