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 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.

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];
This diagram is a flowchart showing the decision-making process for evaluating limits. It starts with trying direct substitution. If the result is a number, that's the limit. If the result is 0/0, the chart directs you to use algebraic techniques like factoring or the conjugate method to find an equivalent function before substituting again.

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.

Example 1

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 = 0 We get 0/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 x near -3, not at -3. Since x ≠ -3, the term x + 3 is 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


Example 2

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: 0 We get 0/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.

  • Numerator
    Using the (a-b)(a+b) = a² - b² pattern, we get (√(4 + h))² - 2² = (4 + h) - 4 = h.
  • Denominator
    Just write it out, but don't distribute. h * (√(4 + h) + 2). This is a common mistake spot. Students are often tempted to multiply the h into the parenthesis. Don't! Your goal is to cancel the h, 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!