Selecting Procedures for Determining Limits
students, imagine a video of a car crossing a bridge. If you want to know the car’s speed at one exact moment, you might look at a speedometer reading, compare nearby times, or estimate from a graph 📈. In calculus, limits work the same way: they help us understand what value a function is approaching near a point, even when plugging in that point directly does not work.
In this lesson, you will learn how to choose the best procedure for finding a limit. That skill matters because AP Calculus BC questions often present limits in different forms, and the correct method can save time and prevent mistakes. By the end, you should be able to decide whether to use direct substitution, algebraic simplification, graphing, tables, the Squeeze Theorem, or limit rules.
Why choosing the right procedure matters
A limit is written as $\lim_{x \to a} f(x)$, which asks what $f(x)$ gets close to as $x$ gets close to $a$. Sometimes the answer is obvious. For example, if $f(x)=3x+1$, then $\lim_{x \to 2} (3x+1)=7$ by direct substitution. But not every limit is that easy.
Some expressions give an indeterminate form such as $\frac{0}{0}$. That does not mean the limit is $0$ or undefined. It means the current form does not reveal the limit, so you need a better procedure. Choosing the procedure is the main skill here. Think of it like choosing the right tool in a toolbox 🧰.
The major procedures you may use are:
- direct substitution
- factoring and canceling
- rationalizing
- rewriting with common denominators
- using limit laws
- using graphs or tables
- applying the Squeeze Theorem
- recognizing behavior near vertical asymptotes or at infinity
The key idea is to match the method to the structure of the limit.
Start with direct substitution
The first question to ask is: can I substitute the value directly? If the function is continuous at the target point, then the limit equals the function value. For a polynomial, direct substitution always works because polynomials are continuous everywhere.
Example: evaluate $\lim_{x \to -1} (x^2+4x+5)$.
Since this is a polynomial, substitute $x=-1$:
$$(-1)^2+4(-1)+5=1-4+5=2$$
So the limit is $2$.
Direct substitution also works for many rational functions as long as the denominator is not $0$ at the target value. For example, if $g(x)=\frac{x+2}{x-1}$, then
$$\lim_{x \to 3} \frac{x+2}{x-1}=\frac{3+2}{3-1}=\frac{5}{2}$$
If substitution gives a real number, you are done. If it gives $\frac{0}{0}$, $\frac{\infty}{\infty}$, or another unclear form, you need another approach.
Factor, simplify, and then substitute
One of the most common AP Calculus BC procedures is algebraic simplification. This is often the best choice when direct substitution gives $\frac{0}{0}$.
Example: evaluate
$$\lim_{x \to 2} \frac{x^2-4}{x-2}$$
If you substitute directly, you get $\frac{0}{0}$, which is indeterminate. Factor the numerator:
$$x^2-4=(x-2)(x+2)$$
So
$$\frac{x^2-4}{x-2}=\frac{(x-2)(x+2)}{x-2}=x+2 \quad \text{for } x\neq 2$$
Now substitute again:
$$\lim_{x \to 2} (x+2)=4$$
This procedure works because the simplified expression has the same values as the original function near $x=2$, except possibly at $x=2$ itself. Limits care about nearby behavior, not the actual value at the point.
A similar strategy works for rational expressions with larger polynomials. If factoring is possible, try it first. If not, look for another algebraic method.
Rationalize when radicals are involved
If a limit contains square roots, direct substitution may again lead to $\frac{0}{0}$. In that case, rationalizing is often useful.
Example: find
$$\lim_{x \to 0} \frac{\sqrt{x+1}-1}{x}$$
Substitution gives $\frac{0}{0}$. Multiply by the conjugate:
$$\frac{\sqrt{x+1}-1}{x}\cdot\frac{\sqrt{x+1}+1}{\sqrt{x+1}+1}$$
This becomes
$$\frac{(x+1)-1}{x(\sqrt{x+1}+1)}=\frac{x}{x(\sqrt{x+1}+1)}=\frac{1}{\sqrt{x+1}+1}$$
Now substitute $x=0$:
$$\lim_{x \to 0} \frac{1}{\sqrt{x+1}+1}=\frac{1}{2}$$
Rationalizing is especially useful when a subtraction of nearly equal terms is causing the indeterminate form. It removes the radical from the numerator or denominator and reveals the limit.
Use limit laws when the expression is built from simpler pieces
Limit laws let you break a complicated limit into smaller limits. These include the sum law, product law, quotient law, and constant multiple law, as long as the involved limits exist.
For example,
$$\lim_{x \to 1} (x^2+3x-5)=\lim_{x \to 1} x^2+\lim_{x \to 1} 3x-\lim_{x \to 1} 5$$
Because each part is continuous, substitution gives
$$1^2+3(1)-5=-1$$
Limit laws are useful when an expression can be split into familiar pieces. They also help you justify steps when simplifying more complicated limits.
A major warning: do not use quotient law if the denominator’s limit is $0$. In that case, the quotient law does not apply, and the limit may not exist or may require a different method.
Use graphs and tables to estimate behavior
Sometimes the algebra is messy or the function is given piecewise, so a graph or table is the best procedure. These representations are especially helpful for understanding one-sided limits and continuity.
Suppose a graph shows that as $x$ approaches $2$ from the left and right, the $y$-values approach $5$, even though the actual point at $x=2$ is missing. Then
$$\lim_{x \to 2} f(x)=5$$
If the left-hand and right-hand behaviors are different, the two-sided limit does not exist.
Tables are useful when exact algebra is difficult. For example, if values of $x$ near $0$ produce function values close to $2$, then the limit may be $2$. However, a table gives evidence, not a proof, unless the problem is designed for estimation. On AP exams, tables are often used when the limit is only accessible numerically.
Graphing and tables are especially helpful for piecewise functions. If a function changes formula at a point, you should check each side separately.
Recognize when the Squeeze Theorem is the right choice
The Squeeze Theorem is useful when a function is trapped between two others that have the same limit. If $g(x)\le f(x)\le h(x)$ near $a$ and
$$\lim_{x \to a} g(x)=\lim_{x \to a} h(x)=L,$$
then
$$\lim_{x \to a} f(x)=L$$
A classic example is
$$\lim_{x \to 0} x\sin\left(\frac{1}{x}\right)$$
Since
$$-1\le \sin\left(\frac{1}{x}\right)\le 1,$$
multiplying by $x$ requires care, but the standard squeeze argument gives
$$-|x|\le x\sin\left(\frac{1}{x}\right)\le |x|$$
As $x \to 0$, both $-|x|$ and $|x|$ approach $0$, so the limit is $0$.
The Squeeze Theorem is the right procedure when oscillation is present but the function’s size is clearly shrinking toward zero or another common value. It often appears with trigonometric functions.
Decide what to do at infinity or near asymptotes
Not all limits are about a number like $2$ or $0$. Some ask what happens as $x \to \infty$ or $x \to -\infty$. These limits describe end behavior, which is closely connected to horizontal asymptotes.
Example: evaluate
$$\lim_{x \to \infty} \frac{3x^2-1}{2x^2+5}$$
Divide numerator and denominator by the highest power of $x$, which is $x^2$:
$$\frac{3-\frac{1}{x^2}}{2+\frac{5}{x^2}}$$
As $x \to \infty$, the fractions with $x$ in the denominator go to $0$, so the limit is
$$\frac{3}{2}$$
This procedure is often best for rational functions. If the numerator’s degree is less than the denominator’s degree, the limit is $0$. If the degrees are equal, the limit is the ratio of leading coefficients. If the numerator’s degree is greater, the limit may not be finite.
Near vertical asymptotes, one-sided limits are important. For example, if $f(x)=\frac{1}{x-4}$, then as $x\to 4^+$, $f(x)\to \infty$, and as $x\to 4^-$, $f(x)\to -\infty$. The two-sided limit does not exist.
Conclusion
students, selecting the right procedure for limits is a decision skill built on pattern recognition. Start with direct substitution. If that fails, look for algebraic simplification, rationalizing, or limit laws. If the expression is difficult to simplify, use graphs, tables, or the Squeeze Theorem. If the limit involves infinity, look at end behavior and asymptotes. This topic connects directly to continuity because a function is continuous at a point when the limit exists and equals the function value there. Mastering these choices will help you move faster and more accurately on AP Calculus BC limits questions ✅.
Study Notes
- A limit asks what value $f(x)$ approaches as $x$ approaches a target value.
- Always try direct substitution first.
- If substitution gives $\frac{0}{0}$, try factoring, canceling, or rationalizing.
- Limit laws help break complicated limits into simpler parts.
- Graphs and tables are useful for estimation and piecewise functions.
- The Squeeze Theorem works when a function is trapped between two functions with the same limit.
- For limits at infinity, compare highest powers in rational functions.
- One-sided limits are important near vertical asymptotes.
- A function is continuous at $x=a$ when $\lim_{x \to a} f(x)=f(a)$.
- Choosing the right method is often the biggest step in solving a limit problem.
