Determining Limits Using Algebraic Manipulation
Why this matters
Imagine you're driving to a concert in downtown Dallas. You've plugged the venue's address into your GPS, and it's guiding you perfectly. But just a block away from the entrance, you hit a "Road Closed" sign. The road you need is blocked! Do you give up and go home? Of course not. You'd find a detour—a different set of streets that gets you to the exact same spot.
That's exactly what we're doing in this lesson. Sometimes, when we try to solve a limit by plugging in a number (direct substitution), we hit a "Road Closed" sign that looks like 0/0. This doesn't mean the destination doesn't exist! It just means we need to use some algebraic detours to find a different path to the same answer.
Concept overview
flowchart TD
A[Start: Find lim f(x) as x->c] --> B{Try Direct Substitution: Plug c into f(x)};
B --> C{What is the result?};
C --> D[A number, L];
D --> E[Finish: The limit is L];
C --> F[0 / 0];
F --> G[Indeterminate Form: Use Algebra];
G --> H{Technique?};
H --> I[Factoring & Canceling];
H --> J[Multiply by Conjugate];
I --> K[Find equivalent function g(x)];
J --> K;
K --> L[Substitute c into g(x)];
L --> E;
C --> M[k / 0, where k is not 0];
M --> N[Limit is DNE or +/- infinity];
Core explanation
Hello! I'm Saavi, and I'm so glad you're here. Today, we're tackling one of the most fundamental skills in calculus: what to do when a limit problem doesn't give you a straight answer.
The Problem: The Indeterminate Form 0/0
In our last lesson, we saw that for many functions, finding the limit is as simple as plugging in the number. If you want to find the limit of f(x) = x + 5 as x approaches 3, you just plug in 3 and get 8. Easy.
But what happens when you try to find this limit?
lim (x→2) (x² - 4) / (x - 2)
If we try direct substitution, we plug in x = 2:
(2² - 4) / (2 - 2) = (4 - 4) / 0 = 0 / 0
Uh oh. What does that even mean? You can't divide by zero. Does the limit not exist?
The form 0/0 is special. It's called an indeterminate form. It doesn't mean the limit is 0, 1, or that it doesn't exist. It means "I don't have enough information yet." It's a clue from the math gods that there's more work to do. It's a green light to dig deeper, not a red stop sign.
Think of it like a detective story. Finding 0/0 is like finding a locked door. The answer isn't "I can't get in." The answer is to find the right key. Our algebraic techniques are those keys.
Key #1: Factoring and Canceling
Let's go back to our problem:
lim (x→2) (x² - 4) / (x - 2)
The reason we got 0/0 is because x - 2 is a factor of both the top and the bottom. The numerator, x² - 4, is a difference of squares that you can factor into (x - 2)(x + 2).
Let's rewrite the limit with the factored form:
lim (x→2) [(x - 2)(x + 2)] / (x - 2)
Now, look at that! We have a common factor of (x - 2) on the top and bottom. We can cancel them out.
Why is this okay? Remember, a limit asks what happens as x gets infinitely close to 2, not what happens at x = 2. Since x is not actually equal to 2, x - 2 is not actually zero, so we are allowed to cancel it.
After canceling, we're left with a much simpler expression:
lim (x→2) (x + 2)
This new function, g(x) = x + 2, is identical to our original function everywhere except at x = 2, where the original function has a hole in the graph. But for the limit, that's perfectly fine!
Now, we can use direct substitution on our simplified limit:
2 + 2 = 4
So, the limit is 4. We found the detour and arrived at our destination.
Key #2: Multiplying by the Conjugate
Factoring is great for polynomials, but what about functions with square roots?
Consider this limit:
lim (x→0) (√(x + 9) - 3) / x
Direct substitution gives (√(0 + 9) - 3) / 0 = (3 - 3) / 0 = 0 / 0. There's our signal!
We can't easily factor this. The key here is to use the conjugate. The conjugate of an expression like a - b is a + b. For our problem, the numerator is √(x + 9) - 3. Its conjugate is √(x + 9) + 3.
We're going to multiply both the numerator and the denominator by this conjugate. This is like multiplying by 1, so we don't change the value of the expression.
lim (x→0) [(√(x + 9) - 3) / x] * [(√(x + 9) + 3) / (√(x + 9) + 3)]
Now, multiply the numerators. Remember that (a - b)(a + b) = a² - b². This is the magic that makes conjugates work!
- Numerator:
(√(x + 9))² - 3² = (x + 9) - 9 = x - Denominator:
x * (√(x + 9) + 3)(Don't distribute this! Leave it factored.)
Our limit now looks like this:
lim (x→0) x / [x * (√(x + 9) + 3)]
Aha! We can now cancel the x from the top and bottom.
lim (x→0) 1 / (√(x + 9) + 3)
Now we can plug in x = 0:
1 / (√(0 + 9) + 3) = 1 / (3 + 3) = 1/6
The limit is 1/6.
Other Algebraic Tools
There are other techniques, like simplifying complex fractions (fractions inside fractions), but they all follow the same principle: if you get 0/0, rearrange the expression into an equivalent form where you can cancel the problematic term, then try direct substitution again.
Sometimes, even algebra isn't enough. For those extra-tricky functions, we have another tool called the Squeeze Theorem, which we'll cover in the next lesson. But for now, mastering these algebraic keys will unlock the vast majority of limit problems you'll see.
Worked examples
Let's walk through a couple of problems together, step by step.
Factoring a Trinomial
Problem: Find the limit lim (x→ -3) (x² + x - 6) / (x + 3)
Step 1: Always try direct substitution first.
This is the most important first step. Don't assume you need to do algebra. Let's plug in x = -3:
- Numerator:
(-3)² + (-3) - 6 = 9 - 3 - 6 = 0 - Denominator:
-3 + 3 = 0We get0/0. This is our signal that we need to do more work. It tells us that(x + 3)is a factor of the numerator.
Step 2: Use an algebraic technique. Here, we factor.
The numerator is a standard trinomial, x² + x - 6. We need two numbers that multiply to -6 and add to +1. Those numbers are +3 and -2.
So, x² + x - 6 factors into (x + 3)(x - 2).
Let's rewrite our limit with the factored numerator:
lim (x→ -3) [(x + 3)(x - 2)] / (x + 3)
Step 3: Cancel the common factor.
We can cancel the (x + 3) term from the top and bottom.
- Why? Because the limit only cares about values of
xnear -3, not at -3. Sincex ≠ -3, the termx + 3is not zero, and we can safely cancel. This leaves us with:lim (x→ -3) (x - 2)
Step 4: Substitute into the simplified expression.
Now we can plug x = -3 into our new, simpler expression:
-3 - 2 = -5
Using the Conjugate with a Root
Problem: Find the limit lim (h→0) (√(4 + h) - 2) / h
Step 1: Try direct substitution.
Plugging in h = 0:
- Numerator:
√(4 + 0) - 2 = √4 - 2 = 2 - 2 = 0 - Denominator:
0We get0/0. Time for algebra!
Step 2: Identify the need for the conjugate.
The square root in the numerator is our big clue. The expression is √(4 + h) - 2. The conjugate is √(4 + h) + 2.
Step 3: Multiply the numerator and denominator by the conjugate.
lim (h→0) [(√(4 + h) - 2) / h] * [(√(4 + h) + 2) / (√(4 + h) + 2)]
Step 4: Simplify the expression.
- NumeratorUsing the
(a-b)(a+b) = a² - b²pattern, we get(√(4 + h))² - 2² = (4 + h) - 4 = h. - DenominatorJust write it out, but don't distribute.
h * (√(4 + h) + 2). This is a common mistake spot. Students are often tempted to multiply thehinto the parenthesis. Don't! Your goal is to cancel theh, so you want to keep it visible.
Our new limit is:
lim (h→0) h / [h * (√(4 + h) + 2)]
Step 5: Cancel the common factor and substitute.
Cancel the h from the top and bottom:
lim (h→0) 1 / (√(4 + h) + 2)
Now, substitute h = 0:
1 / (√(4 + 0) + 2) = 1 / (√4 + 2) = 1 / (2 + 2) = 1/4
Try it yourself
Ready to try a couple on your own? Remember the process: substitute, see 0/0, then use your algebra tools.
Problem 1:
Find the limit: lim (x→5) (x² - 25) / (x - 5)
Hint: This looks like a job for factoring. What kind of factoring applies to x² - 25?
Problem 2:
Find the limit: lim (x→0) (√(x + 1) - 1) / x
Hint: You see a square root, and direct substitution gives 0/0. What "key" should you reach for? What is the conjugate of the numerator?
Take your time with these. You've got this!
In simple terms, this topic is about using algebra to rewrite tricky limit problems so you can plug in the number and find the answer, especially when you first get an answer of 0/0.
- LIM-1.E: Determine the limits of functions using equivalent expressions for the function or the squeeze theorem.
- LIM-1.E.1
- It may be necessary or helpful to rearrange expressions into equivalent forms before evaluating limits.
flowchart TD
A[Start: Find lim f(x) as x->c] --> B{Try Direct Substitution: Plug c into f(x)};
B --> C{What is the result?};
C --> D[A number, L];
D --> E[Finish: The limit is L];
C --> F[0 / 0];
F --> G[Indeterminate Form: Use Algebra];
G --> H{Technique?};
H --> I[Factoring & Canceling];
H --> J[Multiply by Conjugate];
I --> K[Find equivalent function g(x)];
J --> K;
K --> L[Substitute c into g(x)];
L --> E;
C --> M[k / 0, where k is not 0];
M --> N[Limit is DNE or +/- infinity];
Read what Saavi narrates
Hi there, I'm Saavi, and welcome to Shrutam.
Have you ever been driving, following your GPS, and you run into a "Road Closed" sign right before your destination? You don't just give up and go home, right? You find a detour. That's exactly what we're doing today with limits.
Sometimes when you plug a number into a limit problem, you get a "road closed" sign that looks like zero divided by zero. This is not a dead end! It's just a signal that we need to use our algebra skills to find a little detour to the right answer.
Let's try one. Imagine you need to find the limit as x approaches negative 3, of the function... x-squared plus x minus 6, all divided by x plus 3.
First step, always, is to plug in the number. If we plug in negative 3, the top becomes 9 minus 3 minus 6, which is zero. The bottom becomes negative 3 plus 3, which is also zero. So we get zero over zero.
This is where a lot of people get stuck. They see zero over zero and think the answer must be "undefined." But it's not! It's our signal to do more work.
Let's use algebra. The numerator, x-squared plus x minus 6, can be factored. We need two numbers that multiply to negative 6 and add to positive 1. Those are positive 3 and negative 2. So, the top factors into... x plus 3, times x minus 2.
Our problem is now the limit of... x plus 3 times x minus 2... all divided by x plus 3.
See that? We have an x plus 3 on the top and on the bottom. We can cancel them out! We're left with just the limit of x minus 2.
Now, we can plug in our negative 3. Negative 3 minus 2 is negative 5. And that's our answer. The limit is negative 5.
We didn't let the zero-over-zero roadblock stop us. We used factoring as our detour and found our way to the answer.
Remember that key mistake: don't stop at zero over zero. It's a green light to use your algebra skills. Keep practicing, and you'll become an expert at finding these detours. You can do this.
`0/0` is an indeterminate form, which means "more work needed," not "no answer." It's a signal to use algebra.
When you get `0/0`, start looking for an algebraic manipulation like factoring or using the conjugate.
An expression like `(x²-4)/(x-2)` is not the same thing as `lim (x→2) (x²-4)/(x-2)`. You are finding the limit *of* the expression. On the AP exam, you can lose points for this "notation drop."
Keep writing `lim (x→c)` in front of your expression on every line until you perform the final substitution.
You can only cancel common factors that are multiplied, not terms that are added or subtracted.
Factor the expression completely first. If you can't factor a common term out of the entire numerator and denominator, you cannot cancel.
This changes the value of the expression. You must multiply by a form of 1, meaning the same thing on the top and bottom.
Always multiply both the numerator and denominator by the conjugate. `[expression / expression] * [conjugate / conjugate]`.
While not mathematically incorrect, it hides the term you need to cancel. The whole point was to get a plain `x` in the numerator to cancel with the `x` in the denominator.
After multiplying by the conjugate, simplify the part that had the original root, but leave the other part factored.