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 algebra rules to solve limit problems, letting you break down complex functions into simple, manageable pieces.

Why this matters

Imagine you're building a complex LEGO set—say, the Millennium Falcon. You don't just stare at the 7,500 pieces and hope for the best. You follow the instruction booklet, which tells you how to connect small groups of pieces first. You build the cockpit, then the landing gear, then the main body. By combining these smaller, completed sections, you create the final masterpiece.

Finding limits algebraically works the same way. Instead of getting overwhelmed by a complicated function, we have a set of "limit laws" that act as our instruction booklet. They let us break the big problem down into smaller, bite-sized pieces, solve each one, and then put them back together to find our final answer. In this lesson, we'll master those rules.

Concept overview

flowchart TD
    A[Start: Given lim(x->c) f(x)] --> B{Is f(x) a polynomial, rational, or radical function?};
    B -->|Yes| C[Try Direct Substitution: Plug c into f(x)];
    C --> D{Does this give a real number?};
    D -->|Yes| E[Done! This is the limit.];
    D -->|No, gives 0/0| F[Indeterminate Form. Use algebra from next lesson (e.g., factoring).];
    B -->|No, it's a combination| G{Is f(x) a sum, product, or quotient?};
    G -->|Yes| H[Apply the correct Limit Law (Sum, Product, Quotient Rule)];
    H --> I[Evaluate the simpler limits];
    I --> E;
This diagram shows a flowchart for evaluating limits using algebraic properties. The process begins by checking if direct substitution is possible. If it yields a real number, that is the limit; if it yields 0/0, more algebra is needed. If the function is a combination, the flowchart advises using limit laws to simplify the problem.

Core explanation

Alright, let's get to it. So far, you've probably found limits by looking at a graph or plugging numbers into a table. That’s a great way to build intuition. But now, we're going to develop a more powerful and precise toolkit: the algebraic properties of limits. Think of this as moving from an artist's sketch of a building to the architect's final blueprint.

The Foundation: Two Basic Limits

Before we build anything big, we need a solid foundation. Almost every rule we're about to learn relies on these two simple ideas:

  1. 1
    The Limit of a Constant
    The limit of a constant is just the constant itself. lim (x→c) k = k This makes perfect sense. If you have the function f(x) = 5, the y-value is always 5, no matter what x is approaching.
  2. 2
    The Limit of x
    The limit of x as x approaches c is c. lim (x→c) x = c Again, this is very intuitive. As x gets closer and closer to the number 2, what value is x approaching? It's approaching 2.

With these two bricks, we can build the entire house.

The Limit Laws: Your Instruction Booklet

These laws are what the College Board calls "limit theorems." Don't let the fancy name intimidate you. These are mostly common-sense rules for how limits behave with standard arithmetic operations.

Let's assume we know that lim (x→c) f(x) = L and lim (x→c) g(x) = M.

  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 In other words, you can find the limit of each piece separately and then add them up.
  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 multiplier out in front of the limit. lim (x→c) [k * f(x)] = k * L This is incredibly useful. If you need to find the limit of 5x², you can just find the limit of and multiply the result by 5.
  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 huge condition. lim (x→c) [f(x) / g(x)] = L / M, as long as M ≠ 0.
  6. 6
    The Power Rule
    To find the limit of a function raised to a power, you can just find the limit of the function first, then apply the power. lim (x→c) [f(x)]ⁿ = Lⁿ This works for roots, too, since a square root is just a power of 1/2.

The Payoff: Direct Substitution

So, what's the point of all these rules? Let's see what happens when we combine them to find the limit of a simple polynomial, like lim (x→2) (4x² - 2x + 1).

  • Using the Sum and Difference Rules, we can break it apart: lim (x→2) 4x² - lim (x→2) 2x + lim (x→2) 1
  • Using the Constant Multiple Rule, we can pull out the constants: 4 * lim (x→2) x² - 2 * lim (x→2) x + lim (x→2) 1
  • Using the Power Rule and our two basic limits: 4 * (2)² - 2 * (2) + 1
  • Now, it's just arithmetic: 4 * 4 - 4 + 1 = 16 - 4 + 1 = 13

Notice something amazing? The final answer is exactly what you would have gotten if you had just plugged x = 2 into the original function from the very beginning.

4(2)² - 2(2) + 1 = 13

This is called Direct Substitution. For functions that are "continuous" at a point (like polynomials, rational functions in their domain, radicals, and trig functions), finding the limit is as simple as plugging the value c into the function. The limit laws we just learned are the rigorous mathematical proof why this shortcut works.

One-Sided Limits and Composite Functions

What about one-sided limits? Good news: all these laws work exactly the same for one-sided limits. The limit from the right of a sum is the sum of the limits from the right. Simple.

The last rule is for composite functions, like f(g(x)).

  • Composite Function Rule: lim (x→c) f(g(x)) = f(lim (x→c) g(x)) This looks complicated, but the idea is simple: you can "push" the limit inside the outer function. You find the limit of the inner function first, and then you plug that result into the outer function. This works as long as the outer function f is continuous at the limit of the inner function.

For example, to find lim (x→3) √(x² + 7):

  1. First, find the limit of the inside part: lim (x→3) (x² + 7) = 3² + 7 = 16.
  2. Now, apply the outer function (the square root) to that result: √16 = 4. So, the limit is 4.

You've got the tools. Now let's put them to work.

Worked examples

Let's walk through a few problems together. The goal here isn't just to get the answer, but to understand the process and the why behind each step.


Example 1

A Straightforward Rational Function

Problem: Find the limit: lim (x→-1) (x² + 5x) / (x + 3)

Solution:

  1. 1
    Analyze the function
    We have a rational function (a polynomial divided by a polynomial). Our first thought should always be: can we use Direct Substitution? This is only possible if the denominator is not zero at the limit point.
  2. 2
    Check the denominator
    Let's find the limit of the denominator by itself. lim (x→-1) (x + 3) Using our rules (or the Direct Substitution shortcut), we plug in x = -1: (-1) + 3 = 2 The limit of the denominator is 2, which is not zero. Great! This means the Quotient Rule is valid, and we can proceed.
  3. 3
    Apply the Quotient Rule
    The rule says the limit of the quotient is the quotient of the limits. lim (x→-1) (x² + 5x) / lim (x→-1) (x + 3)
  4. 4
    Evaluate the numerator and denominator separately
    • Numerator
      lim (x→-1) (x² + 5x) = (-1)² + 5(-1) = 1 - 5 = -4
    • Denominator
      We already found this: lim (x→-1) (x + 3) = 2
  5. 5
    Combine the results
    (-4) / 2 = -2

Final Answer: The limit is -2.

Common Mistake Check: A student might see the fraction and immediately think the problem is complicated. They might try to factor or do other unnecessary algebra. The key is to always check if Direct Substitution works first. If the denominator isn't zero, it's your best friend.


Example 2

A Product with a Radical

Problem: Find the limit: lim (x→4) (2x * √(x+5))

Solution:

  1. 1
    Analyze the function
    This is a product of two functions: f(x) = 2x and g(x) = √(x+5). This tells us we can use the Product Rule.
  2. 2
    Apply the Product Rule
    The limit of a product is the product of the limits. [lim (x→4) 2x] * [lim (x→4) √(x+5)]
  3. 3
    Solve the first limit
    This is a simple linear function. lim (x→4) 2x = 2 * 4 = 8
  4. 4
    Solve the second limit
    This involves a radical (a composite function). We can "push" the limit inside the square root. lim (x→4) √(x+5) = √[lim (x→4) (x+5)] Now, solve the limit inside: lim (x→4) (x+5) = 4 + 5 = 9 And apply the square root: √9 = 3
  5. 5
    Combine the results
    Now we multiply the results from steps 3 and 4. 8 * 3 = 24

Final Answer: The limit is 24.

Try it yourself

Ready to try a couple on your own? Remember the process: identify the type of function, check if Direct Substitution is possible, and apply the appropriate limit laws.

  1. 1
    Problem
    Find lim (x→-2) (x³ - 3x + 4)
    • Hint: What kind of function is this? What's the most direct route to the answer for this type of function?
  2. 2
    Problem
    Find lim (x→1) [(x² + 1) * (3x - 1)]
    • Hint: You have two functions being multiplied together. Which limit law lets you break this into two simpler problems? Solve each one and then combine them.

Check your answers with a friend or your teacher. You've got this!