Navigation: Wiki Home > Skills > Resolving Indeterminate Forms
You try to compute $\lim_{x \to 2}\frac{x^2 - 4}{x - 2}$ by substituting $x = 2$, and you get $\frac{0}{0}$.
This is not "undefined" in the usual sense. It is an indeterminate form. The limit might exist; we just cannot see it yet. The expression $\frac{0}{0}$ is like a locked door: behind it could be any number, or no number at all. The key is algebra.
| Property | Value |
|---|---|
| Concept | Limits |
| Chapter | 1.6 |
| Difficulty | Intermediate |
| Time | ~25 minutes |
When substitution gives $\frac{0}{0}$, the numerator and denominator share a common factor that's causing both to vanish. Find and cancel that factor.
Step 1: Try direct substitution
│
▼
Get 0/0?
/ \
No Yes
│ │
▼ ▼
Done! Step 2: Simplify
(factor/rationalize)
│
▼
Step 3: Try substitution
on simplified expression
If $x = a$ makes both numerator and denominator zero, then $(x - a)$ is a factor of both.
Evaluate $\lim_{x \to 3}\frac{x^2 - 9}{x - 3}$.
Step 1: Substitution gives $\frac{9-9}{3-3} = \frac{0}{0}$. ✗
Step 2: Factor the numerator: $$\frac{x^2 - 9}{x - 3} = \frac{(x-3)(x+3)}{x-3}$$
Step 3: Cancel (valid for $x \neq 3$): $$= x + 3$$
Step 4: Now substitute: $$\lim_{x \to 3}(x + 3) = 6$$
| Pattern | Factored Form |
|---|---|
| $x^2 - a^2$ | $(x-a)(x+a)$ |
| $x^2 + bx + c$ | $(x - r_1)(x - r_2)$ where $r_1 + r_2 = -b$, $r_1 r_2 = c$ |
| $x^3 - a^3$ | $(x-a)(x^2 + ax + a^2)$ |
| $x^3 + a^3$ | $(x+a)(x^2 - ax + a^2)$ |
Multiplying by the conjugate eliminates the radical, often revealing a cancelable factor.
| Expression | Conjugate |
|---|---|
| $\sqrt{x} - a$ | $\sqrt{x} + a$ |
| $\sqrt{x} + a$ | $\sqrt{x} - a$ |
| $\sqrt{x} - \sqrt{y}$ | $\sqrt{x} + \sqrt{y}$ |
Evaluate $\lim_{x \to 4}\frac{\sqrt{x} - 2}{x - 4}$.
Step 1: Substitution gives $\frac{2-2}{4-4} = \frac{0}{0}$. ✗
Step 2: Multiply by conjugate (top and bottom): $$\frac{\sqrt{x} - 2}{x - 4} \cdot \frac{\sqrt{x} + 2}{\sqrt{x} + 2} = \frac{x - 4}{(x-4)(\sqrt{x}+2)}$$
Step 3: Cancel $(x - 4)$: $$= \frac{1}{\sqrt{x} + 2}$$
Step 4: Substitute: $$\lim_{x \to 4}\frac{1}{\sqrt{x} + 2} = \frac{1}{2 + 2} = \frac{1}{4}$$
Evaluate $\lim_{h \to 0}\frac{(2+h)^2 - 4}{h}$.
Step 1: Substitution gives $\frac{4-4}{0} = \frac{0}{0}$. ✗
Step 2: Expand $(2+h)^2 = 4 + 4h + h^2$: $$\frac{4 + 4h + h^2 - 4}{h} = \frac{4h + h^2}{h}$$
Step 3: Factor and cancel: $$= \frac{h(4 + h)}{h} = 4 + h$$
Step 4: Substitute: $$\lim_{h \to 0}(4 + h) = 4$$
Evaluate $\lim_{x \to 5}\frac{x^2 - 25}{x - 5}$.
Evaluate $\lim_{x \to -2}\frac{x^2 + 5x + 6}{x + 2}$.
Evaluate $\lim_{x \to 9}\frac{\sqrt{x} - 3}{x - 9}$.
Evaluate $\lim_{h \to 0}\frac{(3+h)^3 - 27}{h}$.
Evaluate $\lim_{x \to 0}\frac{\sqrt{1+x} - \sqrt{1-x}}{x}$.
When evaluating $\lim_{x \to 2}\frac{x^2 - 4}{x - 2}$, we cancel $(x-2)$ from numerator and denominator to get $\lim_{x \to 2}(x+2) = 4$.
But wait: is $\frac{x^2-4}{x-2}$ not undefined at $x = 2$, while $x+2$ is defined there? How can they have the same limit?
The $\frac{0}{0}$ form is a disguise:
The numerator and denominator both going to zero means they share a common factor, like two fractions that can be reduced. The expression $\frac{6}{9}$ looks different from $\frac{2}{3}$, but they're the same number. Similarly, $\frac{x^2-4}{x-2}$ looks different from $x+2$, but near $x = 2$, they behave identically.
Your job is to simplify the fraction to reveal the limit hiding underneath.
Looking back:
Looking ahead:
Why this matters:
| Previous | Up | Next |
|---|---|---|
| Basic Limit Laws | Skills Index | Squeeze Theorem |
Last updated: 2026-01-22