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

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