No history yet

Understanding Limits

Approaching a Point

Calculus is the study of change, and the most fundamental idea that powers this study is the concept of a limit. A limit is about getting incredibly close to a point without actually touching it. It's the value a function approaches as its input gets closer and closer to a certain number.

Think about walking towards a wall. You can take steps that are half the remaining distance. First you cover half the distance. Then you cover half of what's left. Then half of that remainder, and so on. You'll get infinitely close to the wall, but you'll never technically touch it. A limit describes where you are heading: the wall.

A limit is the value a function gets closer and closer to as the input approaches a specific point.

Mathematically, we write the limit of a function f(x)f(x) as xx approaches a number cc like this:

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

This equation says, "The limit of f(x)f(x) as xx approaches cc is LL." Notice that we don't care what the function's value is at x=cx=c. The function might not even be defined at that point. All that matters is the journey, not the destination.

How to Find Limits

Finding limits can be straightforward. For many simple functions, you can find the limit by just plugging the value cc into the function. This is called direct substitution.

Example: Find limx2(x2+3)\lim_{x \to 2} (x^2 + 3).

Here, we can just substitute x=2x=2 into the expression: (2)2+3=4+3=7(2)^2 + 3 = 4 + 3 = 7. The limit is 7.

But what happens if direct substitution gives you an undefined expression, like dividing by zero? This is where things get interesting. A common case is getting the indeterminate form 00\frac{0}{0}. This doesn't mean the limit is 0, 1, or undefined. It's a signal that we need to do more work, usually by simplifying the expression.

One common technique is factoring and canceling.

limx3x29x3\lim_{x \to 3} \frac{x^2 - 9}{x - 3}

If we plug in x=3x=3, we get 32933=00\frac{3^2 - 9}{3 - 3} = \frac{0}{0}. No good. But we can factor the numerator: x29=(x3)(x+3)x^2 - 9 = (x-3)(x+3).

Now our limit becomes:

limx3(x3)(x+3)x3\lim_{x \to 3} \frac{(x - 3)(x + 3)}{x - 3}

Since the limit only cares about values near 3, but not at 3, we know that x3x-3 is not zero. So, we can safely cancel the (x3)(x-3) terms.

limx3(x+3)\lim_{x \to 3} (x + 3)

Now we can use direct substitution: 3+3=63 + 3 = 6. So, the limit is 6. Even though the original function is undefined at x=3x=3, it approaches a value of 6 as xx gets closer and closer to 3.

Different Paths

Sometimes, the value a function approaches depends on the direction of approach. We can look at the limit as xx approaches cc from the left side (values less than cc) or from the right side (values greater than cc). These are called one-sided limits.

NotationMeaning
limxcf(x)\lim_{x \to c^-} f(x)The limit as xx approaches cc from the left.
limxc+f(x)\lim_{x \to c^+} f(x)The limit as xx approaches cc from the right.

For a regular limit (called a two-sided limit) to exist, the left-hand limit and the right-hand limit must be equal. If they are different, the overall limit does not exist.

_limxcf(x)\_lim_{x \to c} f(x) exists if and only if limxcf(x)=limxc+f(x)\lim_{x \to c^-} f(x) = \lim_{x \to c^+} f(x).

What if the function's value shoots up or down forever as we approach a point? This is an infinite limit. The function is heading towards positive or negative infinity. This often happens at vertical asymptotes.

We can also ask what happens to a function as xx gets extremely large, either positive or negative. These are limits at infinity. They tell us about the long-term behavior of a function and help us find horizontal asymptotes.

For the function f(x)=1xf(x) = \frac{1}{x}, as xx becomes a huge positive number, 1x\frac{1}{x} gets very close to 0. So, limx1x=0\lim_{x \to \infty} \frac{1}{x} = 0.

Limits and Continuity

The concept of a limit leads directly to the idea of continuity. Informally, a function is continuous if you can draw its graph without lifting your pen from the paper. There are no holes, jumps, or breaks.

More formally, continuity is defined using limits. A function ff is continuous at a point x=cx=c if three conditions are met:

ConditionIn Plain English
1. f(c)f(c) is defined.The point must exist.
2. limxcf(x)\lim_{x \to c} f(x) exists.The function must be approaching a single value.
3. limxcf(x)=f(c)\lim_{x \to c} f(x) = f(c).The value the function approaches must be the same as the function's actual value at that point.

If any of these conditions fail, the function has a discontinuity at x=cx=c. Look back at our factoring example, f(x)=x29x3f(x) = \frac{x^2 - 9}{x - 3}. It has a discontinuity at x=3x=3 because the first condition fails: f(3)f(3) is not defined. This is called a removable discontinuity, or a "hole," because the limit exists.

Lesson image

Another type is a jump discontinuity, where the left- and right-hand limits exist but are not equal. The function 'jumps' from one value to another. Finally, an infinite discontinuity occurs where the function has a vertical asymptote.

Understanding these ideas is the first major step into the world of calculus. Limits form the bedrock upon which derivatives and integrals are built.

Time to test your knowledge on these foundational concepts.