The Epsilon-Delta Definition of a Limit

Given a function , we say that the limit of as approaches is , written as

if for every there exists a such that for all ,

One-Sided Limits

The one-sided limit of a function is evaluated by approaching a point exclusively from one side.

Left-sided limit:

Right-sided limit:

Example:

For the left-sided limit at , :

Approaching -2 from the left, is defined as . Substituting -2 for , the left-sided limit at is evaluated as .

For the right-sided limit at , :

Although exactly at -2, for values of just to the right of -2, is defined as . Substituting -2 into , we find the right-sided limit at -2 to be 4.

An Analytical Approach

We may find the one-sided limits analytically by using a table of values.

Consider the piecewise function from the previous section:

-2.1-7.1
-2.01-7.01
-2.001-7.001
-2.0001-7.0001
-2-7
-1.99993.9996…
-1.9993.996001
-1.993.9601
-1.93.61

This table illustrates that as approaches -2 from the left, approaches -7. As approaches -2 from the right (), approaches 4.

Note that this does not work for all functions. For example, oscillates in the neighbourhood of zero, so we do not find it to approach a limit from either side.

Note: Using a table of values does not work for every function to determine the limit. For instance, oscillates infinitely near zero, making it impossible to determine a limit from either side.

The Overall Limit

For a function to have an β€œoverall” limit at some , the left- and right-sided limits must be equal at .

If the two limits are not equal, the limit at does not exist, which is represented as .

Note that a function does not need to take the value of the limit when it is evaluated at the same point.

For example,

However,

Properties of Limits

Sum
Difference
Product
Constant Multiple
Quotient
Power
Constant

One-Sided

Average vs. Instantaneous

Rates of Change

dy and dx

Limits Using CAS

The limit of an expression can be computed in KhiCas by calling the limit() function, which accepts the following parameters:

  • Expr: the mathematical expression to be evaluated
  • Var: the variable within Expr to compute the limit of
  • Val: the point to which Var approaches
    • Val = -oo: the limit at
    • Val = oo: the limit at
  • [Dir(d)] (optional): Indicates the direction from which Var approaches Val
    • [Dir(d)] = -1: the left-side limit
    • [Dir(d)] = +1: the right-side limit KhiCas will calculate the two-sided limit if empty

Examples

To compute :

>>> limit((x^2-9)/(x-3), x, 3)
6

To compute :

>>> limit(1/ln(x), x, oo)
0

Notes

  • limit() can be accessed through the calc menu by the following keystrokes:

    • F2 > 4
  • is represented by oo (two lowercase o) in KhiCas. The shortcut for oo can be accessed through the algb menu by the following keystrokes:

    • F1 > 7