Back to functions

asinh


inverse hyperbolic sine

Returns the inverse of sinh.

Usage: nerdamer("asinh(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('asinh(0)');
console.log(r.toString());
var t = nerdamer('asinh(1)').evaluate();
console.log(t.toString());
OUTPUT:
Back to functions