Back to functions

acoth


inverse hyperbolic cotangent

Returns the inverse of coth.

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