Free for students · Ad-free · WCAG 2.1 AA Compliant · Accessibility

Determining Limits Using Algebraic Manipulation

Lesson ~10 min read

In simple terms: 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.

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;
This diagram shows a flowchart for evaluating limits. It begins with "Try Direct Substitution." If the result is a number, you are done. If the result is 0/0, you must use algebraic manipulation, with paths for factoring, using the conjugate, simplifying complex fractions, or using the Squeeze Theorem, all of which lead to evaluating the new, simplified limit.

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.

  1. Priya is always running just as fast or faster than Marcus.
  2. Sofia is always running just as fast or slower than Marcus.
  3. 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 (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 . 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.

Example 1

Factoring a Trinomial

Problem: Find the limit lim (x→-2) (x² + 5x + 6) / (x + 2)

Step-by-Step Solution:

  1. 1
    Always start with direct substitution
    This 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!"
  2. 2
    Identify the right algebraic tool
    The numerator is a standard quadratic trinomial. This is a perfect candidate for factoring. Since plugging in x = -2 made 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).
  3. 3
    Rewrite the limit and cancel
    Substitute 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)
  4. 4
    Evaluate the simplified limit
    Now we can use direct substitution on the new, simpler limit.
    • (-2) + 3 = 1

Final Answer: The limit is 1.


Example 2

Simplifying a Complex Fraction

Problem: Find the limit lim (h→0) [ (1/(4+h)) - (1/4) ] / h

Step-by-Step Solution:

  1. 1
    Direct substitution
    Plugging in h = 0 gives [ (1/4) - (1/4) ] / 0, which is 0/0. Time for algebra.
  2. 2
    Identify the tool
    This 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 is 4 * (4+h).
  3. 3
    Combine 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))
  4. 4
    Rewrite the entire limit expression
    Remember that this whole thing was divided by h.
    • lim (h→0) [ -h / (4(4+h)) ] / h
    • Dividing by h is the same as multiplying by 1/h.
    • lim (h→0) [ -h / (4(4+h)) ] * (1/h)
  5. 5
    Cancel the common factor
    The h in the numerator and denominator cancel out.
    • lim (h→0) -1 / (4(4+h))
  6. 6
    Evaluate the simplified limit
    Now, 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.