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:
csch((1/2)*pi)
csch(x)
csch((1/4)*pi)
{"symbol":{"group":5,"value":"csch(pi)","multiplier":{"num":"1","den":"1"},"imaginary":false,"isInfinity":false,"power":{"num":"1","den":"1"},"args":[{"group":3,"value":"pi","multiplier":{"num":"1","den":"1"},"imaginary":false,"isInfinity":false,"power":{"num":"1","den":"1"}}],"fname":"csch"}}
Back to functions