Back to functions

coth


hyperbolic cotangent

Returns the hyperbolic cotangent of a number

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