Back to functions

acosh


inverse hyperbolic cosine

Returns the inverse of cosh.

Usage: nerdamer("acosh(x)")


Parameters

expression x Returns the appropriate value if possible otherwise it returns the function with the simplified expression

Returns

Expression

EXAMPLES:
var r = nerdamer('acosh(0)');
console.log(r.text());
var t = nerdamer('acosh(-1)').evaluate()
console.log(t.text());
OUTPUT:
Back to functions