Back to functions

csch


hyperbolic cosecant

Returns the hyperbolic cosecant of a number

Usage: nerdamer("csch(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('csch(pi/2)');
console.log(r.toString());
var t = nerdamer('csch(x)')
console.log(t.toString());
var u = nerdamer('csch(pi/4)')
console.log(u.toString());
var v = nerdamer('csch(pi)')
console.log(v);
OUTPUT:
Back to functions