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

Defining Limits and Using Limit Notation

Lesson ~10 min read

In simple terms: In simple terms, defining a limit is about predicting a function's Y-value as you get incredibly close to a specific X-value, without actually landing on it.

Why this matters

Imagine you're playing a video game. Your character, Maya, is running along a path represented by a function. There's a glowing treasure chest at the coordinate where x = 5. You want to know the exact height (the y-value) of the treasure chest. But there's a catch: a tiny, invisible gap in the path right at x = 5. Maya can stand at x = 4.9, or x = 4.999, or x = 5.001, getting closer and closer from both sides.

By looking at the height of the path as she approaches x = 5, you can predict the exact height where the treasure should be, even if she can't stand on that exact spot. That prediction is a limit. It’s the language we use to talk about what’s happening at a point by exploring its neighborhood.

Concept overview

flowchart TD
    A["Start with the statement: lim f(x) = R as x->c"] --> B{Identify the 4 parts};
    B --> C["f(x): The function being analyzed"];
    B --> D["x -> c: The input 'x' is approaching 'c'"];
    B --> E["R: The resulting limit value"];
    B --> F["lim: The operation itself"];
    D --> G["Key Insight: 'x' gets close to 'c' but does NOT equal 'c'"];
    G --> H["Conclusion: As the input gets very near 'c', the output gets very near 'R'"];
    H --> I["This is true even if f(c) is undefined or is a different value!"];
This diagram is a flowchart that breaks down how to interpret a limit statement. It starts with the full notation, separates it into its four components (the limit operation, the function, the approach value, and the result), and flows to the key insight that x does not equal c, concluding that the limit describes the behavior near a point, regardless of the function's actual value at that point.

Core explanation

Hello! I’m Saavi, and I’m so glad you’re here. We're about to build the absolute bedrock of calculus together: the concept of a limit. It might feel a little strange at first, but I promise it will click.

What is a Limit, Really?

In algebra, you often find the value of a function at a certain point by plugging it in. For f(x) = x + 2, if you want to know the value at x = 3, you just calculate f(3) = 3 + 2 = 5. Simple.

Calculus, however, is interested in a slightly different, more powerful question:

What value does the function approach as x gets infinitely close to a certain number?

This "approaching" is the key. A limit is a prediction. It's the y-value we expect to see based on the trend of the points nearby.

Think of it like being a detective at a crime scene. You can't rewind time to see the exact moment a window was broken (x = c). But you can study the moments leading right up to it and the moments immediately after. By getting closer and closer to that instant from both sides, you can deduce what happened at that moment. The limit is your deduction.

Introducing the Formal Notation

Mathematicians needed a clear, universal way to write this idea down. This is the notation you must know:

lim f(x) = R
x→c

Let's break that down piece by piece. It's not as scary as it looks.

  • lim: This is just an abbreviation for limit. When you see it, it signals that we're not just plugging in a number. We're doing that "approaching" thing.
  • x → c: This is read as "x approaches c". c is the specific x-value we're interested in (like x = 5 in our video game hook). The arrow means we're letting x get super, duper close to c from both sides. Think 4.9, 4.99, 4.999... and 5.1, 5.01, 5.001.
  • f(x): This is our function—the path our video game character is on, the equation we're investigating.
  • = R: This states that the result of this whole process is R (a Real number). R is the value that f(x) gets closer and closer to as x gets closer and closer to c. R is our prediction.

So, putting it all together, lim f(x) = R as x→c is read as: "The limit of f(x) as x approaches c is R."

The Most Important Rule

Here is the single most important detail about limits, and the one that trips up the most students.

When we evaluate a limit as x approaches c, we do not care about the value of the function at x = c.

Read that again. The limit is about the journey, not the destination. It's about what happens near c, not at c. The function could be perfectly normal at c, have a hole there, or have a totally different value. The limit doesn't care.

Let's look at a classic example. Consider the function f(x) = (x² - 4) / (x - 2).

What happens at x = 2? If we try to plug it in, we get (4 - 4) / (2 - 2) = 0/0. This is undefined! There's a hole in the graph at x = 2. Algebra tells us to stop.

But calculus asks a better question: What is the limit as x approaches 2? Let's see what happens when x is close to 2:

  • If x = 1.9, f(1.9) = 3.9
  • If x = 1.99, f(1.99) = 3.99
  • If x = 2.01, f(2.01) = 4.01
  • If x = 2.001, f(2.001) = 4.001

Do you see the pattern? As x gets closer and closer to 2 from both sides, the y-value f(x) gets closer and closer to 4.

So, we can confidently state:

lim (x² - 4)/(x - 2) = 4
x→2

Even though f(2) is undefined, the limit is 4. The limit fills in the hole. It tells us the value that should be there based on all the surrounding points. This is the power of limits and the first big step into calculus.

Worked examples

Let's walk through a couple of examples to make this concrete. The goal here isn't to calculate tricky limits yet, but to understand what the notation is telling us.


Example 1: Translating Limit Notation into Words

  • Problem
    Your friend Jordan writes down lim (3x - 1) = 8 as x→3. In plain English, what does this statement mean about the function f(x) = 3x - 1?
  • Solution Walkthrough
    1. 1
      Identify the pieces
      Let's dissect the notation:
      • The function is f(x) = 3x - 1.
      • The x-value being approached is c = 3.
      • The predicted y-value (the limit) is R = 8.
    2. 2
      Form the sentence
      We use the standard phrasing: "The limit of [the function] as x approaches [the number] is [the result]."
    3. 3
      Translate
      Plugging our pieces in, we get: "The limit of 3x - 1 as x approaches 3 is 8."
    4. 4
      Explain the meaning
      This is the most important part. It means that if you plug in x-values that are extremely close to 3 (like 2.999 or 3.001), the output of the function 3x - 1 will get extremely close to 8. In this case, f(3) also happens to be 8, but the limit is concerned with the approaching behavior.

Example 2: Interpreting a Limit with a Hole

  • Problem
    You are given the statement: lim (x² - 25)/(x + 5) = -10 as x→-5. Explain what this means, paying close attention to the function's value at x = -5.
  • Solution Walkthrough
    1. 1
      Interpret the statement first
      Just like before, this means: "As the input x gets arbitrarily close to -5, the output of the function (x² - 25)/(x + 5) gets arbitrarily close to -10."
    2. 2
      Investigate the function at the point
      Now, let's check what happens if we try to plug x = -5 directly into the function f(x) = (x² - 25)/(x + 5). f(-5) = ((-5)² - 25) / (-5 + 5) = (25 - 25) / 0 = 0/0. The function is undefined at x = -5. There is a hole in the graph here.
    3. 3
      Connect the ideas
      This is the key insight for this topic. Even though the function does not exist at x = -5, the limit does exist. The limit tells us the y-coordinate of the hole. If you were to graph this function, you would see a straight line with an open circle at the point (-5, -10).
    • Where students slip up: Many will see that f(-5) is undefined and incorrectly conclude that the limit must not exist. Remember, the limit does not care what happens at the point, only what happens in its immediate neighborhood.

Try it yourself

Time to put this into practice. Don't worry about getting the perfect answer right away; focus on applying the concepts we just discussed.

Problem 1 Translate the following sentence into formal limit notation: "As the variable t gets closer and closer to 10, the function h(t) = 100 - 4.9t² gets closer and closer to -390."

Problem 2 Consider the statement: lim g(x) = 1 as x→0. Does this statement tell you anything about the value of g(0)? Explain your reasoning in one or two sentences.