Expression -- the class of all expressions
The type Expression is a member of the class Type.
Each object of class Expression is called an expression.
Each expression is also a member of class BasicList.
More general types (whose methods may also apply) :
Types of expression :
These expressions are symbolic representations of algebraic
expressions, mainly useful in printing. The method for
producing them is expression. The usual algebraic
operations are available for them, but most simplifications do not
occur.
The parts of expressions are not always expressions. For example,
factor returns such an expression.
i1 : (expression 2)^5 * (expression 3)^3 / ((expression 5) * (expression 11)^2)^6
5 3
2 3
o1 = --------
2 6
(5*11 )
o1 : Divide |
Functions which act on expressions:
Functions and methods returning a an expression :
Methods for using an expression :