home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / sm30a.zip / ACOSH.(X) < prev    next >
Text File  |  1993-10-16  |  257b  |  10 lines

  1. #    acosh(x) is the inverse hyperbolic cosine function of x, the inverse
  2. #    of cosh(x).
  3. #    See also: cosh(x)
  4.  
  5. acosh(0) := pi/2*i
  6. acosh(1) := 0
  7. acosh(inf) := inf
  8. acosh(-inf) := inf+pi*i
  9. acosh(x_) := if( isnumber(x) and numeric==on, ln(x+sqrt(x^2-1)) )
  10.