Lesson 2 / 5 · 12 min read
Limits
What 'approaches' really means, and how to actually compute one.
What is a limit?
The notation
limx→af(x)=L
means: as x gets arbitrarily close to a, f(x) gets arbitrarily close to L. Importantly, it does not require that f(a)=L — f doesn't even have to be defined at a.
Method 1: Just plug it in
If f is continuous at a (no holes, jumps, or vertical asymptotes), then:
limx→af(x)=f(a)
Example. limx→2(x2+3)=4+3=7. Done.
Method 2: Algebra for indeterminate forms
If plugging in gives 00, simplify first.
Example. limx→3x−3x2−9.
Direct substitution gives 00 — bad. Factor:
x−3x2−9=x−3(x−3)(x+3)=x+3
Now plug in: 3+3=6.
One-sided limits
limx→a− means approach from the left (smaller values). limx→a+ means approach from the right (larger values).
The full (two-sided) limit exists only if both sides agree:
limx→af(x)=L⟺limx→a−f(x)=limx→a+f(x)=L
Limits at infinity
limx→∞ asks: what happens as x grows without bound?
Example. limx→∞x2−53x2+1.
Divide top and bottom by x2: 1−5/x23+1/x2. As x→∞, the 1/x2 terms go to 0, leaving 3/1=3.
Shortcut for rational functions: compare the degrees of the numerator and denominator.
- Numerator degree < denominator degree → limit is 0.
- Numerator degree = denominator degree → limit is the ratio of leading coefficients.
- Numerator degree > denominator degree → limit is ±∞.
Key takeaways
- Limits describe behavior near a point, not necessarily at it.
- 00 means "try harder, don't conclude." Usually factor and cancel.
- For one-sided behavior, check the left and right separately.