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

Selecting Procedures for Determining Limits

Lesson ~10 min read

In simple terms: In simple terms, selecting procedures for determining limits is about creating a mental checklist to decide which tool to use for any limit problem you see.

Why this matters

Imagine you’re helping your friend Marcus move into his new apartment in Chicago. You’ve got a whole toolkit: a power drill, a tiny screwdriver, a wrench, and a sledgehammer. When you see he needs to hang a picture frame, you don’t grab the sledgehammer, right? You pick the tool that fits the job.

Solving limits in calculus is exactly the same. By now, you’ve learned several different techniques: direct substitution, factoring, using conjugates, and more. The challenge isn't just knowing how to use each tool, but when. A problem that looks intimidating might have a simple one-step solution, while another might require more finesse.

This lesson is about building your mental toolkit. We’re going to create a step-by-step strategy, a decision-making flowchart, so that when you face any limit problem on the AP exam, you can confidently and efficiently pick the right tool for the job.

Concept overview

flowchart TD
    A[Start: See a limit problem] --> B{Try Direct Substitution};
    B --> C{What is the result?};
    C -- Real Number --> D[Done! That's the limit.];
    C -- Number/0 --> E[Vertical Asymptote. Investigate signs from left/right.];
    C -- 0/0 Indeterminate Form --> F{Analyze the function's structure};
    F --> G[Rational Function?] -- Yes --> H[Factor & Cancel];
    F --> I[Contains a square root?] -- Yes --> J[Multiply by Conjugate];
    F --> K[Trigonometry as x->0?] -- Yes --> L[Use Special Trig Limits];
    F --> M[Oscillating/Complex?] -- Yes --> N[Try Squeeze Theorem];
    H --> B;
    J --> B;
    L --> B;
This diagram shows a flowchart for solving limits. It starts with "Try Direct Substitution." Based on the result—a real number, division by zero, or 0/0—it branches to different strategies like "Factor & Cancel," "Multiply by Conjugate," or "Use Special Trig Limits."

Core explanation

Alright, let's build our strategy. Think of this as the order of operations for limits. Following this sequence will save you time and prevent you from doing unnecessary, complicated work.

Step 1: The Golden Rule — Always Try Direct Substitution First

This is your first, best, and simplest tool. Always, always, always start by plugging the value that x is approaching directly into the function.

  • If you get a real number, you’re done. That’s your answer.
  • If you get a number divided by zero (like 5/0), the limit is likely an infinite limit (either , -∞, or it does not exist because the sides disagree). You'll need to investigate the signs from the left and right.
  • If you get 0/0 (or later, ∞/∞), this is an indeterminate form. This is not the answer! It's a green light telling you that more work is needed.

Step 2: The Indeterminate Form (0/0) Playbook

So, direct substitution gave you 0/0. What now? Look at the structure of the function to decide your next move.

Scenario A: It's a Rational Function (or looks like one)

If your function is a polynomial divided by another polynomial, your go-to move is Factoring and Canceling.

The reason 0/0 happened is that both the numerator and the denominator share a common factor that becomes zero at the value x is approaching. Your job is to find that factor and cancel it out.

For example, if you have lim (x→2) [ (x² - 4) / (x - 2) ]:

  • Plugging in 2 gives (4 - 4) / (2 - 2) = 0/0.
  • The structure is a polynomial over a polynomial. Let's factor.
  • lim (x→2) [ (x - 2)(x + 2) / (x - 2) ]
  • Cancel the (x - 2) terms. Now you have lim (x→2) [ x + 2 ].
  • Now, try direct substitution again: 2 + 2 = 4. The limit is 4.

Scenario B: It Involves a Square Root

If you see a square root in the numerator or denominator, and you've hit the 0/0 wall, think Multiply by the Conjugate.

The conjugate is the same expression but with the middle sign flipped. For example, the conjugate of (√x - 3) is (√x + 3). Multiplying by the conjugate (in both the numerator and denominator, of course!) often clears up the square root and reveals the problematic factor you need to cancel.

It feels like a magic trick, but it's just a clever use of the difference of squares formula: (a - b)(a + b) = a² - b².

Scenario C: It Involves Trigonometry

If you see sin(x) or cos(x) and you're heading to 0/0 as x→0, you should immediately check if you can use one of the two Special Trigonometric Limits:

  1. lim (x→0) [ sin(x) / x ] = 1
  2. lim (x→0) [ (1 - cos(x)) / x ] = 0

You often have to do some algebraic manipulation to get your problem to look exactly like one of these forms. For example, to solve lim (x→0) [ sin(3x) / x ], you need the denominator to be 3x. You can achieve this by multiplying the top and bottom by 3.

Step 3: The "It's Complicated" Toolkit

The Squeeze Theorem

You'll usually see this with functions that oscillate wildly as they approach a point, like sin(1/x) or cos(1/x). The function itself never settles down, but it might be "squeezed" between two other, simpler functions that do approach the same limit.

If you have a function g(x) that's always between f(x) and h(x), and f(x) and h(x) both approach the same limit L, then g(x) must also approach L. Think of it like two friends, Priya and Jordan, walking down a hallway and holding hands with their smaller friend, Maya, between them. If Priya and Jordan both walk through the same doorway, Maya has no choice but to go through it too.

Analyzing a Graph or Table

Sometimes, the problem won't even give you a function! It will give you a graph or a table of values. In this case, you're an investigator.

  • For a graph
    Look at the y-value the function is approaching as you trace it from the left side and the right side of the target x-value. If they meet at the same y-value, that's your limit. (Remember, the limit doesn't care if there's a hole or a different value at the point itself!)
  • For a table
    Look at the y-values as the x-values get closer and closer to your target from both above and below. Are the y-values zeroing in on a single number? That's your limit.

This strategic approach turns limit problems from a guessing game into a clear, logical process.

Worked examples

Let's put our decision-making process into action with a few examples. For each one, I'll talk you through not just what I'm doing, but why I chose that specific method.


Example 1

The Deceptive-Looking Limit

Problem: Find the limit: lim (x→1) [ (x² + 3x - 1) / (cos(πx)) ]

Solution Walkthrough:

  1. 1
    Analyze the Problem
    My eyes are immediately drawn to the cos(πx). It's a fraction. It looks a little complicated. My first instinct might be to panic.
  2. 2
    Follow the Strategy
    What's Rule #1? Always try direct substitution first. Let's plug in x = 1 and see what happens before we do anything more difficult.
    • Numerator: (1)² + 3(1) - 1 = 1 + 3 - 1 = 3
    • Denominator: cos(π * 1) = cos(π) = -1
  3. 3
    Evaluate the Result
    We get 3 / -1 = -3. This is a perfectly good real number. We didn't get 0/0. We didn't get 5/0.
  4. 4
    Conclusion
    The limit is -3.

Why this is a key example: Many students would see this and immediately assume it's a complex problem. They might look for special trig limits or try to factor something. But by sticking to the plan and trying the simplest method first, we found the answer in one step.


Example 2

The Classic Factor and Cancel

Problem: Find the limit: lim (x→-3) [ (x² + x - 6) / (x² - 9) ]

Solution Walkthrough:

  1. 1
    Analyze and Substitute
    It's a rational function. Let's try direct substitution with x = -3.
    • Numerator: (-3)² + (-3) - 6 = 9 - 3 - 6 = 0
    • Denominator: (-3)² - 9 = 9 - 9 = 0
  2. 2
    Evaluate the Result
    We get 0/0. This is our signal that more work is needed.
  3. 3
    Choose the Right Tool
    The function is a polynomial over a polynomial. This is a textbook case for the Factor and Cancel method.
  4. 4
    Execute the Method
    • Factor the numerator: x² + x - 6 = (x + 3)(x - 2)
    • Factor the denominator (difference of squares): x² - 9 = (x + 3)(x - 3)
    • Rewrite the limit: lim (x→-3) [ ((x + 3)(x - 2)) / ((x + 3)(x - 3)) ]
  5. 5
    Cancel and Re-evaluate
    The (x + 3) terms are the culprits causing the 0/0. Let's cancel them.
    • lim (x→-3) [ (x - 2) / (x - 3) ]
    • Now, try direct substitution again on this simplified function:
    • (-3 - 2) / (-3 - 3) = -5 / -6 = 5/6
  6. 6
    Conclusion
    The limit is 5/6.

Where students go wrong: The most common error here is an algebra mistake during factoring. Double-check your factors to make sure they multiply back to the original polynomial.

Try it yourself

Time to be the mechanic and pick the right tool from your kit. Give these a try.


Problem 1: Find the limit: lim (x→4) [ (√x - 2) / (x - 4) ]


Problem 2: Find the limit: lim (x→0) [ sin(5x) / (2x) ]