Finding Limits
In doing many kinds of calculations, you need to evaluate expressions when variables take on particular values. In many cases, you can do this simply by applying transformation rules for the variables using the
/. operator.
You can get the value of cos (x2) at 0 just by explicitly replacing x with 0, and then evaluating the result.
| Out[1]= |  |
|
In some cases, however, you have to be more careful.
Consider, for example, finding the value of the expression

when
x=0. If you simply replace
x by
0 in this expression, you get the indeterminate result

. To find the correct value of

when
x=0, you need to take the
limit.
| Limit[expr,x->x0] | find the limit of expr when x approaches x0 |
Finding limits.
This gives the correct value for the limit of  as x→0.
| Out[2]= |  |
|
No finite limit exists in this case.
| Out[3]= |  |
|
Limit can find this limit, even though you cannot get an ordinary power series for xlog (x) at x=0.
| Out[4]= |  |
|
| Out[5]= |  |
|
The value of Sign[x] at x=0 is 0.
| Out[6]= |  |
|
Its limit, however, is 1. The limit is by default taken from above.
| Out[7]= |  |
|
Not all functions have definite limits at particular points. For example, the function
sin (1/x) oscillates infinitely often near
x=0, so it has no definite limit there. Nevertheless, at least so long as
x remains real, the values of the function near
x=0 always lie between
-1 and 1.
Limit represents values with bounded variation using
Interval objects. In general,
Interval[{xmin, xmax}] represents an uncertain value which lies somewhere in the interval
xmin to
xmax.
Limit returns an Interval object, representing the range of possible values of sin (1/x) near its essential singularity at x=0.
| Out[8]= |  |
|
Mathematica can do arithmetic with Interval objects.
| Out[9]= |  |
|
Mathematica represents this limit symbolically in terms of an Interval object.
| Out[10]= |  |
|
Some functions may have different limits at particular points, depending on the direction from which you approach those points. You can use the
Direction option for
Limit to specify the direction you want.
| Limit[expr,x->x0,Direction->1] |
| find the limit as x approaches x0 from below |
| Limit[expr,x->x0,Direction->-1] |
| find the limit as x approaches x0 from above |
Directional limits.
The function 1/x has a different limiting value at x=0, depending on whether you approach from above or below.
| Out[11]= |  |
|
Approaching from below gives a limiting value of - .
| Out[12]= |  |
|
Approaching from above gives a limiting value of  .
| Out[13]= |  |
|
Limit makes no assumptions about functions like
f[x] about which it does not have definite knowledge. As a result,
Limit remains unevaluated in most cases involving symbolic functions.
Limit has no definite knowledge about f, so it leaves this limit unevaluated.
| Out[14]= |  |
|