<A NAME=ACOSH>
<TITLE>ACOSH</TITLE></A>
<b><a href=r37_idx.html>INDEX</a></b><p><p>
<B>ACOSH</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P>
<P>
<P>
<P>
<em>acosh</em>represents the hyperbolic arccosine of its argument. It takes
an arbitrary scalar expression as its argument. The derivative of
<em>acosh</em> is known to the system. Numerical values may also be found by
turning on the switch
<A HREF=r37_0330.html>rounded</A>.
<P>
<P>
<P> <H3>
syntax: </H3>
<em>acosh</em>(<expression>) or <em>acosh</em> <simple\_expression>
<P>
<P>
<P>
<expression> may be any scalar REDUCE expression, not an array, matrix or
vector expression. <simple\_expression> must be a single identifier or
begin with a prefix operator name.
<P>
<P>
<P> <H3>
examples: </H3>
<P><PRE><TT>
acosh a;
ACOSH(A)
acosh(0);
ACOSH(0)
df(acosh(a**2),a);
4
2*SQRT(A - 1)*A
----------------
4
A - 1
int(acosh(x),x);
INT(ACOSH(X),X)
</TT></PRE><P>You may attach functionality by defining <em>acosh</em> to be the
inverse of
<em>cosh</em>. This is done by the commands
<P><PRE><TT>
put('cosh,'inverse,'acosh);
put('acosh,'inverse,'cosh);
</TT></PRE><P><P>
<P>
You can write a procedure to attach integrals or other
functions to <em>acosh</em>. You may wish to add a check to see that its
argument is properly restricted.
<P>
<P>
<P>