home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / sm30a.zip / MULT.KEY < prev    next >
Text File  |  1993-11-07  |  462b  |  12 lines

  1. * mult                                                internal+external
  2. mult(x)                                               internal
  3. It gives a list of multipliers of x. It converts product into a list of
  4. multipliers.
  5. e.g. mult(a*b) gives [a,b].
  6.  
  7. mult(x, n)                                            external
  8. It gives the n-th multiplier of x if possible.
  9. mult(x_,n_) := member(mult(x), n).
  10. e.g. mult(a*b*c, 1) gives a.
  11. See also: mult, term, type.
  12.