No history yet

Algebraic Techniques

When Direct Substitution Fails

The simplest way to find a limit is often direct substitution. You just plug the value that xx is approaching into the function. If you get a number, you're done. But what happens when you get something like 00\frac{0}{0}? This is known as an , and it's a signal that you need to do more work. It doesn't mean the limit is zero or that it doesn't exist. It means the function has a hole or a gap at that exact point, and we need to look closer at the behavior around it.

Consider this limit:

limx2x24x2\lim_{x \to 2} \frac{x^2 - 4}{x - 2}

If we try substituting x=2x=2, we get:

22422=4422=00\frac{2^2 - 4}{2 - 2} = \frac{4 - 4}{2 - 2} = \frac{0}{0}

Your Algebraic Toolkit

When faced with 00\frac{0}{0}, your goal is to algebraically eliminate the term that's causing the zero in the denominator. Three common techniques are factoring, rationalizing, and expanding.

1. Factoring Polynomials

If your function involves polynomials, look for common factors. Let's revisit our example:

limx2x24x2\lim_{x \to 2} \frac{x^2 - 4}{x - 2}

Factoring the numerator gives us (x2)(x+2)(x-2)(x+2). Now the limit looks like this:

limx2(x2)(x+2)x2\lim_{x \to 2} \frac{(x - 2)(x + 2)}{x - 2}

Since the definition of a limit concerns the value as xx approaches 2, not the value at x=2x=2, we know that x2x-2 is not exactly zero. This allows us to safely cancel the (x2)(x-2) terms.

We've created a new, simpler function, y=x+2y = x+2, that is identical to the original function everywhere except for a hole at x=2x=2. The limit will be the same.

Now we can use direct substitution on the simplified expression:

limx2(x+2)=2+2=4\lim_{x \to 2} (x + 2) = 2 + 2 = 4

2. Rationalization

When you see a radical (a square root) in a limit that results in 00\frac{0}{0}, the rationalization technique is your best bet. This involves multiplying the numerator and denominator by the conjugate of the expression containing the radical. The conjugate is formed by flipping the sign between the two terms.

Let's evaluate this limit:

limx9x3x9\lim_{x \to 9} \frac{\sqrt{x} - 3}{x - 9}

The expression with the radical is x3\sqrt{x} - 3. Its conjugate is x+3\sqrt{x} + 3. We multiply the top and bottom by this conjugate:

limx9x3x9x+3x+3\lim_{x \to 9} \frac{\sqrt{x} - 3}{x - 9} \cdot \frac{\sqrt{x} + 3}{\sqrt{x} + 3}

Now, we simplify the numerator. Remember that (ab)(a+b)=a2b2(a-b)(a+b) = a^2 - b^2. In our case, a=xa = \sqrt{x} and b=3b = 3.

limx9(x)232(x9)(x+3)=limx9x9(x9)(x+3)\lim_{x \to 9} \frac{(\sqrt{x})^2 - 3^2}{(x - 9)(\sqrt{x} + 3)} = \lim_{x \to 9} \frac{x - 9}{(x - 9)(\sqrt{x} + 3)}

We can now cancel the (x9)(x-9) terms:

limx91x+3\lim_{x \to 9} \frac{1}{\sqrt{x} + 3}
19+3=13+3=16\frac{1}{\sqrt{9} + 3} = \frac{1}{3 + 3} = \frac{1}{6}

3. Algebraic Expansion

Sometimes the path to simplification is to expand a polynomial expression. This is common when you have a term like (x+h)n(x+h)^n and you are taking the limit as h0h \to 0.

Let's find the limit:

limh0(3+h)29h\lim_{h \to 0} \frac{(3+h)^2 - 9}{h}

We need to expand the (3+h)2(3+h)^2 term:

limh0(9+6h+h2)9h=limh06h+h2h\lim_{h \to 0} \frac{(9 + 6h + h^2) - 9}{h} = \lim_{h \to 0} \frac{6h + h^2}{h}

Now we can factor an hh out of the numerator and cancel it with the denominator.

limh0h(6+h)h=limh0(6+h)\lim_{h \to 0} \frac{h(6 + h)}{h} = \lim_{h \to 0} (6 + h)

Finally, we substitute h=0h=0:

6+0=66 + 0 = 6

Putting It All Together

When you need to find a limit, always start with direct substitution. If you get a real number, you've found your answer. If you get the indeterminate form 00\frac{0}{0}, you know it's time to open your algebraic toolkit. Look at the function and decide which technique fits best: factoring for polynomials, rationalizing for radicals, or expanding for powers. By simplifying the expression, you can remove the discontinuity and find the value the function is truly approaching.

Quiz Questions 1/6

When evaluating a limit, if direct substitution results in the indeterminate form 00\frac{0}{0}, what does this signify?

Quiz Questions 2/6

Evaluate the limit: limx5x225x5\lim_{x \to 5} \frac{x^2 - 25}{x - 5}