Numerical Limit Evaluation and Convergence Tables
Numerical limit evaluation works by substituting values progressively closer to the target point and observing the trend. To find lim(x approaches 2) f(x), the calculator evaluates f(1.9), f(1.99), f(1.999), f(1.9999) from the left, and f(2.1), f(2.01), f(2.001), f(2.0001) from the right. If both sequences converge to the same value L, the two-sided limit exists and equals L.
This method reliably handles most well-behaved functions but has limitations — wildly oscillating functions like sin(1/x) near x = 0 may not show clear convergence. Floating-point precision issues can arise for very small step sizes (below 1e-12), where rounding errors dominate.
Despite these limitations, numerical evaluation provides excellent intuition and verification for limits that can also be solved analytically using algebraic techniques, L'Hopital's rule, or the squeeze theorem.