Back to functions

limit


Limit

Attempts to calculate the limit of a function.

Usage: nerdamer("limit(expression, variable, limit)")


Parameters

expression expression The expression to be transformed
variable variable The variable
limit limit The limit

Returns

Expression

EXAMPLES:
var x = nerdamer('limit(x^x-1,x,0)');
console.log(x.toString());
var y = nerdamer('limit((x^2+2*x-3)/(x^6+4),x,0)');
console.log(y.toString());
OUTPUT:
Back to functions