% | previous result |
True | boolean constant representing true |
False | boolean constant representing false |
EndOfFile | end-of-file marker |
% |
Typical examples are Simplify(%) and PrettyForm(%) to simplify and show the result in a nice form respectively.
In> Taylor(x,0,5)Sin(x) Out> x-x^3/6+x^5/120; In> PrettyForm(%) 3 5 x x x - -- + --- 6 120 |
True False |
EndOfFile |