Determining Limits Using Algebraic Manipulation
Why this matters
Imagine you're a detective at a crime scene in downtown Chicago. There's a crucial piece of evidence, a footprint, but it's been smudged right in the center. You can't see the exact middle, but you can see the heel, the toes, and the outline of the shoe perfectly. By looking at everything around the smudge, you can confidently determine the shoe size was a men's 10.
Limits are a lot like that. Sometimes, we can't directly calculate a function's value at a specific point (the smudge). But by examining the function's behavior infinitesimally close to that point (the heel and toes), we can figure out what value it's approaching. Today, we'll learn the algebraic tools to do just that, turning a confusing "smudge" into a clear, logical answer.
Concept overview
flowchart TD
A[Start: Evaluate lim x->c f(x)] --> B{Try Direct Substitution};
B --> C{Result is a number?};
C -->|Yes| D[Done! That's the limit.];
C -->|No, 0/0| E{Use Algebraic Manipulation};
E --> F[Factor and Cancel];
E --> G[Multiply by Conjugate];
E --> H[Simplify Complex Fraction];
E --> I[Use Squeeze Theorem];
F --> J[Evaluate Simplified Limit];
G --> J;
H --> J;
I --> J;
Core explanation
Hello! I'm Saavi, and I'm here to guide you through one of the most foundational skills in calculus.
In our last lesson, we saw that finding a limit can sometimes be as easy as plugging the number in. But what happens when that simple approach fails?
The Indeterminate Form: 0/0
Let's say you're asked to find:
lim (x→3) (x² - 9) / (x - 3)
Your first instinct is direct substitution. You plug in x = 3.
The numerator becomes 3² - 9 = 9 - 9 = 0.
The denominator becomes 3 - 3 = 0.
So you get 0/0.
Think of it like a "Detour Ahead" sign on the highway. You can't go straight through, but it doesn't mean you can't reach your destination. You just need to find an alternate route. Our algebraic techniques are those alternate routes.
Technique 1: Factoring and Canceling
Let's go back to our problem:
lim (x→3) (x² - 9) / (x - 3)
The reason we get 0/0 is because both the top and bottom of the fraction are zero at x=3. This tells us that (x - 3) must be a factor of the numerator. Let's use our algebra skills to factor the top expression, which is a difference of squares.
x² - 9 = (x - 3)(x + 3)
Now, let's rewrite our limit with the factored form:
lim (x→3) [(x - 3)(x + 3)] / (x - 3)
Look at that! We have a common factor of (x - 3) in the numerator and the denominator. Since the definition of a limit is what happens as x gets close to 3 (but not actually equal to 3), we know x - 3 is not zero. This means we can safely cancel it out.
lim (x→3) (x + 3)
This is a new, simplified function that is identical to our original function everywhere except at the single point x=3, where the original had a hole. Now, we can try direct substitution again.
3 + 3 = 6
So, the limit is 6. By factoring, we found the "detour" around the 0/0 problem.
Technique 2: Multiplying by the Conjugate
What if you have a square root? Factoring might not be an option. Consider this limit:
lim (x→0) (√(x + 4) - 2) / x
Direct substitution gives (√(4) - 2) / 0, which is (2 - 2) / 0, or 0/0. Time for another technique.
When you see a square root in a situation like this, think conjugate. The conjugate of a binomial expression (a - b) is (a + b). For our problem, the expression in the numerator is √(x + 4) - 2. Its conjugate is √(x + 4) + 2.
The trick is to multiply both the numerator and the denominator by this conjugate. This is just like multiplying by 1, so we aren't changing the value of the expression.
lim (x→0) [ (√(x + 4) - 2) / x ] * [ (√(x + 4) + 2) / (√(x + 4) + 2) ]
Now, multiply the numerators. Remember (a - b)(a + b) = a² - b². This is the whole reason we use the conjugate!
Numerator: (√(x + 4))² - 2² = (x + 4) - 4 = x
Now let's look at the whole limit expression again:
lim (x→0) x / [ x * (√(x + 4) + 2) ]
Just like before, we have a common factor we can cancel: x.
lim (x→0) 1 / (√(x + 4) + 2)
Now, try direct substitution on this simplified form:
1 / (√(0 + 4) + 2) = 1 / (√4 + 2) = 1 / (2 + 2) = 1/4
The limit is 1/4. The conjugate trick cleared the path for us.
Technique 3: The Squeeze Theorem
This last technique is a bit different. It's less about algebra and more about logic.
- Priya is always running just as fast or faster than Marcus.
- Sofia is always running just as fast or slower than Marcus.
- At the finish line, both Priya and Sofia cross at the exact same time: 15.0 seconds.
What can you say about Marcus's time? It must also be 15.0 seconds. He was "squeezed" between them.
The Squeeze Theorem (or Sandwich Theorem) says the same thing for functions. If a function g(x) is always squeezed between two other functions, f(x) and h(x), and f(x) and h(x) approach the same limit L at some point c, then g(x) must also approach that same limit L.
This is most useful for weird functions, especially ones involving sin or cos of things like 1/x.
Consider: lim (x→0) x² * sin(1/x)
Direct substitution fails because sin(1/0) is undefined. But we know something fundamental about the sine function: it always oscillates between -1 and 1.
-1 ≤ sin(1/x) ≤ 1
Now, let's build our function. Multiply all three parts of the inequality by x² (which is always non-negative, so we don't have to flip the inequality signs).
-x² ≤ x² * sin(1/x) ≤ x²
We have successfully "squeezed" our target function between two simpler functions: -x² and x².
Now, let's find the limit of the "bread" of our sandwich as x→0.
lim (x→0) -x² = 0
lim (x→0) x² = 0
Since both the lower and upper bounds go to 0, the Squeeze Theorem tells us that the function in the middle must also go to 0.
lim (x→0) x² * sin(1/x) = 0
These three techniques—factoring, using the conjugate, and the Squeeze Theorem—are your primary tools for handling limits that result in the indeterminate form 0/0.
Worked examples
Let's walk through a few problems together. I'll show you not just what to do, but why we're doing it.
Factoring a Trinomial
Problem: Find the limit lim (x→-2) (x² + 5x + 6) / (x + 2)
Step-by-Step Solution:
- 1Always start with direct substitutionThis should be your automatic first step. It saves you work if the limit is simple, and it tells you if you need more complex tools.
- Numerator:
(-2)² + 5(-2) + 6 = 4 - 10 + 6 = 0 - Denominator:
-2 + 2 = 0 - We get
0/0. This is our signal: "More work needed!"
- Numerator:
- 2Identify the right algebraic toolThe numerator is a standard quadratic trinomial. This is a perfect candidate for factoring. Since plugging in
x = -2made the expression zero, we know that(x - (-2))or(x + 2)must be a factor. This is a huge hint!- We need two numbers that multiply to 6 and add to 5. Those numbers are 2 and 3.
- So,
x² + 5x + 6 = (x + 2)(x + 3).
- 3Rewrite the limit and cancelSubstitute the factored form back into the limit expression.
lim (x→-2) [(x + 2)(x + 3)] / (x + 2)- We can cancel the
(x + 2)terms. This is the key step. We are removing the "hole" in the function. lim (x→-2) (x + 3)
- 4Evaluate the simplified limitNow we can use direct substitution on the new, simpler limit.
(-2) + 3 = 1
Final Answer: The limit is 1.
Simplifying a Complex Fraction
Problem: Find the limit lim (h→0) [ (1/(4+h)) - (1/4) ] / h
Step-by-Step Solution:
- 1Direct substitutionPlugging in
h = 0gives[ (1/4) - (1/4) ] / 0, which is0/0. Time for algebra. - 2Identify the toolThis is a complex fraction (a fraction within a fraction). The strategy is to simplify the numerator into a single fraction first.
- To combine
(1/(4+h)) - (1/4), we need a common denominator, which is4 * (4+h).
- To combine
- 3Combine the fractions in the numerator
[ 4 / (4(4+h)) ] - [ (4+h) / (4(4+h)) ]= (4 - (4+h)) / (4(4+h))= (4 - 4 - h) / (4(4+h))= -h / (4(4+h))
- 4Rewrite the entire limit expressionRemember that this whole thing was divided by
h.lim (h→0) [ -h / (4(4+h)) ] / h- Dividing by
his the same as multiplying by1/h. lim (h→0) [ -h / (4(4+h)) ] * (1/h)
- 5Cancel the common factorThe
hin the numerator and denominator cancel out.lim (h→0) -1 / (4(4+h))
- 6Evaluate the simplified limitNow, plug in
h = 0.-1 / (4(4+0)) = -1 / (4 * 4) = -1/16
Final Answer: The limit is -1/16. This type of limit is extremely important and forms the basis of the definition of the derivative, which you'll see very soon!
Try it yourself
Ready to try a couple on your own? Remember the process: try direct substitution first. If you get 0/0, identify the right tool and get to work.
Problem 1:
Find lim (x→5) (x² - 3x - 10) / (x - 5)
Hint: The 0/0 form tells you that (x-5) must be a factor of the numerator. What's the other factor?
Problem 2:
Find lim (x→0) (√(x + 1) - 1) / x
Hint: You see a square root and get 0/0. What's the first tool that should come to mind? What is the conjugate of the numerator?
Take your time, write out each step, and don't forget your limit notation! You've got this.
In simple terms, this topic is about using algebra to find a limit when simply plugging in the number doesn't work, like finding a clever detour when the main road is blocked.
- 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: Evaluate lim x->c f(x)] --> B{Try Direct Substitution};
B --> C{Result is a number?};
C -->|Yes| D[Done! That's the limit.];
C -->|No, 0/0| E{Use Algebraic Manipulation};
E --> F[Factor and Cancel];
E --> G[Multiply by Conjugate];
E --> H[Simplify Complex Fraction];
E --> I[Use Squeeze Theorem];
F --> J[Evaluate Simplified Limit];
G --> J;
H --> J;
I --> J;
Read what Saavi narrates
(gentle, warm intro music fades)
Hello, and welcome to Shrutam. I'm Saavi.
Have you ever looked at a blurry photo? You can't see the exact center, but you can see everything around it... the edges, the colors, the shapes... and from that, you can figure out what's supposed to be in the middle.
That's exactly what we're doing in calculus today. Sometimes we have a function, and we can't figure out its value at one specific point... it's like a smudge, or a blur. But we can use algebra to look at what's happening right next to that point to figure out the value it's getting closer and closer to.
The main idea is this: when you try to find a limit by just plugging in a number, you sometimes get the weird answer of zero divided by zero. That's not an error. It's a signal... a signal that you need to do a little bit of algebra to rewrite the function into a form that works.
Let's try one. Imagine we need to find the limit of the function... open parenthesis, x-squared minus four, close parenthesis... all divided by... open parenthesis, x minus two, close parenthesis... as x approaches two.
If you plug in two, you get four minus four on top, which is zero... and two minus two on the bottom, which is also zero. Zero over zero. That's our signal!
The top part, x-squared minus four, can be factored. It's a difference of squares. It becomes... open parenthesis, x minus two, close parenthesis, times... open parenthesis, x plus two, close parenthesis.
So now our limit is... the factored form on top, divided by... x minus two.
You can see the 'x minus two' term on both the top and the bottom. We can cancel them out! We're left with just the limit of x plus two as x approaches two. Now we can plug in the two. Two plus two is four. And that's our answer. The limit is four.
The most common mistake I see is students getting zero over zero and just stopping, writing "undefined". Please don't do that! It just means "more work needed." You have the tools. You just have to use them to find that clever detour.
Keep practicing, and you'll start to see these patterns everywhere. You can do this.
(gentle, warm outro music fades in)
`0/0` is an indeterminate form, which is a signal to do more algebraic work, not a final answer. The limit might be 5, or -1/2, or any other number.
When you get `0/0`, say to yourself, "Okay, time for a different approach," and then try factoring, using the conjugate, or simplifying.
The expression `(x²-9)/(x-3)` is not equal to the expression `x+3`. However, their *limits* as `x→3` are equal. Dropping the `lim` notation makes your work mathematically incorrect and will lose you points on the AP exam.
Keep writing `lim (x→c)` on each line until you perform the final substitution.
You can only cancel common *factors*, which apply to the entire numerator or denominator. You cannot cancel individual terms that are being added or subtracted.
Always factor the numerator and denominator completely *before* you attempt to cancel anything.
This changes the value of the entire expression. You must multiply by a form of 1, such as `(conjugate)/(conjugate)`.
Write out the full fraction `(conjugate)/(conjugate)` next to your original limit to ensure you multiply both the top and bottom.
Choosing bounding functions that don't actually "squeeze" the original function, or choosing bounds that approach different limits, makes the theorem useless.
Start with a known, basic inequality (like `-1 ≤ sin(θ) ≤ 1`). Then, carefully build your complex function by multiplying or adding to all three parts of the inequality, paying close attention to signs.