Active and Inert Functions - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Active and Inert Functions

  

Some Maple commands have both active and inert forms. The command names are the same except for the case of the first letter. The active forms start with a lowercase letter and immediately compute a result. The inert forms start with an uppercase letter and are useful to show steps in the problem-solving process.

  

Inert functions have other uses in Maple. For example, inert functions are used together with the mod operator to perform modular arithmetic over finite rings and fields.  For more information, see mod.

  

These are some of the Maple commands that have both active and inert forms:

• 

diff (Diff)

• 

int (Int)

• 

limit (Limit)

• 

normal (Normal)

• 

product (Product)

• 

sum (Sum)

  

In the Standard interface, Maple displays inert forms in gray so they are easily distinguished from the active forms of the same commands.

int(x^2,x);

x33

(1)

Int(x^2,x);

x2ⅆx

(2)
  

You can also make any Maple function inert by prefixing it with the % symbol.  For more information, see the value help page.

See Also

Enter Expressions in Maple

FromInert

ToInert

value