Determining Limits Using Algebraic Properties of Limits
Why this matters
Imagine you're baking a chocolate cake for your friend Maya's birthday. You have a recipe, but you don't just throw everything into a bowl at once. You handle each ingredient separately. You measure the flour, crack the eggs, and melt the chocolate. You know how each part behaves on its own.
Finding limits is a lot like that. Sometimes you're faced with a big, complicated function that looks intimidating. Trying to figure out its limit all at once is like trying to taste the final cake by eating a spoonful of raw flour. It doesn't work and it's unpleasant!
Instead, we have a set of "recipes" or rules—the Algebraic Properties of Limits. These let us break down the complex function into its simple ingredients. We can find the limit of each small piece and then combine them correctly to get our final, delicious answer. Today, we're learning that recipe.
Concept overview
flowchart TD
A[Start: Evaluate lim(x->c) f(x)] --> B{Try Direct Substitution: Plug c into f(x)};
B --> C{What is the result?};
C --> D[A finite number, L];
D --> E[Done! The limit is L.];
C --> F[0 / 0];
F --> G[Indeterminate Form: Use Algebraic Properties];
G --> H[Factor & Cancel, Multiply by Conjugate, etc.];
C --> I[k / 0, where k is not 0];
I --> J[Vertical Asymptote: Limit is +inf, -inf, or DNE];
Core explanation
Welcome to one of the most foundational and useful topics in your calculus journey. So far, you've probably been finding limits by looking at graphs or plugging in numbers. Now, we get to build our algebraic toolkit. The goal is to solve limit problems with precision and confidence, without needing a graph.
The Building Blocks: Two Simple Limits
Everything we're about to do rests on two incredibly simple ideas.
- 1The Limit of a ConstantThe limit of a constant function is just the constant itself.
lim (x→c) k = kThink about the graph ofy = 5. It's a horizontal line. No matter what x-value you approach, the y-value is always 5.lim (x→8) 5 = 5 - 2The Limit of xThe limit of
f(x) = xasxapproachescis justc.lim (x→c) x = cThis makes perfect sense. Asxgets closer and closer toc, what value isxapproaching? Well...c.lim (x→-2) x = -2
With these two blocks, we can build castles.
The Limit Laws: Your Algebraic Toolkit
These laws, or theorems, are what let us break down complex functions. The key condition for all of them is that you must first assume that lim (x→c) f(x) = L and lim (x→c) g(x) = M both exist as finite numbers.
- 1The Sum RuleThe limit of a sum is the sum of the limits.
lim (x→c) [f(x) + g(x)] = L + M - 2The Difference RuleThe limit of a difference is the difference of the limits.
lim (x→c) [f(x) - g(x)] = L - M - 3The Constant Multiple RuleYou can pull a constant factor out of a limit.
lim (x→c) [k * f(x)] = k * L - 4The Product RuleThe limit of a product is the product of the limits.
lim (x→c) [f(x) * g(x)] = L * M - 5The Quotient RuleThe limit of a quotient is the quotient of the limits... with one major catch.
lim (x→c) [f(x) / g(x)] = L / M, provided that M ≠ 0. - 6The Power RuleThe limit of a function raised to a power is the limit of the function, raised to that power.
lim (x→c) [f(x)]ⁿ = LⁿThis works for integer powers and, as we'll see, for roots as well.
Putting It All Together: Polynomials and Rational Functions
Let's see how these rules make finding the limit of any polynomial a piece of cake.
Consider lim (x→2) [4x² - 3x + 5].
Using our rules, we can break this down:
= lim(x→2) 4x² - lim(x→2) 3x + lim(x→2) 5 (Sum/Difference Rule)
= 4 * lim(x→2) x² - 3 * lim(x→2) x + lim(x→2) 5 (Constant Multiple Rule)
= 4 * [lim(x→2) x]² - 3 * [lim(x→2) x] + lim(x→2) 5 (Power Rule)
Now we use our building blocks: lim(x→2) x = 2 and lim(x→2) 5 = 5.
= 4 * (2)² - 3 * (2) + 5
= 4 * 4 - 6 + 5 = 16 - 6 + 5 = 15
Notice something? The final answer is the same thing we would have gotten if we had just plugged x = 2 into the original function. This is called Direct Substitution, and it works for all polynomials and all rational functions (as long as the denominator isn't zero at that point). The limit laws are the mathematical proof why direct substitution works.
One-Sided Limits and Composite Functions
What about more complex situations?
One-Sided Limits (EK LIM-1.D.1)
Great news: all the rules we just discussed work exactly the same for one-sided limits. Whether you're approaching c from the right (x→c⁺) or the left (x→c⁻), you can still add, subtract, multiply, and divide the limits in the same way.
Composite Functions (EK LIM-1.D.2)
What if you have a function inside another function, like √(2x + 1)? This is a composite function.
The rule is wonderfully intuitive:
lim (x→c) f(g(x)) = f(lim (x→c) g(x))
In plain English: you can bring the limit "inside" the outer function. First, find the limit of the inner function, g(x). Then, plug that result into the outer function, f(x).
There's a subtle but critical condition here: the outer function f must be continuous at the point lim (x→c) g(x). For AP Calculus, this is almost always true for the functions you'll be given (like square roots, trig functions, or logarithms, within their domains).
Analogy Time: Think of it like a package delivery. The lim is the delivery truck, and it's carrying a package, g(x). The outer function, f, is the house. The truck drives up to the house's address, lim g(x). As long as the house f is actually there (i.e., is continuous), you can deliver the package inside.
So, for lim (x→4) √(2x + 1), you would:
- Find the limit of the inside:
lim (x→4) (2x + 1) = 2(4) + 1 = 9. - Apply the outer function to that result:
√9 = 3. The limit is 3.
These properties are your fundamental tools. Master them, and you'll be able to dismantle even the most intimidating limit problems.
Worked examples
Let's walk through a few problems together. The goal isn't just to get the answer, but to see how the limit properties justify each step.
A Straightforward Polynomial
Problem: Find lim (x→-1) (2x³ + x² - 7).
Solution: Since this is a polynomial, we know that direct substitution will work. But let's prove it to ourselves using the limit laws.
- 1Apply the Sum/Difference RuleWe can break the limit into three separate limits.
lim (x→-1) 2x³ + lim (x→-1) x² - lim (x→-1) 7 - 2Apply the Constant Multiple and Power RulesIn the first term, we can pull the
2out. For the first two terms, we can move the limit "inside" the power.2 * [lim (x→-1) x]³ + [lim (x→-1) x]² - lim (x→-1) 7 - 3Evaluate the Basic LimitsNow we have simple limits that we know how to solve.
lim (x→-1) x = -1lim (x→-1) 7 = 7
- 4Substitute and CalculatePlug these values back into our expression.
2 * (-1)³ + (-1)² - 7= 2 * (-1) + 1 - 7= -2 + 1 - 7 = -8
Why this matters: We just showed, step-by-step, why plugging x = -1 into the polynomial gives the correct limit. The limit laws are the logical foundation for the shortcut of direct substitution.
A Rational Function (Quotient Rule)
Problem: Find lim (x→3) [ (x² - 4) / (x + 1) ].
Solution: This is a rational function. Our first step is to check the denominator.
- 1Check the Denominator's LimitWe need to make sure the limit of the denominator is not zero before we can use the Quotient Rule.
lim (x→3) (x + 1) = 3 + 1 = 4Since4 ≠ 0, we're clear to use the Quotient Rule! - 2Apply the Quotient RuleThe limit of the quotient is the quotient of the limits.
[ lim (x→3) (x² - 4) ] / [ lim (x→3) (x + 1) ] - 3Evaluate the Numerator and Denominator Limits
- Numerator:
lim (x→3) (x² - 4) = (3)² - 4 = 9 - 4 = 5 - Denominator: We already found this is
4.
- Numerator:
- 4Calculate the Final Result
5 / 4
The limit is 5/4.
A Composite Function
Problem: Find lim (x→π) cos(x + sin(x)).
Solution:
This looks tricky, but it's a perfect case for the composite function rule. The outer function is f(u) = cos(u) and the inner function is g(x) = x + sin(x).
- 1Identify the RuleWe can "pass the limit inside" the cosine function because cosine is continuous everywhere.
lim (x→π) cos(x + sin(x)) = cos( lim (x→π) (x + sin(x)) ) - 2Evaluate the Inner LimitNow we just need to solve the simpler limit inside the parentheses. We can use the Sum Rule.
lim (x→π) (x + sin(x)) = lim (x→π) x + lim (x→π) sin(x)lim (x→π) x = πlim (x→π) sin(x) = sin(π) = 0So, the inner limit isπ + 0 = π.
- 3Apply the Outer FunctionWe take the result from Step 2 (
π) and plug it into our outer function,cos(u).cos(π) = -1
The limit is -1.
Why it's right: We didn't have to guess or plug in numbers close to π. We systematically found the limit of the inside part first, and then applied the outside function to that result. This is a reliable and powerful technique.
Try it yourself
Ready to try a couple on your own? Remember to think about which property applies before you start calculating.
Problem 1:
Find the value of lim (x→-2) [ (x+4)(3x-1) ].
Hint: You have a product of two functions, f(x) = x+4 and g(x) = 3x-1. What does the Product Rule say you can do? Can you use direct substitution as a shortcut here?
Problem 2:
Determine lim (x→1) (2x² + 7)³.
Hint: This is a composite function. The outer function is u³ and the inner function is 2x² + 7. What's the first step when dealing with a composite function limit?
Take your time, write out the steps, and check your reasoning. You've got this.
In simple terms, this topic is about using basic math rules—like adding, multiplying, and dividing—to break down complicated limit problems into easier, bite-sized pieces.
- LIM-1.D: Determine the limits of functions using limit theorems.
- LIM-1.D.1
- One-sided limits can be determined analytically or graphically.
- LIM-1.D.2
- Limits of sums, differences, products, quotients, and composite functions can be found using limit theorems.
flowchart TD
A[Start: Evaluate lim(x->c) f(x)] --> B{Try Direct Substitution: Plug c into f(x)};
B --> C{What is the result?};
C --> D[A finite number, L];
D --> E[Done! The limit is L.];
C --> F[0 / 0];
F --> G[Indeterminate Form: Use Algebraic Properties];
G --> H[Factor & Cancel, Multiply by Conjugate, etc.];
C --> I[k / 0, where k is not 0];
I --> J[Vertical Asymptote: Limit is +inf, -inf, or DNE];
Read what Saavi narrates
(gentle, warm intro music fades)
Hi everyone, it's Saavi from Shrutam. Let's talk about limits.
Imagine you're baking a cake. You have a recipe, and you handle each ingredient separately, right? You measure the flour, crack the eggs, melt the chocolate. You don't just throw everything into a bowl at once.
Finding limits in calculus is a lot like that. Sometimes you see a big, complicated function, and trying to solve it all at once is... well, it's not going to work.
Instead, we have a set of "recipes" or rules called the Algebraic Properties of Limits. These let us break down a complex function into its simple ingredients. We can find the limit of functions that are added, subtracted, multiplied, or divided by finding the limits of their individual parts first. It’s a toolkit that makes hard problems manageable.
Let's try one together. What is the limit of two x-cubed plus x-squared minus seven... as x approaches negative one?
Okay, since this is a polynomial, we can use our properties. The Sum and Difference rules let us break this into three smaller problems: the limit of two x-cubed... plus the limit of x-squared... minus the limit of seven.
Now, for the first part, the limit of two x-cubed, we can pull that two out in front. So it's two times the limit of x-cubed.
We can do this for each piece, but what we find is that we can just substitute negative one everywhere we see an x. This is called Direct Substitution, and the limit properties are what prove it works!
So, we get two times negative one cubed... plus negative one squared... minus seven.
That's two times negative one... which is negative two. Plus one. Minus seven.
Negative two plus one is negative one. Minus seven is negative eight. And that's our limit. See? We followed the recipe.
Now, here's a really common mistake I see all the time. It's with fractions. If you have to find the limit of a fraction, and the denominator's limit is zero... you cannot use the Quotient Rule. You can't just divide the limits. Getting a zero in the denominator is a signal to stop, and do more algebra. It doesn't mean the limit is zero or undefined... it means you have more detective work to do. We'll get to that in our next lesson.
For now, remember these properties are your friends. They turn messy problems into neat, orderly steps. Keep practicing, and you'll see they're not so scary after all.
(outro music begins to fade in)
You're building a really strong foundation. Keep up the great work.
The Quotient Rule explicitly states it cannot be used if the denominator's limit is zero. The expression `0/0` is an indeterminate form, not a final answer.
When you get `0/0` from direct substitution, you must do more algebra. Factor the denominator to `(x-2)(x+2)`, cancel the `(x-2)` terms, and then re-evaluate the limit of `1/(x+2)` at `x=2`.
`0/0` is an "indeterminate form," which is a signal that you need to do more work. The limit could be any number, or it could be `∞`, `-∞`, or DNE.
Recognize `0/0` as a green light for more algebraic manipulation: factoring, multiplying by the conjugate, or using L'Hôpital's Rule later in the course.
While the conclusion might be correct in some cases, the method is invalid. You cannot arithmetically add "DNE". The Sum Rule does not apply if one of the component limits does not exist.
You must use a different method, like the Squeeze Theorem, to evaluate such a limit. Don't apply the property rules unless both `lim f(x)` and `lim g(x)` are known, finite numbers.
The process is almost right, but it ignores the domain. The function `f(x) = √(x-10)` is not defined for any real numbers close to `x=9`. Therefore, the limit does not exist.
Always consider the domain of the function first. Since `x` is approaching 9, values near 9 (like 9.01 or 8.99) result in a negative number under the square root, so the function isn't defined there. The limit does not exist.
This is a subtle one because the answer is the same, but the property is misapplied. The Power Rule applies to the *entire function* inside the limit.
Apply the Power Rule correctly: `[lim (x→4) (x+5)]²`. First, evaluate the limit inside the brackets (`4+5=9`), then apply the power (`9²=81`).