Inspect structure of .
| (1) |
In a procedure, find all the global names that have no attributes.
>
|
f := proc(x) ASSERT(type(x,integer)); ifactor(x) end proc;
|
| (2) |
>
|
|
| (3) |
Rename the local variable i to j.
>
|
g := proc() local i; end proc;
|
| (4) |
>
|
|
| (5) |
>
|
|
| (6) |
Convert to the inert form the expansion of (x+y)^10 without applying ToInert on products.
>
|
|
| (7) |