No history yet

Introduction to Limits

Approaching a Value

Calculus is the study of change, and at its heart is a simple idea: getting incredibly close to something to understand its behavior. This idea is called a limit.

A limit tells us what value a function gets closer and closer to as its input approaches a specific number. The key here is approaching. We don't care what happens exactly at the number, only what happens in its immediate neighborhood.

Think of a limit as a destination. We're interested in the place you're headed, not whether you actually arrive.

Consider the function f(x)=x24x2f(x) = \frac{x^2 - 4}{x - 2}. If you try to plug in x=2x=2, you get 00\frac{0}{0}, which is undefined. The function has a hole at that exact spot.

But what happens as xx gets close to 2? If you plug in 1.9, you get 3.9. If you plug in 2.1, you get 4.1. The closer you get to 2, the closer the function's value gets to 4. We say the limit of f(x)f(x) as xx approaches 2 is 4. In mathematical notation, we write this as:

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

This reads: "The limit as xx approaches 2 of f(x)f(x) equals 4."

How to Find Limits

Sometimes, finding a limit is easy. For many functions, you can simply substitute the value into the function.

For example, to find the limit of f(x)=x2+3f(x) = x^2 + 3 as xx approaches 5:

limx5(x2+3)=52+3=28\lim_{x \to 5} (x^2 + 3) = 5^2 + 3 = 28

This is called direct substitution, and it works for any polynomial and many other simple functions. But as we saw earlier, it doesn't always work. When direct substitution gives you an undefined form like 00\frac{0}{0}, you need other techniques.

One common method is factoring. We can simplify the function we looked at before:

f(x)=x24x2=(x2)(x+2)x2f(x) = \frac{x^2 - 4}{x - 2} = \frac{(x - 2)(x + 2)}{x - 2}

As long as xx is not equal to 2, we can cancel the (x2)(x-2) terms, leaving us with f(x)=x+2f(x) = x + 2. Since limits are about approaching a value, not being exactly at it, we can use this simplified function to find the limit:

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

This confirms our earlier result.

One-Sided Limits

Sometimes a function behaves differently depending on which direction you approach a point from. This is where one-sided limits come in.

  • A left-hand limit approaches a value from the negative side (numbers smaller than the target).
  • A right-hand limit approaches from the positive side (numbers larger than the target).

We use a superscript minus for the left and a plus for the right.

limxcf(x)andlimxc+f(x)\lim_{x \to c^{-}} f(x) \quad \text{and} \quad \lim_{x \to c^{+}} f(x)

For a regular limit to exist, the left-hand limit and the right-hand limit must both exist and be equal. If they aren't the same, the overall limit does not exist.

If a function approaches different values from the left and the right, it has no single destination, so the limit does not exist at that point.

Infinity and Continuity

We can also ask what happens to a function as its input grows infinitely large, either positive or negative. This is called a limit at infinity.

Consider the function f(x)=1xf(x) = \frac{1}{x}. As xx gets very large, like 1,000 or 1,000,000, the value of f(x)f(x) gets closer and closer to 0. The same thing happens as xx becomes a very large negative number.

limx1x=0andlimx1x=0\lim_{x \to \infty} \frac{1}{x} = 0 \quad \text{and} \quad \lim_{x \to -\infty} \frac{1}{x} = 0

Limits also help us define a very important property of functions: continuity. A function is continuous at a point if you can draw it without lifting your pen from the paper. Formally, a function f(x)f(x) is continuous at a point cc if three conditions are met:

  1. f(c)f(c) is defined (the point exists).
  2. limxcf(x)\lim_{x \to c} f(x) exists (the function approaches a single value).
  3. limxcf(x)=f(c)\lim_{x \to c} f(x) = f(c) (the limit equals the actual value).

If any of these fail, the function has a discontinuity. The function we examined earlier, f(x)=x24x2f(x) = \frac{x^2-4}{x-2}, has a removable discontinuity (a hole) at x=2x=2 because the first condition fails. Other types include jump discontinuities, where the left and right limits are different, and infinite discontinuities, where the function goes to infinity.

Understanding these ideas sets the stage for the rest of calculus.