home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS - Coast to Coast
/
simteldosarchivecoasttocoast2.iso
/
calculat
/
sm30a.zip
/
ACOSH.(X)
< prev
next >
Wrap
Text File
|
1993-10-16
|
257b
|
10 lines
# acosh(x) is the inverse hyperbolic cosine function of x, the inverse
# of cosh(x).
# See also: cosh(x)
acosh(0) := pi/2*i
acosh(1) := 0
acosh(inf) := inf
acosh(-inf) := inf+pi*i
acosh(x_) := if( isnumber(x) and numeric==on, ln(x+sqrt(x^2-1)) )