The Numerical Approximation
How to estimate the value of a limit by constructing a table of values — approaching from both sides without ever landing on the point itself.
The Idea & Step-by-Step Method
When we want to evaluate $\lim_{x \to a} f(x)$, we are asking: "What value does $f(x)$ approach as $x$ gets arbitrarily close to $a$?"
The numerical approach answers this by plugging in values of $x$ that are incredibly close to $a$ — from both the left and the right — and observing the pattern of the outputs.
-
1
Choose values approaching from the left
Pick 3–4 values slightly less than $a$ (e.g. if $a=3$: $2.9,\;2.99,\;2.999$).
-
2
Choose values approaching from the right
Pick 3–4 values slightly greater than $a$ (e.g. $3.001,\;3.01,\;3.1$).
-
3
Evaluate $f(x)$ at each value
Plug each $x$ into $f(x)$ and record the results in a table.
-
4
Identify the trend
If both sides converge to the same number $L$, then $\lim_{x \to a} f(x) = L$.
Example 1 — Rational Function
Evaluate the following limit numerically:
Plugging $x = 3$ directly gives $\tfrac{0}{0}$ — undefined. Instead, let's approach $3$ from both sides.
| $x$ | $2.9$ | $2.99$ | $2.999$ | $\to 3 \leftarrow$ | $3.001$ | $3.01$ | $3.1$ |
|---|---|---|---|---|---|---|---|
| $f(x)$ | $5.9$ | $5.99$ | $5.999$ | Undef. | $6.001$ | $6.01$ | $6.1$ |
Both sides converge to $6$. Therefore:
Even though $f(3)$ is undefined, the limit is perfectly well-defined and equals $6$. The limit only cares about what happens near $x = 3$, not at it.
Example 2 — A Famous Trigonometric Limit
Let's evaluate one of the most important limits in all of calculus. Make sure your calculator is set to Radians.
Evaluating at $x=0$ gives $\tfrac{0}{0}$. Let's build the table:
| $x$ | $-0.1$ | $-0.01$ | $-0.001$ | $\to 0 \leftarrow$ | $0.001$ | $0.01$ | $0.1$ |
|---|---|---|---|---|---|---|---|
| $f(x)$ | $0.99833$ | $0.99998$ | $0.99999$ | Undef. | $0.99999$ | $0.99998$ | $0.99833$ |
From both sides, $f(x)$ is clearly converging to $1$. This result is so fundamental it is used throughout trigonometry, physics, and engineering:
The numerical approach gives us a strong estimate, but it is not a rigorous proof. Tables can be misleading for functions that behave erratically. Always verify with an analytical method when precision matters.