ACOSH INDEX

ACOSH _ _ _ _ _ _ _ _ _ _ _ _ operator

acoshrepresents the hyperbolic arccosine of its argument. It takes an arbitrary scalar expression as its argument. The derivative of acosh is known to the system. Numerical values may also be found by turning on the switch rounded.

syntax:

acosh(<expression>) or acosh <simple\_expression>

<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.

examples:


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)

You may attach functionality by defining acosh to be the inverse of cosh. This is done by the commands


        put('cosh,'inverse,'acosh);
        put('acosh,'inverse,'cosh);

You can write a procedure to attach integrals or other functions to acosh. You may wish to add a check to see that its argument is properly restricted.