Wolfram Language Fast Introduction for Math Students
Get Started »

Limits

Calculate the limiting value of an expression:

(Type -> for the symbol.)
In[1]:=
Click for copyable input
Limit[(x^3 - 1)/(x - 1), x -> 1]
Out[1]=

Find the limit at Infinity:

(Type ESCinfESC for the symbol.)
In[2]:=
Click for copyable input
Limit[(2 x^3 - 1)/(5 x^3 + x - 1), x -> \[Infinity]]
Out[2]=

You can also specify the limit’s Direction.

A setting of 1 approaches the limit from the left:

In[1]:=
Click for copyable input
Limit[1/x, x -> 0, Direction -> 1]
Out[1]=

A setting of 1 approaches the limit from the right:

In[2]:=
Click for copyable input
Limit[1/x, x -> 0, Direction -> -1]
Out[2]=

Use HoldForm to leave the expression unevaluated:

(TraditionalForm uses classic mathematical typesetting.)
In[1]:=
Click for copyable input
TraditionalForm[HoldForm[Limit[1/x, x -> Infinity]]]
Out[1]=

QUICK REFERENCE: Calculus »