InertForm
MakeInert
convert a maple expression to inert-form
Calling Sequence
Parameters
Description
Package Usage
Examples
Compatibility
MakeInert( expr )
expr
-
expression
The MakeInert command accepts an ordinary non-inert-form expression and returns an inert-form expression.
The input should be a simple algebraic type. No automatic simplification is prevented because the input was already created as a Maple object.
This function is part of the InertForm package, so it can be used in the short form MakeInert(..) only after executing the command with(InertForm). However, it can always be accessed through the long form of the command by using InertForm[MakeInert](..).
with⁡InertForm:
MakeInert⁡log10⁡x
log10⁡x
MakeInert⁡sin⁡x
sin⁡x
MakeInert⁡x+12⁢y⁢z
x+12∗y∗z
ex≔MakeInert⁡3⁢x+12⁢y⁢z
ex≔32∗x+1y∗z
lprint⁡ex
((3 %/ 2) %* (x %+ 1)) %/ (y %* z)
Display⁡ex,inert=false
32⋅x+1y⋅z
The InertForm[MakeInert] command was introduced in Maple 18.
For more information on Maple 18 changes, see Updates in Maple 18.
See Also
InertForm:-Parse
Download Help Document