Back to functions

acot


arccotangent

Returns the inverse of cot in radians.

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