No history yet

Epsilon-Delta Definition

From Intuition to Proof

We've talked about limits as a value a function approaches. This is a great starting point, but it's not precise enough for mathematics. The word "approaches" is intuitive, but it lacks rigor. To build the rest of calculus, we need a definition that is solid, unambiguous, and provable. This is where the epsilon-delta definition comes in.

The formal definition of a limit turns an intuitive idea into a measurable guarantee.

Imagine a challenge: I claim the limit of a function f(x)f(x) as xx approaches aa is LL. You are skeptical. To prove me right, you challenge me by picking a small positive number, epsilon (ε\varepsilon), which defines an "error tolerance" or a narrow horizontal band around the limit LL. Your challenge is: can I guarantee that the function's value, f(x)f(x), will be inside your band (Lε,L+ε)(L - \varepsilon, L + \varepsilon)?

My answer is yes, provided I can find another small positive number, delta (δ\delta), that defines a vertical band around aa. If I can find a δ\delta such that for any xx value within that narrow vertical band (aδ,a+δ)(a - \delta, a + \delta), the corresponding f(x)f(x) value is guaranteed to land inside your ε\varepsilon band, then my claim about the limit is true.

Lesson image

This is the core of the formal definition of a limit, first solidified by mathematicians like Augustin-Louis Cauchy and Karl Weierstrass. It's a game of challenge and response. For any given error tolerance ε\varepsilon, we must be able to find a corresponding range δ\delta that satisfies the condition.

limxaf(x)=L\lim_{x \to a} f(x) = L

...if for every number ε>0\varepsilon > 0, there exists a number δ>0\delta > 0 such that:

if 0<xa<δ, then f(x)L<ε\text{if } 0 < |x - a| < \delta \text{, then } |f(x) - L| < \varepsilon

Proving a Linear Limit

Let's use this definition to prove something we already know intuitively. We'll prove that the limit of f(x)=2x1f(x) = 2x - 1 as xx approaches 4 is 7.

Our goal: limx4(2x1)=7\lim_{x \to 4} (2x - 1) = 7.

Here, f(x)=2x1f(x) = 2x - 1, a=4a = 4, and L=7L = 7. Our task is to find a relationship between δ\delta and ε\varepsilon. We start with the conclusion of the definition, f(x)L<ε|f(x) - L| < \varepsilon, and work backward to find a suitable δ\delta.

  1. Start with the ε\varepsilon inequality: We want (2x1)7<ε|(2x - 1) - 7| < \varepsilon.
  1. Simplify the expression: This becomes 2x8<ε|2x - 8| < \varepsilon. We can factor out a 2, giving us 2x4<ε2|x - 4| < \varepsilon.
  1. Isolate the xa|x - a| term: Divide by 2 to get x4<ε/2|x - 4| < \varepsilon/2.

This is exactly what we were looking for! We have found a direct relationship. We can see that if we choose our δ\delta to be equal to ε/2\varepsilon/2, our condition will be met. So, the proof is simple: given any ε>0\varepsilon > 0, we choose δ=ε/2\delta = \varepsilon/2. Then, if 0<x4<δ0 < |x - 4| < \delta, it follows that x4<ε/2|x - 4| < \varepsilon/2, which means 2x4<ε2|x-4| < \varepsilon, and therefore (2x1)7<ε|(2x-1) - 7| < \varepsilon. The proof is complete.

Handling Quadratic Functions

Proving limits for non-linear functions like quadratics is a bit trickier. The relationship between δ\delta and ε\varepsilon isn't a fixed constant. Let's try to prove that limx3x2=9\lim_{x \to 3} x^2 = 9.

Here, f(x)=x2f(x) = x^2, a=3a = 3, and L=9L = 9. We start again with the ε\varepsilon inequality:

x29<ε|x^2 - 9| < \varepsilon

Factoring the difference of squares gives us:

x3x+3<ε|x - 3||x + 3| < \varepsilon

The x3|x-3| part looks like our target xa|x-a|, but what do we do with the x+3|x+3| term? It contains xx, so it's not a constant. We can't simply divide ε\varepsilon by it. The trick is to find an upper bound for this extra term.

Since we only care about values of xx that are close to a=3a=3, we can make an initial assumption about δ\delta. Let's assume δ\delta will be no larger than 1. This is a common and safe choice. If we need an even smaller δ\delta later, this assumption still holds.

If we set δ1\delta \le 1, then x3<1|x - 3| < 1, which means 2<x<42 < x < 4. For this range of xx, what is the maximum value of the troublesome x+3|x+3| term? When xx is 4, x+3|x+3| is 7. So, within this neighborhood of x=3x=3, we know x+3<7|x+3| < 7. Now we have a bound.

We can now substitute this bound back into our inequality:

x3x+3<x37<ε|x - 3||x + 3| < |x - 3| \cdot 7 < \varepsilon

Now, we can isolate x3|x-3|:

x3<ε/7|x - 3| < \varepsilon/7

We have two conditions for δ\delta: we assumed δ1\delta \le 1, and we just found that we also need δε/7\delta \le \varepsilon/7. To satisfy both at the same time, we must choose the smaller of the two values. This gives us our final choice for in terms of epsilon.

δ=min(1,ε/7)\delta = \min(1, \varepsilon/7)

By finding a concrete way to choose δ\delta for any given ε\varepsilon, we have formally proven that the limit is indeed 9. This method transforms the vague notion of 'approaching' into a precise, verifiable procedure.

Quiz Questions 1/6

What is the primary purpose of the epsilon-delta definition of a limit?

Quiz Questions 2/6

In the epsilon-delta 'game' to prove limxaf(x)=L\lim_{x \to a} f(x) = L, if a challenger provides a specific ε>0\varepsilon > 0, what must be demonstrated to win the challenge?

This rigorous definition is the bedrock upon which the major theorems of calculus are built.