type/`+`
check for an expression of type `+`
type/`*`
check for an expression of type `*`
type/`^`
check for an expression of type `^`
Calling Sequence
Parameters
Description
Examples
type(expr, `+`)
type(expr, `*`)
type(expr, `^`)
expr
-
any expression
These procedures check for expressions of various arithmetic types. For more information about the arithmetic operations, see arithop.
Subtractions are considered to be of type `+`, and similarly, divisions are of type `*`.
The arithmetic operator must be enclosed in left single quotes in the function call.
The type of an arithmetic operation is determined after automatic simplification of expr occurs. Therefore, the expression x−12 is actually of type `+`, rather than `*`, since after automatic simplification this expression becomes x2−12.
Similarly, the expression 1x is of type `^`, rather than `*`, since the expression is equivalent to x−1. For more information on automatic simplification in Maple, refer to the Maple Expressions chapter of the Maple Programming Guide.
Note: type(expr, `^`) is equivalent to type(expr, `**`).
type⁡x2,`^`
true
type⁡x+2,`+`
type⁡x+x,`+`
false
type⁡x+x,`*`
See Also
+, -, *, /, ^
ProgrammingGuide/MapleExpressions
type
Download Help Document