Skip to content

1.7 Selecting Procedures for Determining Limits

Keywords

Decision Matrix 决策矩阵Direct Substitution 直接代入

Indeterminate Form 不定式Simplification 简化Piecewise Strategy 分段策略

The Limit Roadmap

When faced with a limit problem, you should follow a logical sequence of procedures to find the solution efficiently.

核心要点:极限求解决策流 (The Decision Flow)

  1. Step 1: Direct Substitution. Always start here. If \(f(c)\) results in a real number, you are finished.

  2. Step 2: Check for Indeterminate Form (\(\frac{0}{0}\)). If substitution results in zero over zero, you must use algebraic manipulation (Factoring, Conjugates, or Trig Identities) to simplify the expression.

  3. Step 3: Check for Infinite Behavior (\(\frac{k}{0}\)). If the numerator is a non-zero constant \(k\) and the denominator is \(0\), the limit is likely \(\infty\), \(-\infty\), or DNE. Check the one-sided limits.

  4. Step 4: Analyze Graphs or Tables. If the function is too complex for algebra or is defined piecewise, use numerical estimation or visual inspection.


Strategy Selection Table

If the function looks like... Try this procedure...
Polynomials / Radicals (Defined) Direct Substitution
Rational functions (\(\frac{0}{0}\)) Factoring or Long Division
Square Roots (\(\sqrt{x} \dots\)) Rationalizing (Multiply by Conjugate)
Piecewise functions at the "break" One-Sided Limits (Left vs. Right)
Complex Fractions Find a Common Denominator to simplify

A Challenging Case: Complex Rationalization

Sometimes, you might encounter a limit that requires multiple steps or "double" manipulation.

Example: Evaluate \(\lim\limits_{x \to 0} \frac{\frac{1}{x+3} - \frac{1}{3}}{x}\)

First, direct substitution gives \(\frac{1/3 - 1/3}{0} = \frac{0}{0}\). We must simplify the complex fraction by finding a common denominator in the numerator:

\[ \frac{1}{x+3} - \frac{1}{3} = \frac{3 - (x+3)}{3(x+3)} = \frac{-x}{3(x+3)} \]

Now, substitute this back into the original limit:

\[ \lim_{x \to 0} \frac{\frac{-x}{3(x+3)}}{x} = \lim_{x \to 0} \frac{-x}{3x(x+3)} = \lim_{x \to 0} \frac{-1}{3(x+3)} \]

Finally, use direct substitution: \(\frac{-1}{3(0+3)} = -\frac{1}{9}\).


Extension: The Absolute Value Trap

Be careful with limits involving absolute values, such as \(\lim\limits_{x \to 2} \frac{|x-2|}{x-2}\).

If you approach from the right (\(x > 2\)), the value is \(\frac{x-2}{x-2} = 1\). If you approach from the left (\(x < 2\)), the value is \(\frac{-(x-2)}{x-2} = -1\). Because the one-sided limits do not match (\(1 \neq -1\)), the limit Does Not Exist. This creates a "Jump Discontinuity" that algebra alone might hide if you aren't careful!


Quiz