home *** CD-ROM | disk | FTP | other *** search
/ PC Open 13 / pcopen13.iso / Zip / SM34A.ZIP / LIBRARY / ACOSH.LI < prev    next >
Encoding:
Text File  |  1993-10-16  |  257 b   |  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.