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

Determining Limits Using Algebraic Properties of Limits

Lesson ~10 min read

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

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];
This diagram is a flowchart showing the decision-making process for evaluating limits. It starts with trying direct substitution, then branches based on the result: a finite number means you're done, 0/0 means you must use algebraic properties, and a non-zero number over 0 indicates a vertical asymptote.

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.

  1. 1
    The Limit of a Constant
    The limit of a constant function is just the constant itself. lim (x→c) k = k Think about the graph of y = 5. It's a horizontal line. No matter what x-value you approach, the y-value is always 5. lim (x→8) 5 = 5
  2. 2
    The Limit of x
    The limit of f(x) = x as x approaches c is just c. lim (x→c) x = c This makes perfect sense. As x gets closer and closer to c, what value is x approaching? 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.

  1. 1
    The Sum Rule
    The limit of a sum is the sum of the limits. lim (x→c) [f(x) + g(x)] = L + M
  2. 2
    The Difference Rule
    The limit of a difference is the difference of the limits. lim (x→c) [f(x) - g(x)] = L - M
  3. 3
    The Constant Multiple Rule
    You can pull a constant factor out of a limit. lim (x→c) [k * f(x)] = k * L
  4. 4
    The Product Rule
    The limit of a product is the product of the limits. lim (x→c) [f(x) * g(x)] = L * M
  5. 5
    The Quotient Rule
    The 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.
  6. 6
    The Power Rule
    The 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:

  1. Find the limit of the inside: lim (x→4) (2x + 1) = 2(4) + 1 = 9.
  2. 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.

Example 1

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.

  1. 1
    Apply the Sum/Difference Rule
    We can break the limit into three separate limits. lim (x→-1) 2x³ + lim (x→-1) x² - lim (x→-1) 7
  2. 2
    Apply the Constant Multiple and Power Rules
    In the first term, we can pull the 2 out. 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
  3. 3
    Evaluate the Basic Limits
    Now we have simple limits that we know how to solve.
    • lim (x→-1) x = -1
    • lim (x→-1) 7 = 7
  4. 4
    Substitute and Calculate
    Plug 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.

Example 2

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.

  1. 1
    Check the Denominator's Limit
    We 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 = 4 Since 4 ≠ 0, we're clear to use the Quotient Rule!
  2. 2
    Apply the Quotient Rule
    The limit of the quotient is the quotient of the limits. [ lim (x→3) (x² - 4) ] / [ lim (x→3) (x + 1) ]
  3. 3
    Evaluate the Numerator and Denominator Limits
    • Numerator: lim (x→3) (x² - 4) = (3)² - 4 = 9 - 4 = 5
    • Denominator: We already found this is 4.
  4. 4
    Calculate the Final Result
    5 / 4

The limit is 5/4.

Example 3

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

  1. 1
    Identify the Rule
    We 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)) )
  2. 2
    Evaluate the Inner Limit
    Now 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(π) = 0 So, the inner limit is π + 0 = π.
  3. 3
    Apply the Outer Function
    We 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 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.