Back to functions

acsch


inverse hyperbolic cosecant

Returns the inverse of csch.

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