← MathScape

Epsilon-Delta Proofs for Polynomial Functions

MATH161
Reference: Stewart 2.4  •  Chapter: 1  •  Section: 4

Navigation: Wiki Home > Skills > Epsilon-Delta Proofs for Polynomial Functions

Epsilon-Delta Proofs for Polynomial Functions

The New Challenge

For linear functions, $\vert f(x) - L\vert $ was simply a constant times $\vert x - a\vert $. Quadratics are trickier: when you factor $x^2 - a^2 = (x-a)(x+a)$, you get two factors that both change as $x$ moves.

The $(x - a)$ factor is small when $x$ is near $a$—that's good. But what about $(x + a)$? If we don't control it, we can't bound the product.

The solution: first restrict $\vert x - a\vert $ to keep $(x + a)$ bounded, then choose $\delta$ to make the whole expression small. This leads to the famous $\delta = \min\{1, \varepsilon/K\}$ pattern.

Prerequisite Map

Prerequisites
Epsilon-Delta Proofs: Linear FunctionsFactoring Polynomials
This skill
Epsilon-Delta Proofs: Polynomials
Unlocks
Limit Law ProofsContinuity Proofs

Quick Reference

Property Value
Course MATH161
Chapter.Section 1.7
Difficulty Advanced
Time ~20 minutes

Key Concepts

The Min Technique: Overview

The problem: For $\lim_{x \to a} x^2 = a^2$, we have: $$\vert x^2 - a^2\vert = \vert x - a\vert \cdot \vert x + a\vert $$

The factor $\vert x - a\vert $ is what we control. But $\vert x + a\vert $ could be arbitrarily large if we don't restrict $x$.

The solution: A two-phase approach:

  1. Phase 1: Assume $\vert x - a\vert < 1$ (an initial restriction). This bounds $\vert x + a\vert $.
  2. Phase 2: With $\vert x + a\vert $ bounded by some constant $K$, choose $\delta$ so that $K\vert x - a\vert < \varepsilon$.

Final choice: $\delta = \min\{1, \varepsilon/K\}$ ensures both conditions are satisfied.

Why We Need the Minimum

The choice $\delta = \min\{1, \varepsilon/K\}$ ensures:

  1. $\delta \leq 1$: So our bound on $\vert x + a\vert $ remains valid
  2. $\delta \leq \varepsilon/K$: So $\vert x^2 - a^2\vert < K \cdot \delta \leq \varepsilon$

If we only used $\delta = \varepsilon/K$, that could be larger than 1 when $\varepsilon$ is large, invalidating our bound. Taking the minimum covers all cases.

Worked Example: $\lim_{x \to 3} x^2 = 9$

Goal: Prove that for every $\varepsilon > 0$, there exists $\delta > 0$ such that $0 < \vert x - 3\vert < \delta$ implies $\vert x^2 - 9\vert < \varepsilon$.

Phase 1: Bound the wandering factor

Factor: $\vert x^2 - 9\vert = \vert x - 3\vert \cdot \vert x + 3\vert $

Assume $\vert x - 3\vert < 1$. Then:

Phase 2: Make the product small

With $\vert x + 3\vert < 7$: $$\vert x^2 - 9\vert = \vert x - 3\vert \cdot \vert x + 3\vert < 7\vert x - 3\vert $$

We need $7\vert x - 3\vert < \varepsilon$, so $\vert x - 3\vert < \varepsilon/7$.

Final choice: $\delta = \min\{1, \varepsilon/7\}$

The formal proof:

Proof: Let $\varepsilon > 0$ be given. Choose $\delta = \min\{1, \varepsilon/7\}$.

Suppose $0 < \vert x - 3\vert < \delta$.

Since $\delta \leq 1$, we have $\vert x - 3\vert < 1$, which gives $2 < x < 4$, so $\vert x + 3\vert < 7$.

Then: $$\vert x^2 - 9\vert = \vert x - 3\vert \cdot \vert x + 3\vert < \vert x - 3\vert \cdot 7 < \delta \cdot 7 \leq \frac{\varepsilon}{7} \cdot 7 = \varepsilon$$

Therefore $\lim_{x \to 3} x^2 = 9$. $\square$

General Pattern for $\lim_{x \to a} x^2 = a^2$

Assume $\vert x - a\vert < 1$:

Actually, a cleaner bound: if $\vert x - a\vert < 1$, then $\vert x\vert < \vert a\vert + 1$, so: $$\vert x + a\vert \leq \vert x\vert + \vert a\vert < (\vert a\vert + 1) + \vert a\vert = 2\vert a\vert + 1$$

Choose $\delta = \min\{1, \varepsilon/(2\vert a\vert + 1)\}$.

Extension: Cubic and Higher Polynomials

For $\lim_{x \to a} x^3 = a^3$, we have: $$\vert x^3 - a^3\vert = \vert x - a\vert \cdot \vert x^2 + xa + a^2\vert $$

The same technique applies:

  1. Assume $\vert x - a\vert < 1$ to bound $\vert x^2 + xa + a^2\vert $ by some constant $K$
  2. Choose $\delta = \min\{1, \varepsilon/K\}$

Practice Problems

Level 1 Bounding the Second Factor

For $\lim_{x \to 2} x^2 = 4$, we have $\vert x^2 - 4\vert = \vert x - 2\vert \vert x + 2\vert $.

If we assume $\vert x - 2\vert < 1$, what is the largest possible value of $\vert x + 2\vert $?

Thought Process

From $\vert x - 2\vert < 1$:

  • $-1 < x - 2 < 1$
  • $1 < x < 3$
  • Add 2: $3 < x + 2 < 5$

The largest value of $\vert x + 2\vert $ occurs at the boundary.

Show Answer

If $\vert x - 2\vert < 1$, then $1 < x < 3$, so $3 < x + 2 < 5$.

The largest possible value of $\vert x + 2\vert $ is 5 (approached as $x \to 3$).

So we have the bound $\vert x + 2\vert < 5$.

Level 2 Finding Delta with Min

For $\lim_{x \to 2} x^2 = 4$, using the bound $\vert x + 2\vert < 5$ (when $\vert x - 2\vert < 1$):

  1. What value of $\delta$ ensures $\vert x^2 - 4\vert < 0.1$?
  2. What value of $\delta$ ensures $\vert x^2 - 4\vert < 10$?
Thought Process

We have $\vert x^2 - 4\vert < 5\vert x - 2\vert $ when $\vert x - 2\vert < 1$.

For (a): Need $5\vert x - 2\vert < 0.1$, so $\vert x - 2\vert < 0.02$. Is $0.02 < 1$? Yes.

For (b): Need $5\vert x - 2\vert < 10$, so $\vert x - 2\vert < 2$. Is $2 < 1$? No! Must take $\delta = 1$.

Show Answer
  1. $\varepsilon = 0.1$: Need $\vert x - 2\vert < \varepsilon/5 = 0.02$.

    $\delta = \min\{1, 0.02\} = 0.02$</li>

  2. $\varepsilon = 10$: Need $\vert x - 2\vert < \varepsilon/5 = 2$.

    But we need $\vert x - 2\vert < 1$ for our bound to hold!

    $\delta = \min\{1, 2\} = 1$</li>

Level 3 Complete Proof: Quadratic

Prove that $\lim_{x \to 4} x^2 = 16$ using the epsilon-delta definition.

Thought Process

Scratch work:

  1. Factor: $\vert x^2 - 16\vert = \vert x - 4\vert \vert x + 4\vert $
  1. Assume $\vert x - 4\vert < 1$:
  1. Then $\vert x^2 - 16\vert < 9\vert x - 4\vert $
  1. Need $9\vert x - 4\vert < \varepsilon$, so $\vert x - 4\vert < \varepsilon/9$
  1. Choose $\delta = \min\{1, \varepsilon/9\}$
Show Answer

Proof: Let $\varepsilon > 0$ be given. Choose $\delta = \min\{1, \varepsilon/9\}$.

Suppose $0 < \vert x - 4\vert < \delta$.

Since $\delta \leq 1$, we have $\vert x - 4\vert < 1$, so $3 < x < 5$, which gives $\vert x + 4\vert < 9$.

Then: $$\begin{aligned} \vert x^2 - 16\vert &= \vert x - 4\vert \cdot \vert x + 4\vert \\ &< \vert x - 4\vert \cdot 9 \\ &< \delta \cdot 9 \\ &\leq \frac{\varepsilon}{9} \cdot 9 \\ &= \varepsilon \end{aligned}$$

Therefore $\lim_{x \to 4} x^2 = 16$. $\square$

Level 4 Non-Standard Factoring

Prove that $\lim_{x \to 2} (x^2 + x) = 6$ using the epsilon-delta definition.

(Hint: You'll need to factor $x^2 + x - 6$.)

Thought Process

Scratch work:

$\vert f(x) - L\vert = \vert x^2 + x - 6\vert $

Factor: $x^2 + x - 6 = (x - 2)(x + 3)$

So $\vert x^2 + x - 6\vert = \vert x - 2\vert \vert x + 3\vert $

Assume $\vert x - 2\vert < 1$:

  • $1 < x < 3$
  • $4 < x + 3 < 6$
  • So $\vert x + 3\vert < 6$

Then $\vert x^2 + x - 6\vert < 6\vert x - 2\vert $

Choose $\delta = \min\{1, \varepsilon/6\}$

Show Answer

Proof: Let $\varepsilon > 0$ be given. Choose $\delta = \min\{1, \varepsilon/6\}$.

Note that $x^2 + x - 6 = (x - 2)(x + 3)$.

Suppose $0 < \vert x - 2\vert < \delta$.

Since $\delta \leq 1$, we have $\vert x - 2\vert < 1$, so $1 < x < 3$, which gives $\vert x + 3\vert < 6$.

Then: $$\begin{aligned} \vert (x^2 + x) - 6\vert &= \vert x^2 + x - 6\vert \\ &= \vert x - 2\vert \cdot \vert x + 3\vert \\ &< \vert x - 2\vert \cdot 6 \\ &< \delta \cdot 6 \\ &\leq \frac{\varepsilon}{6} \cdot 6 \\ &= \varepsilon \end{aligned}$$

Therefore $\lim_{x \to 2} (x^2 + x) = 6$. $\square$

Level 5 Cubic Limit

Prove that $\lim_{x \to 1} x^3 = 1$ using the epsilon-delta definition.

(Hint: $x^3 - 1 = (x-1)(x^2 + x + 1)$)

Thought Process

Scratch work:

Factor: $\vert x^3 - 1\vert = \vert x - 1\vert \cdot \vert x^2 + x + 1\vert $

Need to bound $\vert x^2 + x + 1\vert $ when $\vert x - 1\vert < 1$.

If $\vert x - 1\vert < 1$, then $0 < x < 2$.

For $0 < x < 2$:

  • $x^2 < 4$
  • $x < 2$
  • So $x^2 + x + 1 < 4 + 2 + 1 = 7$

Also, $x^2 + x + 1 = (x + 1/2)^2 + 3/4 > 0$, so $\vert x^2 + x + 1\vert = x^2 + x + 1 < 7$.

Choose $\delta = \min\{1, \varepsilon/7\}$.

Show Answer

Proof: Let $\varepsilon > 0$ be given. Choose $\delta = \min\{1, \varepsilon/7\}$.

Note that $x^3 - 1 = (x - 1)(x^2 + x + 1)$.

Suppose $0 < \vert x - 1\vert < \delta$.

Since $\delta \leq 1$, we have $\vert x - 1\vert < 1$, so $0 < x < 2$.

For $x$ in this range:

  • $x^2 < 4$
  • $x < 2$
  • $x^2 + x + 1 < 7$

Since $x^2 + x + 1 = (x + \frac{1}{2})^2 + \frac{3}{4} > 0$, we have $\vert x^2 + x + 1\vert = x^2 + x + 1 < 7$.

Then: $$\begin{aligned} \vert x^3 - 1\vert &= \vert x - 1\vert \cdot \vert x^2 + x + 1\vert \\ &< \vert x - 1\vert \cdot 7 \\ &< \delta \cdot 7 \\ &\leq \frac{\varepsilon}{7} \cdot 7 \\ &= \varepsilon \end{aligned}$$

Therefore $\lim_{x \to 1} x^3 = 1$. $\square$

The Min Technique: Summary

Step Action Purpose
1 Factor $\|f(x) - L\|$ Isolate $\|x - a\|$
2 Assume $\|x - a\| < 1$ Create a bounded interval
3 Find bound $K$ for other factors Get $\|f(x) - L\| < K\|x - a\|$
4 Solve $K\|x - a\| < \varepsilon$ Get $\|x - a\| < \varepsilon/K$
5 Choose $\delta = \min\{1, \varepsilon/K\}$ Satisfy both constraints

Common Mistakes

Mistake Why It's Wrong Correct Approach
Only using $\delta = \varepsilon/K$ May violate the $\|x - a\| < 1$ assumption Use $\min\{1, \varepsilon/K\}$
Forgetting to verify $\|x + a\| < K$ The bound needs justification Show the derivation in your proof
Wrong interval for $x$ $\|x - a\| < 1$ means $a - 1 < x < a + 1$ Be careful with the algebra
Taking 1 arbitrarily Any positive initial bound works Could use $\min\{2, ...\}$ instead

Mastery Checklist

Mental Model

The Two-Step Dance:

Think of epsilon-delta proofs for polynomials as a negotiation:

  1. First constraint: "I'll only consider $x$ within 1 of $a$." This keeps the non-linear parts under control.
  1. Second constraint: "Within that region, I need $x$ even closer—within $\varepsilon/K$ of $a$." This makes the product small.
  1. Taking the minimum: You need both constraints satisfied simultaneously. The min ensures neither is violated.

Connections

Looking back:

Looking ahead:


Previous Up Next
Epsilon-Delta Proofs: Linear Skills Index Epsilon-Delta Variations

Last updated: 2026-01-22