1. What a limit means
A limit describes the value a function approaches as the input approaches some point.
The key idea is behavior near a point, not necessarily the function value at the point itself.
This reads as: "as $x$ gets close to $a$, $f(x)$ gets close to $L$."
Limits are the foundation of:
Derivatives
Continuity
Infinite series
Definite integrals
Intuition
If values of $f(x)$ near $x=a$ can be made arbitrarily close to $L$, then $L$ is the limit.
That means:
$f(a)$ may equal $L$
$f(a)$ may be different from $L$
$f(a)$ may not exist at all
Example:
For $x \ne 3$, this simplifies to:
So:
even though the original formula is undefined at $x=3$.
Interactive visual
Approaching a limit
Move the removable discontinuity to see how the function approaches the same value from both sides.
2. Formal definition
The rigorous definition of a limit uses $\varepsilon$ and $\delta$.
means:
for every $\varepsilon > 0$, there exists a $\delta > 0$ such that whenever
it follows that
How to read it
$\varepsilon$ is the allowed output error
$\delta$ is the required input closeness
The condition $0 < |x-a|$ excludes the point itself
This definition says that you can force the output to stay inside any desired tolerance by keeping the input sufficiently close to $a$.
Why the point is excluded
The value at the point does not control the limit.
For limits, only nearby values matter.
Common proof pattern
To prove a limit with $\varepsilon$-$\delta$:
Start with $|f(x)-L|$
Rewrite it in terms of $|x-a|$
Bound any extra factors near $x=a$
Choose a $\delta$ that makes the inequality work
This is usually easier once the function has been algebraically simplified.
3. Limit laws
If the individual limits exist, you can combine them algebraically.
Let
Then:
provided $M \ne 0$.
Other useful laws
If $n$ is a positive integer:
If $n$ is a root and the expression stays defined:
If $p$ is a polynomial, then:
If $r(x) = \frac{p(x)}{q(x)}$ is a rational function and $q(a)\ne 0$:
Direct substitution
For continuous expressions, the fastest method is usually substitution.
Example:
If direct substitution gives an undefined form such as $\frac{0}{0}$, use another technique.
4. One-sided and infinite limits
One-sided limits
A left-hand limit approaches from values less than $a$:
A right-hand limit approaches from values greater than $a$:
The two-sided limit exists only if both one-sided limits exist and are equal.
Example:
Then:
So $\lim_{x \to 0} f(x)$ does not exist.
Infinite limits
If $f(x)$ grows without bound near $a$, we write:
or
This does not mean the limit is a real number. It means the function becomes arbitrarily large in magnitude.
Example:
Because the one-sided behaviors differ, there is no finite two-sided limit at $x=2$.
When a limit does not exist
A limit fails to exist when:
Left-hand and right-hand limits differ
The function oscillates endlessly near the point
The function grows without bound and no finite limit is intended
Oscillation example:
does not exist because the function keeps oscillating between $-1$ and $1$.
5. Algebraic techniques
When direct substitution fails, simplify first.
1. Factor and cancel
Use this for removable discontinuities and $\frac{0}{0}$ forms.
Example:
Factor the numerator:
So the limit is:
2. Rationalize
Useful when square roots create $\frac{0}{0}$.
Example:
Multiply by the conjugate:
Thus:
3. Combine fractions
If a difference of rational expressions produces $\frac{0}{0}$, use a common denominator.
4. Use identities
Trig identities often reduce expressions to a standard form.
Examples:
5. Compare dominant terms
For limits at infinity, divide by the highest power or identify the leading growth rate.
6. Squeeze theorem
If
and
then
This is especially useful for oscillating functions.
Example:
Since both bounds go to $0$ as $x \to 0$,
6. Special limits to know cold
These are standard results used constantly in calculus.
Trigonometric limits
More generally, for a constant $a$:
Exponential and logarithmic limits
Compound interest limit
Equivalently:
Why these matter
These limits are the building blocks for derivative formulas involving trig, exponential, and logarithmic functions.
7. Continuity and discontinuities
A function is continuous at $a$ if all three conditions hold:
$f(a)$ is defined
$\lim_{x \to a} f(x)$ exists
$\lim_{x \to a} f(x) = f(a)$
In symbols:
Types of discontinuity
| Type | Description | Typical fix |
|---|---|---|
| Removable | A hole; the limit exists but the function value is missing or wrong | Redefine the value |
| Jump | Left and right limits exist but are different | Usually none |
| Infinite | Function blows up near the point | Usually none |
| Oscillatory | Function oscillates indefinitely near the point | Usually none |
Continuity facts
Polynomials are continuous everywhere.
Rational functions are continuous wherever their denominator is nonzero.
Combinations of continuous functions are continuous wherever they are defined.
If $f$ is continuous and $g$ is continuous, then:
$f+g$ is continuous
$fg$ is continuous
$\frac{f}{g}$ is continuous where $g\ne 0$
$f\circ g$ is continuous where both compositions make sense
Why continuity helps
If a function is continuous at $a$, then the limit is immediate:
That is the fastest possible limit evaluation.
8. Limits at infinity and asymptotes
Limits at infinity describe end behavior.
Horizontal asymptotes
If
then $y=L$ is a horizontal asymptote.
If the same happens as $x \to -\infty$, that also gives a horizontal asymptote.
Example:
So $y=\frac{3}{2}$ is a horizontal asymptote.
Rational functions at infinity
For
compare degrees:
Degree of numerator < degree of denominator: limit is $0$
Equal degrees: limit is ratio of leading coefficients
Numerator degree > denominator degree: no finite horizontal asymptote
Vertical asymptotes
If $f(x)$ grows without bound near $x=a$, then $x=a$ may be a vertical asymptote.
Example:
So $x=2$ is a vertical asymptote.
Oblique asymptotes
If a rational function has numerator degree exactly one higher than the denominator, polynomial division may reveal a slant asymptote.
9. Indeterminate forms and L'Hôpital's rule
An indeterminate form is an expression that does not determine the limit by itself.
Common forms:
$\frac{0}{0}$
$\frac{\infty}{\infty}$
$0\cdot\infty$
$\infty-\infty$
$0^0$
$1^\infty$
$\infty^0$
The form tells you that more work is needed; it does not tell you the answer.
L'Hôpital's rule
If
or both functions approach $\pm\infty$, and the derivatives exist near $a$, then:
when the right-hand limit exists and the rule's hypotheses are satisfied.
When to use it
Use L'Hôpital's rule after:
Confirming an indeterminate form
Checking that derivatives exist where needed
Trying simpler algebra first when possible
When not to overuse it
L'Hôpital's rule is powerful, but algebra is often faster.
For example, factorization or a standard trig limit is usually cleaner than repeated differentiation.
Example
This is $\frac{0}{0}$, so L'Hôpital gives:
10. Problem-solving workflow
When you see a limit, use this sequence.
Try direct substitution.
If you get an ordinary number, you are done.
If you get $\frac{0}{0}$, simplify algebraically.
If radicals appear, rationalize.
If trig expressions appear, look for standard identities or special limits.
If $x \to \infty$ or $x \to -\infty$, compare leading terms.
If the function is piecewise, compute left and right limits separately.
If the expression is oscillatory or complicated, consider the squeeze theorem.
Use L'Hôpital's rule only when the hypotheses fit and a simpler approach is not better.
Common mistakes
Treating the limit as the same thing as the function value
Cancelling terms before checking for zero denominators
Forgetting to check both one-sided limits
Using L'Hôpital's rule on a non-indeterminate form
Replacing $x$ with $\infty$ as if it were a number
Ignoring domain restrictions
Fast diagnostic questions
Is the function continuous at the point?
Does substitution produce a valid value?
Is this a removable discontinuity?
Are you looking at behavior from one side only?
Is the variable heading toward infinity?
11. Formula sheet
Core notation
Limit laws
Standard limits
Continuity test
Squeeze theorem
implies
L'Hôpital's rule
For $\frac{0}{0}$ or $\frac{\infty}{\infty}$ forms:
when the rule applies.
Sources
Stewart, Calculus: Early Transcendentals
Lay, Linear Algebra and Its Applications
Rosen, Discrete Mathematics and Its Applications
Boyce and DiPrima, Elementary Differential Equations and Boundary Value Problems
Blitzstein and Hwang, Introduction to Probability