Source codeVideos

Command Palette

Search for a command to run...

Limits

Concept of Limit Function

Understanding Limits Intuitively

Imagine you are walking towards your house door. The closer you get to the door, the clearer you can see the details of the door. In mathematics, limits work in a similar way. Limits describe the value that a function approaches when its input variable approaches a certain value.

The concept of limits is very fundamental in calculus because it becomes the foundation for understanding derivatives, integrals, and function continuity. Limits help us understand function behavior around certain points, even when the function is not defined exactly at that point.

Approach Through Value Tables

To understand limits more concretely, let's see how function values change when the variable approaches a certain point. Suppose we have function f(x)=x+2f(x) = x + 2 and want to see what happens when xx approaches 3.

xx2.92.92.992.992.9992.999...3.0013.0013.013.013.13.1
f(x)f(x)4.94.94.994.994.9994.999...5.0015.0015.015.015.15.1

From the table above, we can see that when xx approaches 3 from the left (values x<3x < 3) and from the right (values x>3x > 3), the value of f(x)f(x) approaches 5. This approaching value is called the limit.

Formal Definition of Limits

Mathematically, limits can be defined as follows:

limxcf(x)=L\lim_{x \to c} f(x) = L

This definition is read as "the limit of f(x)f(x) as xx approaches cc equals LL".

The conditions for this limit to exist are:

  • Left limit and right limit must exist
  • Left limit must be equal to the right limit
  • The limit value is LL

More formally, left and right limits can be written as:

limxcf(x)=L(left limit: x approaches c from the left)\lim_{x \to c^-} f(x) = L \quad \text{(left limit: } x \text{ approaches } c \text{ from the left)}
limxc+f(x)=L(right limit: x approaches c from the right)\lim_{x \to c^+} f(x) = L \quad \text{(right limit: } x \text{ approaches } c \text{ from the right)}

If both limits are equal, then limxcf(x)=L\lim_{x \to c} f(x) = L. If they are different, then the limit does not exist.

Application of Limits

Simple Example

Find limx4(2x1)\lim_{x \to 4} (2x - 1).

Solution:

Since the function f(x)=2x1f(x) = 2x - 1 is continuous at x=4x = 4, we can directly substitute:

limx4(2x1)=2(4)1=81=7\lim_{x \to 4} (2x - 1) = 2(4) - 1 = 8 - 1 = 7

Example with Indeterminate Form

Find limx2x24x2\lim_{x \to 2} \frac{x^2 - 4}{x - 2}.

Solution:

If we substitute x=2x = 2 directly, we get the indeterminate form 00\frac{0}{0}. We need to simplify first by factoring:

x24=(x+2)(x2)x^2 - 4 = (x + 2)(x - 2)
limx2x24x2=limx2(x+2)(x2)x2\lim_{x \to 2} \frac{x^2 - 4}{x - 2} = \lim_{x \to 2} \frac{(x + 2)(x - 2)}{x - 2}

Since we are calculating the limit when xx approaches 2 (not equals 2), then x2x \neq 2 and we can cancel (x2)(x - 2):

=limx2(x+2)=2+2=4= \lim_{x \to 2} (x + 2) = 2 + 2 = 4

Basic Properties of Limits

Some important properties that facilitate limit calculations:

  1. Linearity Property:

    limxc[af(x)+bg(x)]=alimxcf(x)+blimxcg(x)\lim_{x \to c} [af(x) + bg(x)] = a\lim_{x \to c} f(x) + b\lim_{x \to c} g(x)
  2. Multiplication Property:

    limxc[f(x)g(x)]=limxcf(x)limxcg(x)\lim_{x \to c} [f(x) \cdot g(x)] = \lim_{x \to c} f(x) \cdot \lim_{x \to c} g(x)
  3. Division Property:

    limxcf(x)g(x)=limxcf(x)limxcg(x)\lim_{x \to c} \frac{f(x)}{g(x)} = \frac{\lim_{x \to c} f(x)}{\lim_{x \to c} g(x)} provided limxcg(x)0\lim_{x \to c} g(x) \neq 0

Exercises

  1. Find limx3(x2+2x1)\lim_{x \to 3} (x^2 + 2x - 1)

  2. Find limx1x21x1\lim_{x \to 1} \frac{x^2 - 1}{x - 1}

  3. Find limx0sinxx\lim_{x \to 0} \frac{\sin x}{x} (use trigonometric limit theorem)

  4. If f(x)={x+1,x<23x2,x2f(x) = \begin{cases} x + 1, & x < 2 \\ 3x - 2, & x \geq 2 \end{cases}, find limx2f(x)\lim_{x \to 2} f(x)

Answer Key

  1. Solution:

    Since polynomial functions are continuous at all points, we can substitute directly:

    limx3(x2+2x1)=32+2(3)1=9+61=14\lim_{x \to 3} (x^2 + 2x - 1) = 3^2 + 2(3) - 1 = 9 + 6 - 1 = 14
  2. Solution:

    Direct substitution yields the form 00\frac{0}{0}. We factor first:

    x21=(x+1)(x1)x^2 - 1 = (x + 1)(x - 1)
    limx1x21x1=limx1(x+1)(x1)x1\lim_{x \to 1} \frac{x^2 - 1}{x - 1} = \lim_{x \to 1} \frac{(x + 1)(x - 1)}{x - 1}

    Since xx approaches 1 (not equal to 1), then x1x \neq 1 and we can cancel (x1)(x - 1):

    =limx1(x+1)=1+1=2= \lim_{x \to 1} (x + 1) = 1 + 1 = 2
  3. Solution:

    This is a fundamental trigonometric limit that is very important in calculus. This limit cannot be solved by direct substitution because it would yield the form 00\frac{0}{0}. However, based on the proven trigonometric limit theorem:

    limx0sinxx=1\lim_{x \to 0} \frac{\sin x}{x} = 1

    Note: xx is in radians, not degrees.

  4. Solution:

    For piecewise functions (defined with different rules), we must check left and right limits separately:

    Left limit (when xx approaches 2 from the left, so x<2x < 2):

    limx2f(x)=limx2(x+1)=2+1=3\lim_{x \to 2^-} f(x) = \lim_{x \to 2^-} (x + 1) = 2 + 1 = 3

    Right limit (when xx approaches 2 from the right, so x2x \geq 2):

    limx2+f(x)=limx2+(3x2)=3(2)2=62=4\lim_{x \to 2^+} f(x) = \lim_{x \to 2^+} (3x - 2) = 3(2) - 2 = 6 - 2 = 4

    Since limx2f(x)=34=limx2+f(x)\lim_{x \to 2^-} f(x) = 3 \neq 4 = \lim_{x \to 2^+} f(x), then limx2f(x)\lim_{x \to 2} f(x) does not exist.