Navigation: Wiki Home > Skills > Epsilon-Delta Proofs for Linear Functions
You know what the epsilon-delta definition says—but how do you prove a specific limit using it? Linear functions provide the simplest starting point because the relationship between $\delta$ and $\varepsilon$ is direct and transparent.
The strategy is called "guess and verify":
This two-step dance is the foundation of all epsilon-delta proofs.
| Property | Value |
|---|---|
| Course | MATH161 |
| Chapter.Section | 1.7 |
| Difficulty | Intermediate |
| Time | ~15 minutes |
Goal: Prove $\lim_{x \to a} f(x) = L$ using epsilon-delta.
Step 1 (The Guess): Start with $\vert f(x) - L\vert < \varepsilon$ and solve for $\vert x - a\vert $.
For linear $f(x) = mx + b$: $$\vert f(x) - L\vert = \vert (mx + b) - L\vert = \vert m\vert \vert x - a\vert $$
(where $L = ma + b$)
We need $\vert m\vert \vert x - a\vert < \varepsilon$, so $\vert x - a\vert < \frac{\varepsilon}{\vert m\vert }$.
Guess: $\delta = \frac{\varepsilon}{\vert m\vert }$
Step 2 (The Verification): Write the formal proof showing this $\delta$ works.
Claim: $\lim_{x \to a} (mx + b) = ma + b$ for $m \neq 0$.
Proof:
Let $\varepsilon > 0$ be given. Choose $\delta = \frac{\varepsilon}{\vert m\vert }$.
Suppose $0 < \vert x - a\vert < \delta$. Then:
$$\begin{aligned} \vert (mx + b) - (ma + b)\vert &= \vert mx - ma\vert \\ &= \vert m(x - a)\vert \\ &= \vert m\vert \cdot \vert x - a\vert \\ &< \vert m\vert \cdot \delta \\ &= \vert m\vert \cdot \frac{\varepsilon}{\vert m\vert } \\ &= \varepsilon \end{aligned}$$
Therefore $\lim_{x \to a} (mx + b) = ma + b$. $\square$
The Guess (scratch work):
We need $\vert (4x - 5) - 7\vert < \varepsilon$. $$\vert (4x - 5) - 7\vert = \vert 4x - 12\vert = 4\vert x - 3\vert $$
So we need $4\vert x - 3\vert < \varepsilon$, i.e., $\vert x - 3\vert < \frac{\varepsilon}{4}$.
Guess: $\delta = \frac{\varepsilon}{4}$
The Verification (formal proof):
Proof: Let $\varepsilon > 0$ be given. Choose $\delta = \frac{\varepsilon}{4}$.
Suppose $0 < \vert x - 3\vert < \delta$. Then:
$$\vert (4x - 5) - 7\vert = \vert 4x - 12\vert = 4\vert x - 3\vert < 4 \cdot \frac{\varepsilon}{4} = \varepsilon$$
Therefore $\lim_{x \to 3} (4x - 5) = 7$. $\square$
For $f(x) = c$ (constant), we have $\vert f(x) - c\vert = 0 < \varepsilon$ for any $x$.
So any $\delta > 0$ works. We can simply choose $\delta = 1$ (or any positive number).
For $f(x) = x$ with $\lim_{x \to a} x = a$: $$\vert f(x) - a\vert = \vert x - a\vert < \varepsilon$$
Choose $\delta = \varepsilon$. The "slope" is 1, so $\delta = \varepsilon/1 = \varepsilon$.
For the limit $\lim_{x \to 2} (3x + 1) = 7$, find a $\delta$ that works when $\varepsilon = 0.06$.
Prove that $\lim_{x \to 5} (2x + 3) = 13$ using the epsilon-delta definition.
Prove that $\lim_{x \to -1} (7 - 3x) = 10$ using the epsilon-delta definition.
Let $f(x) = mx + b$ where $m \neq 0$. Prove that $\lim_{x \to a} f(x) = ma + b$ for any $a \in \mathbb{R}$.
(This is the general template for all linear functions.)
Consider $f(x) = \frac{x^2 - 4}{x - 2}$ for $x \neq 2$.
| Mistake | Why It's Wrong | Correct Approach |
|---|---|---|
| Forgetting absolute value on $m$ | $\delta$ must be positive | Use $\|m\|$ in denominator |
| Writing $\delta = \varepsilon/m$ when $m < 0$ | This gives negative $\delta$ | Use $\delta = \varepsilon/\|m\|$ |
| Proving in the wrong direction | Starting with conclusion | Start with "Let $\varepsilon > 0$..." |
| Not showing $\delta > 0$ | $\delta$ must be positive by definition | Since $\varepsilon > 0$ and $\|m\| > 0$, $\delta = \varepsilon/\|m\| > 0$ |
The Scaling Factor:
For a linear function $f(x) = mx + b$:
Looking back:
Looking ahead:
| Previous | Up | Next |
|---|---|---|
| Epsilon-Delta Definition | Skills Index | Epsilon-Delta Proofs: Polynomials |
Last updated: 2026-01-22