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

  1. * lim                                                 internal
  2. lim(y, x = x0)
  3. It finds the limiting value of y when x = x0.
  4.  
  5. lim(y, x = x0+zero)
  6. It finds the right-sided limit as x approches to x0 from the positive
  7. (+inf) direction (x = x0+).
  8.  
  9. lim(y, x = x0-zero)
  10. It finds the left-sided limit as x approches to x0 from the negative
  11. (-inf) direction (x = x0-).
  12.  
  13. Note that the correct answers are usually for the indeterminate forms:
  14. 0/0, inf/inf, 0*inf, 0^0, inf^0. 
  15. See also: zero, replace.
  16. e.g. lim(sin(x)/x, x = 0) gives 1.
  17.