Skip to content

1.4 Estimating Limit Values from Tables

Keywords

Numerical Estimation 数值估值Table of Values 数值表

Convergence 收敛Step Size 步长Approaching 趋近

The Numerical Approach

When a graph is not available and analytical methods are too complex, we can use a table of values to estimate the limit. By choosing \(x\)-values that get progressively closer to \(c\) from both the left and the right, we can observe the trend of \(f(x)\).

Core Concept: The Logic of Numerical Estimation

Numerical information is a powerful tool for estimating limits. To estimate \(\lim\limits_{x \to c} f(x)\), we examine the behavior of \(f(x)\) as \(x\) gets arbitrarily close to \(c\) from both sides.

How to Construct a Table

To estimate \(\lim\limits_{x \to c} f(x)\), you should create two sets of \(x\)-values that "sandwich" the target value \(c\):

  1. Approach from the left (\(x \to c^-\)): Choose values such as \(c-0.1, c-0.01, c-0.001\).

  2. Approach from the right (\(x \to c^+\)): Choose values such as \(c+0.1, c+0.01, c+0.001\).

Example: Estimating \(\lim\limits_{x \to 0} \frac{\sin x}{x}\)

\(x\) (from left) \(f(x)\) \(x\) (from right) \(f(x)\)
\(-0.1\) \(0.99833\) \(0.1\) \(0.99833\)
\(-0.01\) \(0.99998\) \(0.01\) \(0.99998\)
\(-0.001\) \(0.99999\) \(0.001\) \(0.99999\)

Observation: As \(x\) approaches \(0\) from both sides, \(f(x)\) clearly settles toward \(1\). Therefore, we estimate \(\lim\limits_{x \to 0} \frac{\sin x}{x} = 1\).


When Tables Signal "DNE"

A table of values can help identify cases where the limit Does Not Exist (DNE):

  1. Different Left and Right Trends: The values from the left approach a number \(L\), while values from the right approach a different number \(R\).

  2. Unbounded Behavior: As \(x\) approaches \(c\), the values of \(f(x)\) grow without bound (e.g., \(100, 1000, 10000 \dots\)), indicating a vertical asymptote.

  3. Oscillating Behavior: The values of \(f(x)\) fluctuate wildly between different numbers even as the distance between \(x\) and \(c\) becomes very small.


Math Extension: From Intuition to Rigor (\(\epsilon-\delta\))

While tables provide an intuitive "feel" for limits, they are not formal proofs. In the 19th century, mathematicians like Karl Weierstrass formalized this using the \(\epsilon-\delta\) definition.

To say \(\lim\limits_{x \to c} f(x) = L\) means that for every \(\epsilon > 0\) (no matter how small a "target error" you set for \(y\)), there exists a \(\delta > 0\) (a specific distance around \(x=c\)) such that whenever \(x\) is within \(\delta\) of \(c\) (and \(x \neq c\)), \(f(x)\) is guaranteed to be within \(\epsilon\) of \(L\).


Quiz