home *** CD-ROM | disk | FTP | other *** search
- * mult internal+external
- mult(x) internal
- It gives a list of multipliers of x. It converts product into a list of
- multipliers.
- e.g. mult(a*b) gives [a,b].
-
- mult(x, n) external
- It gives the n-th multiplier of x if possible.
- mult(x_,n_) := member(mult(x), n).
- e.g. mult(a*b*c, 1) gives a.
- See also: mult, term, type.
-