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

  1. * assume                                              external
  2. assume(x > 1) assumes the variable x > 1 in real domain.
  3.         By default, |x| < inf and all variables are complex, except that
  4. variables in inequalities are real, as usual only real numbers can be
  5. compared. e.g. x is complex in sin(x), but y is real in y > 1.
  6.     You can restrict the domain of a variable by assuming the variable
  7. is even, odd, integer, real number, positive or negative.
  8. The assume() can be cleared by clear().
  9. See aslo: sign, isodd, iseven, isinteger, isreal, isnumber, clear.
  10. e.g. assume(x>0), assume(x>0, y<0), iseven(x):=1
  11.