Solving Limits- Calculus Techniques for Beginners
What Limits Actually Are (No Philosophy)
A limit describes what happens to a function as the input gets arbitrarily close to a specific value. That's it. Nothing mysterious.
You write it like this:
lim (x→a) f(x) = L
This means "as x approaches a, f(x) approaches L."
The function doesn't have to equal L at x=a. It just needs to get close as x gets close. This distinction trips up most beginners.
Direct Substitution: Try This First
The first move is always to plug in the value. If it works, you're done. If it gives you 0/0 or ∞/∞, you need more tricks.
Example:
lim (x→3) (x² - 9)/(x - 3)
Plug in 3: (9 - 9)/(3 - 3) = 0/0. Useless. Try factoring.
Factoring: Your Second Weapon
When you hit 0/0, factor the numerator. Cancel what you can. Then substitute.
Same example:
(x² - 9)/(x - 3) = ((x+3)(x-3))/(x-3) = x + 3 (for x ≠ 3)
Now substitute: 3 + 3 = 6
The limit is 6. The original function is undefined at x=3, but the limit exists.
When Factoring Doesn't Work
If you can't factor easily, check for:
- Difference of cubes: a³ - b³ = (a-b)(a² + ab + b²)
- Sum of cubes: a³ + b³ = (a+b)(a² - ab + b²)
- Quadratic formula on stubborn trinomials
Rationalizing: For Square Roots
Square roots in the numerator often need rationalization.
Example:
lim (x→4) (√x - 2)/(x - 4)
Direct substitution gives 0/0. Multiply by the conjugate:
(√x - 2)/(x - 4) × (√x + 2)/(√x + 2) = (x - 4)/((x-4)(√x + 2))
Cancel (x-4): 1/(√x + 2)
Substitute: 1/(√4 + 2) = 1/4
L'Hôpital's Rule: Use When Stuck
When you get 0/0 or ∞/∞, differentiate the numerator and denominator separately. That's L'Hôpital's Rule.
Example:
lim (x→0) sin(x)/x
Direct substitution: 0/0. Apply L'Hôpital:
Differentiate: cos(x)/1
Substitute: cos(0) = 1
The limit is 1.
When NOT to Use L'Hôpital
- 0 × ∞ → convert to fraction first
- ∞ - ∞ → combine terms first
- 1^∞, ∞⁰, 0⁰ → use logarithms
L'Hôpital doesn't fix everything. Know when to stop.
Limits at Infinity: End Behavior
To find end behavior, divide every term by the highest power of x in the denominator.
Example:
lim (x→∞) (3x² + 5)/(x² - 2x)
Divide by x²:
(3 + 5/x²)/(1 - 2/x)
As x→∞, 5/x² → 0 and 2/x → 0
Result: 3/1 = 3
Quick Rules for Polynomials
- Degree numerator > degree denominator → ∞ or -∞
- Degree numerator < degree denominator → 0
- Same degree → ratio of leading coefficients
One-Sided Limits: Sometimes You Need These
Some functions behave differently from each side. You need separate limits.
Notation:
lim (x→a⁺)= limit from the rightlim (x→a⁻)= limit from the left
Example:
f(x) = 1/(x-2) has different behavior at x=2 depending on direction. The two-sided limit doesn't exist.
Check one-sided limits when you see absolute values, piecewise functions, or vertical asymptotes.
Common Mistakes That Cost You Points
- Canceling before checking 0/0 — you must verify the indeterminate form first
- Assuming the limit equals f(a) — it often doesn't
- Forgetting to rationalize — square roots require the conjugate trick
- Using L'Hôpital on everything — sometimes factoring is faster and cleaner
- Dropping negative signs — -∞ is not the same as ∞
Method Comparison
| Method | When to Use | Indeterminate Form |
|---|---|---|
| Direct Substitution | Always try first | Any |
| Factoring | Polynomials, 0/0 | 0/0 |
| Rationalizing | Square roots in numerator | 0/0 |
| L'Hôpital's Rule | 0/0 or ∞/∞ after trying others | 0/0, ∞/∞ |
| Divide by Highest Power | Limits at infinity | ∞/∞ |
Getting Started: Step-by-Step Process
Follow this order every time:
- Try direct substitution — if you get a real number, done
- Check for 0/0 or ∞/∞ — if yes, continue
- Try factoring — cancel common terms, substitute again
- Try rationalizing — if square roots are involved
- Apply L'Hôpital — if everything else failed
- Check one-sided limits — if the function has discontinuities
Most limit problems in beginner calculus are solved in steps 1-3. You won't need L'Hôpital as often as textbooks suggest.
Final Word
Limits are mechanical. Practice the patterns. Direct substitution → factor → rationalize → L'Hôpital. That's the sequence. Run through it every time and you'll solve most problems without thinking.