Navigation: Wiki Home > Skills > Estimating Limits Numerically and Graphically
Before you learn algebraic techniques for computing limits exactly, you need to develop intuition for what limits "look like." This skill teaches you to estimate limits by:
These skills remain valuable even after you learn algebraic methods—they serve as sanity checks and help you understand functions that don't have closed-form limits.
Warning: Numerical and graphical methods can be deceived by tricky functions. This skill also teaches you what can go wrong.
| Property | Value |
|---|---|
| Concept | Limits |
| Course | MATH161 |
| Section | Stewart 1.5 |
| Difficulty | Beginner |
| Time | ~15 minutes |
To estimate $\lim_{x \to a} f(x)$ numerically:
Step 1: Choose values of $x$ approaching $a$ from both sides:
Step 2: Compute $f(x)$ for each value.
Step 3: Look for a pattern—are the values converging to a single number?
| $x$ | $\frac{x-1}{x^2-1}$ |
|---|---|
| 0.9 | 0.5263... |
| 0.99 | 0.5025... |
| 0.999 | 0.5003... |
| 1.001 | 0.4998... |
| 1.01 | 0.4975... |
| 1.1 | 0.4762... |
The values are clearly converging to $0.5$ from both sides. We estimate: $$\lim_{x \to 1} \frac{x-1}{x^2-1} \approx 0.5$$
(The exact value is $\frac{1}{2}$, which we can verify by factoring: $\frac{x-1}{(x-1)(x+1)} = \frac{1}{x+1} \to \frac{1}{2}$.)
To estimate $\lim_{x \to a} f(x)$ from a graph:
Step 1: Locate $x = a$ on the horizontal axis.
Step 2: Trace along the curve from both sides toward $x = a$.
Step 3: Observe what $y$-value the curve approaches.
Key points:
y
|
2 + ┌─○ ← Open circle: curve approaches y=2
| │
1 +───┘ ● ← Filled dot: f(a) = 1, but that's not the limit!
|
0 +────+────→ x
a
Limit = 2 (where the curve is heading)
f(a) = 1 (where the point actually is)
| Pitfall | Example | How to Avoid |
|---|---|---|
| Calculator rounding | $\frac{\sin x}{x}$ near $x = 10^{-15}$ may show 0 | Don't go too close; values like $0.001$ are fine |
| Oscillating functions | $\sin(\frac{1}{x})$ near $x = 0$ | Make a table; oscillation will be visible |
| Confusing $f(a)$ with limit | Piecewise functions | Check the curve trend, not the isolated point |
| One-sided difference | $\frac{\|x\|}{x}$ near $x = 0$ | Always check BOTH sides |
Some functions oscillate infinitely near a point. For example:
$$f(x) = \sin\left(\frac{1}{x}\right)$$
As $x \to 0$, the argument $\frac{1}{x} \to \pm\infty$, causing sine to oscillate between $-1$ and $1$ infinitely often.
| $x$ | $\sin(1/x)$ |
|---|---|
| 0.1 | $-0.544$ |
| 0.05 | $0.912$ |
| 0.02 | $0.455$ |
| 0.01 | $-0.506$ |
| 0.005 | $-0.959$ |
| 0.002 | $-0.879$ |
The values don't settle down! This indicates $\lim_{x \to 0} \sin\left(\frac{1}{x}\right)$ does not exist.
Your numerical estimate is reliable when:
Your estimate may be unreliable when:
Based on the following table, estimate $\lim_{x \to 0} f(x)$:
| $x$ | $-0.1$ | $-0.01$ | $-0.001$ | $0.001$ | $0.01$ | $0.1$ |
|---|---|---|---|---|---|---|
| $f(x)$ | $2.87$ | $2.9987$ | $2.999987$ | $3.000013$ | $3.0013$ | $3.13$ |
Use a table of values to estimate $\lim_{x \to 0} \frac{e^x - 1}{x}$.
(Use at least 3 values from each side.)
The graph of $g(x)$ is shown below. Find all requested limits.
y
|
4 + /
| /
3 + ●──────○
| /
2 + /
|/
1 +
| ●
0 +----+----+----+----→ x
1 2 3 4
Key features:
Find:
Use a table of values to investigate $\lim_{x \to 0} \sin\left(\frac{\pi}{x}\right)$.
Does the limit exist? Explain your reasoning based on the numerical evidence.
Consider $f(x) = x \cdot \sin\left(\frac{1}{x}\right)$ for $x \neq 0$.
The Detective Approach: Estimating limits is like detective work. You're gathering evidence (table values, graph traces) to determine where the function is "trying to go." But remember: evidence can be misleading. Oscillating functions can fool you, and calculator precision has limits. Always check both sides, and use numerical estimates as a guide to be confirmed by algebraic methods later.
Looking back:
Looking ahead:
Real-world connections:
| Previous | Up | Next |
|---|---|---|
| Infinite Limits | Skills Index | Ch1 §6 |
Last updated: 2026-01-22