Limit Examples
Use these examples for Maple syntax.
Using "Limit" with a capital "L" produces a statement which can be evaluated with "value(%)". The "%" relates to the last executed statement. Using "limit" with a small "l" computes the limit immediately.
> | Limit((x^2-9)/(x-3),x=3); |
> | value(%); |
> | limit((x^2-9)/(x-3),x=3); |
> | Limit(sin(x)/x,x=0); |
> | value(%); |
> | limit(sin(x)/x,x=0); |
> | Limit((sqrt(2+x)-sqrt(2))/x,x=0); |
> | value(%); |
> | limit((sqrt(x+1)-2)/(x-3),x=3); |
> | Limit((1/(x+4)-1/4)/x,x=0); |
> | value(%); |
> | limit(sin(7*x)/(3*x),x=0); |
Limits at infinity and left and right hand limits can be computed.
> | Limit((3*x^3-4*x+8)/(2*x^3+100*x^2),x=infinity); |
> | value(%); |
> | limit((3*x^3-4*x+8)/(2*x^3+100*x^2),x=infinity); |
> | Limit((3*x^2-4*x+8)/(2*x^3+100*x^2),x=infinity); |
> | limit((3*x^2-4*x+8)/(2*x^3+100*x^2),x=infinity); |
> | Limit((3*x^4-4*x+8)/(2*x^3+100*x^2),x=infinity); |
> | limit((3*x^4-4*x+8)/(2*x^3+100*x^2),x=infinity); |
> | Limit(x^2/(x+4),x=-4); |
> | value(%); |
> | Limit(x^2/(x+4),x=-4,left); |
> | value(%); |
> | Limit(x^2/(x+4),x=-4,right); |
> | value(%); |
> |