Selecting Procedures for Determining Limits
Why this matters
Imagine you’re helping your friend Marcus move into his new apartment in Chicago. You’ve got a whole toolkit: a power drill, a tiny screwdriver, a wrench, and a sledgehammer. When you see he needs to hang a picture frame, you don’t grab the sledgehammer, right? You pick the tool that fits the job.
Solving limits in calculus is exactly the same. By now, you’ve learned several different techniques: direct substitution, factoring, using conjugates, and more. The challenge isn't just knowing how to use each tool, but when. A problem that looks intimidating might have a simple one-step solution, while another might require more finesse.
This lesson is about building your mental toolkit. We’re going to create a step-by-step strategy, a decision-making flowchart, so that when you face any limit problem on the AP exam, you can confidently and efficiently pick the right tool for the job.
Concept overview
flowchart TD
A[Start: See a limit problem] --> B{Try Direct Substitution};
B --> C{What is the result?};
C -- Real Number --> D[Done! That's the limit.];
C -- Number/0 --> E[Vertical Asymptote. Investigate signs from left/right.];
C -- 0/0 Indeterminate Form --> F{Analyze the function's structure};
F --> G[Rational Function?] -- Yes --> H[Factor & Cancel];
F --> I[Contains a square root?] -- Yes --> J[Multiply by Conjugate];
F --> K[Trigonometry as x->0?] -- Yes --> L[Use Special Trig Limits];
F --> M[Oscillating/Complex?] -- Yes --> N[Try Squeeze Theorem];
H --> B;
J --> B;
L --> B;
Core explanation
Alright, let's build our strategy. Think of this as the order of operations for limits. Following this sequence will save you time and prevent you from doing unnecessary, complicated work.
Step 1: The Golden Rule — Always Try Direct Substitution First
This is your first, best, and simplest tool. Always, always, always start by plugging the value that x is approaching directly into the function.
- If you get a real number, you’re done. That’s your answer.
- If you get a number divided by zero (like
5/0), the limit is likely an infinite limit (either∞,-∞, or it does not exist because the sides disagree). You'll need to investigate the signs from the left and right. - If you get
0/0(or later,∞/∞), this is an indeterminate form. This is not the answer! It's a green light telling you that more work is needed.
Step 2: The Indeterminate Form (0/0) Playbook
So, direct substitution gave you 0/0. What now? Look at the structure of the function to decide your next move.
Scenario A: It's a Rational Function (or looks like one)
If your function is a polynomial divided by another polynomial, your go-to move is Factoring and Canceling.
The reason 0/0 happened is that both the numerator and the denominator share a common factor that becomes zero at the value x is approaching. Your job is to find that factor and cancel it out.
For example, if you have lim (x→2) [ (x² - 4) / (x - 2) ]:
- Plugging in 2 gives
(4 - 4) / (2 - 2) = 0/0. - The structure is a polynomial over a polynomial. Let's factor.
lim (x→2) [ (x - 2)(x + 2) / (x - 2) ]- Cancel the
(x - 2)terms. Now you havelim (x→2) [ x + 2 ]. - Now, try direct substitution again:
2 + 2 = 4. The limit is 4.
Scenario B: It Involves a Square Root
If you see a square root in the numerator or denominator, and you've hit the 0/0 wall, think Multiply by the Conjugate.
The conjugate is the same expression but with the middle sign flipped. For example, the conjugate of (√x - 3) is (√x + 3). Multiplying by the conjugate (in both the numerator and denominator, of course!) often clears up the square root and reveals the problematic factor you need to cancel.
It feels like a magic trick, but it's just a clever use of the difference of squares formula: (a - b)(a + b) = a² - b².
Scenario C: It Involves Trigonometry
If you see sin(x) or cos(x) and you're heading to 0/0 as x→0, you should immediately check if you can use one of the two Special Trigonometric Limits:
lim (x→0) [ sin(x) / x ] = 1lim (x→0) [ (1 - cos(x)) / x ] = 0
You often have to do some algebraic manipulation to get your problem to look exactly like one of these forms. For example, to solve lim (x→0) [ sin(3x) / x ], you need the denominator to be 3x. You can achieve this by multiplying the top and bottom by 3.
Step 3: The "It's Complicated" Toolkit
The Squeeze Theorem
You'll usually see this with functions that oscillate wildly as they approach a point, like sin(1/x) or cos(1/x). The function itself never settles down, but it might be "squeezed" between two other, simpler functions that do approach the same limit.
If you have a function g(x) that's always between f(x) and h(x), and f(x) and h(x) both approach the same limit L, then g(x) must also approach L. Think of it like two friends, Priya and Jordan, walking down a hallway and holding hands with their smaller friend, Maya, between them. If Priya and Jordan both walk through the same doorway, Maya has no choice but to go through it too.
Analyzing a Graph or Table
Sometimes, the problem won't even give you a function! It will give you a graph or a table of values. In this case, you're an investigator.
- For a graphLook at the y-value the function is approaching as you trace it from the left side and the right side of the target x-value. If they meet at the same y-value, that's your limit. (Remember, the limit doesn't care if there's a hole or a different value at the point itself!)
- For a tableLook at the y-values as the x-values get closer and closer to your target from both above and below. Are the y-values zeroing in on a single number? That's your limit.
This strategic approach turns limit problems from a guessing game into a clear, logical process.
Worked examples
Let's put our decision-making process into action with a few examples. For each one, I'll talk you through not just what I'm doing, but why I chose that specific method.
The Deceptive-Looking Limit
Problem: Find the limit: lim (x→1) [ (x² + 3x - 1) / (cos(πx)) ]
Solution Walkthrough:
- 1Analyze the ProblemMy eyes are immediately drawn to the
cos(πx). It's a fraction. It looks a little complicated. My first instinct might be to panic. - 2Follow the StrategyWhat's Rule #1? Always try direct substitution first. Let's plug in
x = 1and see what happens before we do anything more difficult.- Numerator:
(1)² + 3(1) - 1 = 1 + 3 - 1 = 3 - Denominator:
cos(π * 1) = cos(π) = -1
- Numerator:
- 3Evaluate the ResultWe get
3 / -1 = -3. This is a perfectly good real number. We didn't get0/0. We didn't get5/0. - 4ConclusionThe limit is -3.
Why this is a key example: Many students would see this and immediately assume it's a complex problem. They might look for special trig limits or try to factor something. But by sticking to the plan and trying the simplest method first, we found the answer in one step.
The Classic Factor and Cancel
Problem: Find the limit: lim (x→-3) [ (x² + x - 6) / (x² - 9) ]
Solution Walkthrough:
- 1Analyze and SubstituteIt's a rational function. Let's try direct substitution with
x = -3.- Numerator:
(-3)² + (-3) - 6 = 9 - 3 - 6 = 0 - Denominator:
(-3)² - 9 = 9 - 9 = 0
- Numerator:
- 2Evaluate the ResultWe get
0/0. This is our signal that more work is needed. - 3Choose the Right ToolThe function is a polynomial over a polynomial. This is a textbook case for the Factor and Cancel method.
- 4Execute the Method
- Factor the numerator:
x² + x - 6 = (x + 3)(x - 2) - Factor the denominator (difference of squares):
x² - 9 = (x + 3)(x - 3) - Rewrite the limit:
lim (x→-3) [ ((x + 3)(x - 2)) / ((x + 3)(x - 3)) ]
- Factor the numerator:
- 5Cancel and Re-evaluateThe
(x + 3)terms are the culprits causing the0/0. Let's cancel them.lim (x→-3) [ (x - 2) / (x - 3) ]- Now, try direct substitution again on this simplified function:
(-3 - 2) / (-3 - 3) = -5 / -6 = 5/6
- 6ConclusionThe limit is 5/6.
Where students go wrong: The most common error here is an algebra mistake during factoring. Double-check your factors to make sure they multiply back to the original polynomial.
Try it yourself
Time to be the mechanic and pick the right tool from your kit. Give these a try.
Problem 1:
Find the limit: lim (x→4) [ (√x - 2) / (x - 4) ]
Problem 2:
Find the limit: lim (x→0) [ sin(5x) / (2x) ]
In simple terms, selecting procedures for determining limits is about creating a mental checklist to decide which tool to use for any limit problem you see.
flowchart TD
A[Start: See a limit problem] --> B{Try Direct Substitution};
B --> C{What is the result?};
C -- Real Number --> D[Done! That's the limit.];
C -- Number/0 --> E[Vertical Asymptote. Investigate signs from left/right.];
C -- 0/0 Indeterminate Form --> F{Analyze the function's structure};
F --> G[Rational Function?] -- Yes --> H[Factor & Cancel];
F --> I[Contains a square root?] -- Yes --> J[Multiply by Conjugate];
F --> K[Trigonometry as x->0?] -- Yes --> L[Use Special Trig Limits];
F --> M[Oscillating/Complex?] -- Yes --> N[Try Squeeze Theorem];
H --> B;
J --> B;
L --> B;
Read what Saavi narrates
Hi everyone, it's Saavi. Let's talk about one of the most important skills in this first unit: figuring out how to start a limit problem.
Imagine you’re helping a friend move. You've got a whole toolkit... a drill, a screwdriver, a wrench, and a sledgehammer. When you see a tiny screw on a picture frame, you don’t grab the sledgehammer, right? You pick the tool that fits the job. Solving limits is exactly the same.
This lesson isn't about learning a new technique. It's about organizing the methods you already know into a reliable, step-by-step strategy. It's your decision tree for any limit problem you might see.
Let's walk through an example. Say you need to find the limit as x approaches negative 3 of the fraction... x-squared plus x minus 6... all divided by... x-squared minus 9.
Okay, first, what's our golden rule? Always try direct substitution first. Let's plug in negative 3. The numerator becomes 9 minus 3 minus 6, which is 0. The denominator becomes 9 minus 9, which is also 0.
So we get 0 over 0. Now, here’s a common mistake: thinking that 0 over 0 is the answer. It's not! It's an indeterminate form. It's a signal that we need to do more work.
Since the function is a polynomial over another polynomial, this is a classic case for factoring. The numerator, x-squared plus x minus 6, factors into... x plus 3 times x minus 2. The denominator, x-squared minus 9, is a difference of squares... it factors into x plus 3 times x minus 3.
Now we can rewrite the limit with the factored forms. You'll see an x plus 3 on the top and on the bottom. Those are the troublemakers causing the 0 over 0. We can cancel them out.
We're left with the limit of x minus 2 over x minus 3. Now, we try substitution again. Plugging in negative 3 gives us negative 5 over negative 6, which simplifies to 5 sixths. And that's our limit.
See how that works? You have a process. You have a toolkit. By following these steps, you can tackle any limit problem with confidence. You've got this.
You might waste five minutes factoring a complex problem when you could have plugged in the number and been done in 30 seconds.
ALWAYS plug the number in first. It's the fastest check and works more often than you'd think.
`0/0` is an "indeterminate form." It doesn't have a value. It's a signal from the problem that you need to do more work (like factoring or using a conjugate).
When you see `0/0`, say to yourself, "Okay, now the real work begins," and then choose your next procedure based on the function's form.
A non-zero number divided by zero indicates a vertical asymptote. The limit will be `∞`, `-∞`, or will not exist. It is NOT a `0/0` situation that requires factoring.
When you get `(number)/0`, test values slightly to the left and right of your target to see if the function is going to positive or negative infinity.
The conjugate requires flipping the sign *between* the terms. This is essential for the difference of squares `(a-b)(a+b)` to work.
The conjugate of `(√x - 5)` is `(√x + 5)`. The conjugate of `(3 + √x)` is `(3 - √x)`. Be precise.
You can only cancel common *factors*, not common *terms* that are being added or subtracted.
In the expression `(x² + 4) / x`, the `x²` and `4` are terms. You cannot cancel the `x`. You could, however, rewrite it as `x²/x + 4/x = x + 4/x`, which is different.