Limit
Limit(expr, x->x0)
gives the limit of
expr
asx
approachesx0
Limit(expr, x->x0, Direction->-1)
gives the limit as
x
decreases in value approachingx0
(x
approachesx0
“from the right” or “from above”)
Limit(expr, x->x0, Direction->1)
gives the limit as
x
increases in value approachingx0
(x
approachesx0
“from the left” or “from below”)
See:
Examples
>> Limit(7+Sin(x)/x, x->Infinity)7
>> Limit(x^(-2/3),x->0)Indeterminate
>> Limit(x^(-2/3),x->0 , Direction->-1)Infinity
Related terms
D, DSolve, Integrate, ND, NIntegrate
Implementation status
- ✅ - full supported