How to Approach Any Limit Problem

Every limit problem has a hierarchy of techniques. You should always try them in order — start with the simplest and escalate only when the previous technique fails. Knowing which technique to reach for first is half the battle.

The Limit-Solving Decision Flowchart
1
Try direct substitution first. Plug x = a into f(x). If you get a defined number → done. If you get 0/0, ∞/∞, or other indeterminate form → continue.
2
Can you factor? If the expression is a rational function with 0/0, try factoring numerator and denominator and cancelling the common factor → continue.
3
Is there a square root? If f(x) involves √, try rationalising by multiplying by the conjugate.
4
Is it a trig limit? Look for sin(x)/x or (1−cos x)/x patterns near 0 and apply the standard trig limit identities.
5
Use L'Hôpital's Rule. If you still have 0/0 or ∞/∞ after algebraic manipulation, differentiate numerator and denominator separately. (Covered in the next article.)
01
Direct Substitution
USE WHEN: f is continuous at x = a (no 0/0 or undefined result)

Simply substitute x = a into the expression. If the result is a finite number, that is the limit. This works for all polynomials, and for rational/trig/exponential functions wherever they are defined.

Findlim (x→4) [√x + 3x² − 7]
Step 1Substitute x = 4: √4 + 3(4)² − 7 = 2 + 48 − 7 = 43
DoneThe function is continuous at x = 4, so the limit equals f(4) = 43.
02
Factoring and Cancelling
USE WHEN: Direct substitution gives 0/0 and the expression is a rational function

Factor both numerator and denominator. If they share a common factor (x − a), cancel it — this removes the 0/0 form. Then substitute.

Findlim (x→3) [(x² − 9) / (x − 3)]
Step 1Direct sub: (9−9)/(3−3) = 0/0. Try factoring.
Step 2x² − 9 = (x−3)(x+3). So expression = (x−3)(x+3)/(x−3) = x+3, for x ≠ 3.
Step 3lim (x→3) [x + 3] = 3 + 3 = 6

💡 Common factorable forms: difference of squares (a²−b²), perfect square trinomials, sum/difference of cubes.

Important

When you cancel (x−a) from the numerator and denominator, you are not changing the limit — you are creating a new function that equals the original for all x ≠ a. The limit does not care about x = a itself, so this is valid.

03
Rationalisation
USE WHEN: 0/0 form with square roots in the numerator or denominator

Multiply numerator and denominator by the conjugate of the square root expression. This eliminates the radical from the troublesome part and creates a factorable difference of squares.

Findlim (x→9) [(√x − 3) / (x − 9)]
Step 1Direct sub: (√9 − 3)/(9−9) = 0/0. Multiply by conjugate (√x + 3)/(√x + 3).
Step 2Numerator: (√x − 3)(√x + 3) = x − 9. Denominator: (x−9)(√x + 3).
Step 3Cancel (x−9): 1/(√x + 3). Now substitute x = 9: 1/(√9 + 3) = 1/(3+3) = 1/6
04
Conjugate Method for Complex Expressions
USE WHEN: Expression has the form (a − b) where both are square roots

The same conjugate technique applies when the entire fraction involves a difference of square roots. Multiply through to get a rational expression, then cancel and substitute.

Findlim (x→0) [(√(x+4) − 2) / x]
Step 10/0 form. Multiply by (√(x+4) + 2)/(√(x+4) + 2).
Step 2Numerator: (x+4) − 4 = x. Fraction becomes x / [x(√(x+4) + 2)].
Step 3Cancel x: 1/(√(x+4) + 2). At x=0: 1/(√4 + 2) = 1/4 = 0.25
05
Standard Trigonometric Limits
USE WHEN: Expression involves sin, cos, tan near x = 0

Two fundamental trig limits are proved using the Squeeze Theorem and are used constantly in calculus:

Limit 1lim (x→0) [sin(x)/x] = 1 — fundamental to all trig differentiation
Limit 2lim (x→0) [(1 − cos x)/x] = 0 — used in deriving d/dx[cos x]

To use these, you often need to rewrite the expression to match the standard form. Key trick: if you have sin(3x)/x, multiply and divide by 3 to get 3·[sin(3x)/(3x)] → 3·1 = 3.

Examplelim (x→0) [sin(5x) / (2x)] = (5/2) · lim (x→0) [sin(5x)/(5x)] = (5/2)·1 = 5/2

Practice Problems

Work through these before checking answers. Cover the solution and try each one independently.

Practice Set — Which Technique?
P1: lim (x→5) [x³ − 2x + 1] → Direct Sub → 116 P2: lim (x→1) [(x³ − 1) / (x − 1)] → Factor → 3 P3: lim (x→4) [(√x − 2) / (x − 4)] → Rationalise → 1/4 P4: lim (x→0) [sin(4x) / x] → Trig Limit → 4 P5: lim (x→2) [(x²+x−6) / (x²−4)] → Factor both → 5/4
Frequently Asked Questions
What is an indeterminate form?
An indeterminate form is a limit expression that cannot be resolved by direct substitution because it takes a form like 0/0, ∞/∞, 0·∞, ∞−∞, 1^∞, 0⁰, or ∞⁰. These are "indeterminate" because the limit could be anything — you need more information (from algebraic manipulation or L'Hôpital's Rule) to resolve them.
Can I always use L'Hôpital's Rule instead of factoring?
Technically yes for 0/0 and ∞/∞ forms, but factoring is faster and requires less work for polynomial limits. L'Hôpital's Rule is the right tool when algebraic simplification is too difficult — trig, exponential, and logarithmic limits often need it. Always try algebra first.
Why does sin(x)/x → 1 as x → 0?
This is proved using the Squeeze Theorem: using geometric arguments on the unit circle, one can show cos(x) ≤ sin(x)/x ≤ 1 for x near 0. Since both bounds approach 1 as x → 0, sin(x)/x is squeezed to 1. This result is the foundation for all trigonometric derivatives.
What if none of these techniques work?
If factoring, rationalising, and the standard trig limits all fail, the next tool is L'Hôpital's Rule (differentiate top and bottom separately for 0/0 or ∞/∞ forms). Beyond that, Taylor series expansions can resolve very complex limits. These are covered in the next two articles in this series.
← Previous
Limit Definition and Intuition
Next →
L'Hôpital's Rule Explained
References & Further Reading
  • Stewart, J. (2015). Calculus, §2.3. Cengage.
  • Larson, R. & Edwards, B. (2013). Calculus, §1.3. Cengage.
  • Apostol, T. (1967). Calculus, Vol. 1. Wiley.
AM
Dr. Aisha Malik, PhD Mathematics
Senior Lecturer in Applied Mathematics · 12 years teaching calculus at university level

Dr. Malik holds a PhD in Applied Mathematics from the University of Edinburgh and has taught calculus to over 4,000 students at both undergraduate and postgraduate level. Her research focuses on numerical methods for differential equations. She has reviewed this article for mathematical accuracy and pedagogical clarity.

Technically reviewed by: Prof. James Chen, Stanford Mathematics Department