Back to functions

asin


arcsine

Returns the inverse of sin in radians. Does not detect for known values of pi at them moment.

Usage: nerdamer("asin(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('asin(0)');
console.log(r.toString());
var t = nerdamer('asin(sqrt(2)/2)')
console.log(t.toString());
OUTPUT:
Back to functions