V Limit and continuity

FunctionsBrief Usage Descriptions and Examples
lim Find two-sided limits, one-sided limits, infinite limits, and limits at infinity. Find the limit of f(x) as x approaches c by "lim;f(x);x;c" or "lim(f(x),x,c)", which returns the two-sided limit (default). The parameters "n", "p", "ε" in "lim;f(x);x;n/p;ε" are optional, where "n" is for "-", "p" is for "+", and "ε" is for verifying the limit.
Examples lim;x;x;1 || lim;1/t;t;oo || lim;tan(x);x;pi/4 || lim;(-1)**n;n;oo || lim;(y**2-4)/(y+2);y;-2 || lim;1/(x+1)**(1/2);x;-1;n || lim;exp(-x**2);x;oo || lim;x**3/exp(x);x;oo || lim;1/n**3;n;oo;1000 || lim;x**2-x;x;1;0.01 || lim;(t+3)**(1/2);t;-3; p;0.005 || lim;(x+1)**(1/2)-x**(1/2);x;oo || lim;((2+h)**3-2**3)/h;h;0 || lim;(1/(2+h)^2-1/2^2)/h;h;0 || lim;abs(x)/x;x;0;n || lim(log(x),x,0,p) || lim;floor(x);x;-2.5 ||.

Back to top