c Calculus I - Lecture 5: Section 2.3 Calculating Limits Using the Limit Laws

Lecture 5: Calculating Limits Using the Limit Laws

Welcome back. In our last lecture, we developed an intuition for what a limit is by using tables and graphs to estimate its value. While this is a great way to understand the concept, it can be slow and sometimes imprecise. Today, we move from estimation to calculation. We will learn a set of powerful algebraic rules called the Limit Laws that allow us to calculate limits exactly and efficiently. 🚀


Topic 1: The Limit Laws

Suppose that $c$ is a constant and that the limits $\lim_{x \to a} f(x)$ and $\lim_{x \to a} g(x)$ both exist. Then we have the following laws:

The Limit Laws (Theorem)

  1. Sum Law: $\lim_{x \to a} [f(x) + g(x)] = \lim_{x \to a} f(x) + \lim_{x \to a} g(x)$
  2. Difference Law: $\lim_{x \to a} [f(x) - g(x)] = \lim_{x \to a} f(x) - \lim_{x \to a} g(x)$
  3. Constant Multiple Law: $\lim_{x \to a} [c \cdot f(x)] = c \cdot \lim_{x \to a} f(x)$
  4. Product Law: $\lim_{x \to a} [f(x) \cdot g(x)] = \lim_{x \to a} f(x) \cdot \lim_{x \to a} g(x)$
  5. Quotient Law: $\lim_{x \to a} \frac{f(x)}{g(x)} = \frac{\lim_{x \to a} f(x)}{\lim_{x \to a} g(x)}$, provided $\lim_{x \to a} g(x) \neq 0$
  6. Power Law: $\lim_{x \to a} [f(x)]^n = \left[\lim_{x \to a} f(x)\right]^n$, where $n$ is a positive integer.
  7. Root Law: $\lim_{x \to a} \sqrt[n]{f(x)} = \sqrt[n]{\lim_{x \to a} f(x)}$, where $n$ is a positive integer. (If $n$ is even, we assume $\lim_{x \to a} f(x) > 0$).

These laws are built upon two foundational limits: $\lim_{x \to a} c = c$ and $\lim_{x \to a} x = a$.

Example 1

Use the Limit Laws to evaluate $\lim_{x \to 3} (2x^2 - 5x + 1)$.

$$ \begin{align*} \lim_{x \to 3} (2x^2 - 5x + 1) &= \lim_{x \to 3} (2x^2) - \lim_{x \to 3} (5x) + \lim_{x \to 3} (1) & & \text{ (Laws 1 & 2)} \\ &= 2 \lim_{x \to 3} (x^2) - 5 \lim_{x \to 3} (x) + \lim_{x \to 3} (1) & & \text{ (Law 3)} \\ &= 2 \left(\lim_{x \to 3} x\right)^2 - 5 \lim_{x \to 3} (x) + \lim_{x \to 3} (1) & & \text{ (Law 6)} \\ &= 2(3)^2 - 5(3) + 1 & & \text{ (Direct Substitution)} \\ &= 18 - 15 + 1 = 4 \end{align*} $$

This detailed process confirms that for any polynomial, we can find the limit by simply substituting the value of $x$.

Check Your Understanding

Problem: Given that $\lim_{x \to a} f(x) = 9$ and $\lim_{x \to a} g(x) = -2$, find the value of $\lim_{x \to a} \frac{2f(x) - g(x)}{\sqrt{f(x)}}$.


Topic 2: One-Sided Limits

So far, we've been looking at the overall limit of a function as $x$ approaches a value $a$. But what if we only care about the path from one side? The concept of a one-sided limit allows us to be more precise about a function's behavior.

We use the notation $x \to a^-$ to mean "$x$ approaches $a$ from the left" (through values less than $a$) and $x \to a^+$ to mean "$x$ approaches $a$ from the right" (through values greater than $a$).

Theorem 1: The Existence of a Limit

The two-sided limit $\lim_{x \to a} f(x) = L$ exists if and only if both one-sided limits exist and are equal:

$$ \lim_{x \to a^-} f(x) = L \quad \text{and} \quad \lim_{x \to a^+} f(x) = L $$

In simple terms: The path from the left and the path from the right must meet at the exact same point for the overall limit to exist.

Example: A Graphical Look at One-Sided Limits

Consider the graph of the piecewise function $g(x)$ shown below.

Let's find the limits as $x \to 2$.

  • As we approach $x=2$ from the left (following the parabola), the y-values get closer and closer to 3. So, $\lim_{x \to 2^-} g(x) = 3$.
  • As we approach $x=2$ from the right (following the line), the y-values get closer and closer to 1. So, $\lim_{x \to 2^+} g(x) = 1$.
  • Because the limit from the left (3) does not equal the limit from the right (1), we conclude that the two-sided limit $\lim_{x \to 2} g(x)$ does not exist.

Example: An Algebraic Look at One-Sided Limits

Let's find the limit of $f(x) = \frac{x-3}{|x-3|}$ as $x \to 3$.

(a) Limit from the right ($x \to 3^+$):

If $x > 3$, then $x-3$ is positive, so $|x-3| = x-3$. Therefore:

$$ \lim_{x \to 3^+} \frac{x-3}{|x-3|} = \lim_{x \to 3^+} \frac{x-3}{x-3} = \lim_{x \to 3^+} 1 = 1 $$

(b) Limit from the left ($x \to 3^-$):

If $x < 3$, then $x-3$ is negative, so $|x-3| = -(x-3)$. Therefore:

$$ \lim_{x \to 3^-} \frac{x-3}{|x-3|} = \lim_{x \to 3^-} \frac{x-3}{-(x-3)} = \lim_{x \to 3^-} -1 = -1 $$

Since the left-hand limit ($-1$) does not equal the right-hand limit ($1$), the overall limit does not exist.

Check Your Understanding

Problem: Let $f(x) = \frac{x+5}{x-2}$. Find the one-sided limits as $x$ approaches 2.

  1. Find $\lim_{x \to 2^+} f(x)$. (Hint: Consider values like $x=2.1, 2.01$. Is the denominator positive or negative?)
  2. Find $\lim_{x \to 2^-} f(x)$. (Hint: Consider values like $x=1.9, 1.99$. Is the denominator positive or negative?)

Topic 3: Direct Substitution and Algebraic Manipulation

For polynomials and rational functions, calculating a limit is as simple as plugging in the value, as long as it doesn't make the denominator zero. This is called the Direct Substitution Property.

However, if direct substitution gives you the indeterminate form $\frac{0}{0}$, you must perform more steps. The goal is always to algebraically manipulate the function so that you can cancel the term causing the zero in the denominator.

Example: Factoring and Canceling

Calculate the limit $\lim_{x \to -2} \frac{x^2+5x+6}{x+2}$.

Direct substitution gives $\frac{0}{0}$. We must simplify by factoring the numerator:

$$ \lim_{x \to -2} \frac{(x+2)(x+3)}{x+2} = \lim_{x \to -2} (x+3) = -2 + 3 = 1 $$

Check Your Understanding

Problem: Let $f(x) = x^2$.

  1. Compute the slope of the secant line connecting the point $(2, 4)$ to the point $(2+h, f(2+h))$.
  2. Using your result from part (a), compute the limit of the slope as $h \to 0$.

Topic 4: The Squeeze Theorem

What if we can't calculate a limit directly, but we can trap or "squeeze" our difficult function between two simpler functions whose limits are the same? This is the idea behind the Squeeze Theorem.

The Squeeze Theorem

If $f(x) \le g(x) \le h(x)$ when $x$ is near $a$, and $\lim_{x \to a} f(x) = \lim_{x \to a} h(x) = L$, then $\lim_{x \to a} g(x) = L$.

Example

Show that $\lim_{x \to 0} x^2 \sin(\frac{1}{x}) = 0$.

We cannot use the Product Law because $\lim_{x \to 0} \sin(\frac{1}{x})$ does not exist. But we know that $-1 \le \sin(\frac{1}{x}) \le 1$. Multiplying by $x^2$ (which is non-negative) gives:

$$ -x^2 \le x^2 \sin(\frac{1}{x}) \le x^2 $$

Since $\lim_{x \to 0} (-x^2) = 0$ and $\lim_{x \to 0} (x^2) = 0$, our function is squeezed between two functions that both approach 0. By the Squeeze Theorem, our limit must also be 0.


Final Practice: Applying the Limit Laws

For the following problems, find the limit using algebraic techniques. It's important to know how to do this for an exam. For these problems, you can also use Desmos to plot the graph and visually confirm your answer.

Practice Problem #1

Given $\lim_{x \to 2} f(x) = 5$ and $\lim_{x \to 2} g(x) = -3$, find $\lim_{x \to 2} [4f(x) - g(x)]$.

Practice Problem #2

Find the limit: $\lim_{u \to -2} \sqrt{9-u^3 + 2u^2}$.

Practice Problem #3

Find the limit: $\lim_{x \to 3} \frac{1/x - 1/3}{x-3}$.


Conclusion

Today we established a powerful set of rules for calculating limits algebraically. The Limit Laws, combined with techniques like factoring and conjugates, allow us to solve for exact limits without relying on tables or graphs. We also introduced the Squeeze Theorem, a clever tool for dealing with tricky functions. These methods form the bedrock for our next major topic: continuity.