Limit laws let you break a complex limit into simpler pieces that you can evaluate individually. Once you know these rules, you can handle most limit problems in Calculus I by combining a few basic moves: direct substitution, algebraic simplification, and (when those fail) special techniques like the squeeze theorem.
Limit Laws and Techniques
Fundamental limit laws
The core idea is this: if limxโaโf(x) and limxโaโg(x) both exist, you can split up a complicated limit into parts. Each law below requires that the individual limits exist.
Sum law:limxโaโ[f(x)+g(x)]=limxโaโf(x)+limxโaโg(x)
There's also a composition law: if limxโaโg(x)=L and f is continuous at L, then limxโaโf(g(x))=f(L). This comes up whenever you have a function nested inside another, like limxโ0โsin(x2).
Limits of polynomial functions
Polynomials are continuous everywhere, so you can always evaluate their limits by direct substitution: just plug in the value of a.
For example: limxโ2โ(3x2โ4x+1)=3(2)2โ4(2)+1=12โ8+1=5
Rational functions (a polynomial divided by a polynomial) also allow direct substitution, as long as the denominator isn't zero at that point. When you plug in and get 00โ, that's an indeterminate form, which signals that you need algebraic work before you can find the limit.
Simplifying complex limit expressions
When direct substitution gives you 00โ, try these techniques:
Factoring and canceling: Factor the numerator and denominator, then cancel the common factor that's causing the zero.
The conjugate trick works because (AโB)(A+B)=A2โB2, which removes the square root from the numerator.
Application of the squeeze theorem
The squeeze theorem (also called the sandwich theorem) is your go-to when algebraic simplification won't work, especially with oscillating functions like sine and cosine.
The setup: if g(x)โคf(x)โคh(x) for all x near a (except possibly at a itself), and limxโaโg(x)=limxโaโh(x)=L, then limxโaโf(x)=L.
You're "squeezing" f(x) between two functions that both converge to the same value, so f(x) has no choice but to converge there too.
Classic example: Show that limxโ0โx2sin(x1โ)=0.
You know โ1โคsin(x1โ)โค1 for all x๎ =0.
Multiply through by x2 (which is non-negative): โx2โคx2sin(x1โ)โคx2.
Both limxโ0โ(โx2)=0 and limxโ0โx2=0.
By the squeeze theorem, limxโ0โx2sin(x1โ)=0.
Specific limit strategies by function type
Polynomial functions: Direct substitution always works.
Rational functions: Try direct substitution first. If you get 00โ, factor and cancel, or multiply by a conjugate.
Trigonometric functions: Use the squeeze theorem or key identities. Two limits you should memorize: limxโ0โxsinxโ=1 and limxโ0โx1โcosxโ=0.
Exponential and logarithmic functions: These are continuous on their domains, so direct substitution typically works. Use properties of exponents and logarithms to simplify first when needed.
Function behavior near points
One-sided limits describe what happens as x approaches a from just one direction:
From the left: limxโaโโf(x)
From the right: limxโa+โf(x)
The two-sided limit limxโaโf(x) exists only if both one-sided limits exist and are equal. If they disagree, the two-sided limit does not exist, which indicates some kind of discontinuity at x=a.
Infinite limits occur when function values grow without bound. For example:
Since the one-sided limits aren't equal (and aren't even finite), the two-sided limit limxโ0โx1โ does not exist. The graph has a vertical asymptote at x=0.
Continuity and limit definitions
A function f is continuous atx=a if three things hold:
f(a) is defined.
limxโaโf(x) exists.
limxโaโf(x)=f(a).
This is exactly why direct substitution works for polynomials and other continuous functions: condition 3 says the limit equals the function value.
The epsilon-delta definition gives a rigorous way to prove a limit statement. It says limxโaโf(x)=L if for every ฯต>0, there exists a ฮด>0 such that whenever 0<โฃxโaโฃ<ฮด, we have โฃf(x)โLโฃ<ฯต. You may or may not need to write epsilon-delta proofs in Calc I, but understanding the idea (making f(x) as close to L as you want by keeping x close enough to a) helps the concept of a limit make sense.
The Intermediate Value Theorem (IVT) states that if f is continuous on [a,b] and N is any value between f(a) and f(b), then there exists some c in (a,b) with f(c)=N. This is often used to show that an equation has a solution: if f(a) is negative and f(b) is positive (or vice versa), then f must cross zero somewhere between a and b.