Defining Limits and Using Limit Notation
Why this matters
Imagine a high-tech drone delivery service in Dallas. Your package is being delivered by a drone named "Calculus One," programmed to land precisely on a small target in your backyard. As it descends, it gets closer and closer to the coordinates (x, y) of the target. It might slow down, speed up, or wobble a bit due to wind, but its flight path is always aimed at that one specific spot.
The crucial idea here isn't where the drone is at any given second, but the single point it's approaching. Even if the programming says "don't actually touch down, just hover 1 millimeter above the target," we can still say with certainty what its intended destination is. That intended destination is the limit. In this lesson, we'll learn the formal language of calculus to describe this exact idea of "approaching a target."
Concept overview
flowchart TD
A[Start: Consider lim f(x) as x->c] --> B{What happens to f(x) as x gets very close to c?};
B --> C{Does f(x) approach ONE specific number, L?};
C -- Yes --> D[The limit exists and is L];
C -- No --> E[The limit Does Not Exist (DNE)];
D --> F((lim f(x) = L as x->c));
subgraph Key Questions
G{Does f(c) need to be defined?} -- No --> H[The limit only cares about the approach, not the destination.];
I{Must f(c) equal L?} -- No --> J[The function value and the limit can be different.];
end
A -.-> G;
D -.-> I;
Core explanation
Hello! I'm Saavi, and I'm so glad you're here. Today, we're diving into one of the most foundational ideas in all of calculus: the limit. Get this down, and you're building your calculus house on solid rock.
What is a Limit, Really?
Let's go back to that drone. The drone's path is like a function, f(x), and the target on the ground is at a specific x-coordinate, let's call it c. The limit is the height the drone is approaching as it gets infinitely close to being directly over c.
In calculus, we say:
The limit of a function
f(x)asxapproachescis a real numberLif we can makef(x)as close toLas we want, just by choosing anxthat is close enough toc.
The most important part of that definition is what's not said. Notice that we only care about x being close to c, but not equal to c. The limit doesn't care what happens at the exact destination, only about the journey getting infinitely close to it.
The Language of Limits: Notation
Mathematicians have a precise way to write this down. If the limit exists and is a real number L, we write it like this:
lim f(x) = L
x→c
Let's break that down piece by piece:
lim: This is our abbreviation for the Latin word limes, meaning "limit." It's the verb of our sentence, telling us we're performing the action of finding a limit.x→c: This part is read as "x approaches c" or "x goes to c." It specifies the target input value we're getting close to.f(x): This is the function we're examining. It's the "drone's flight path."= L: This states the result.Lis the value thatf(x)is getting closer and closer to. It's the "drone's target altitude."
So, the full statement lim f(x) = L as x→c is read as: "The limit of f of x as x approaches c is L."
A Simple Case: The Bridge is Intact
Let's look at a simple function, like f(x) = 2x + 1. What's the limit as x approaches 3?
We'd write this as: lim (2x + 1) as x→3.
You can imagine plugging in numbers very close to 3:
- If
x = 2.9,f(2.9) = 2(2.9) + 1 = 5.8 + 1 = 6.8 - If
x = 2.99,f(2.99) = 2(2.99) + 1 = 5.98 + 1 = 6.98 - If
x = 3.01,f(3.01) = 2(3.01) + 1 = 6.02 + 1 = 7.02 - If
x = 3.001,f(3.001) = 2(3.001) + 1 = 6.002 + 1 = 7.002
It seems pretty clear that as x gets closer to 3, f(x) gets closer to 7. In this case, f(3) = 2(3) + 1 = 7. The limit and the function value are the same. This happens for many "well-behaved" functions.
The Interesting Case: The Broken Bridge
Now for the situation that truly shows the power of limits. Consider this function:
g(x) = (x² - 4) / (x - 2)
What is the limit of g(x) as x approaches 2?
Division by zero! The function is undefined at x = 2. Many students stop here and say the limit doesn't exist. But remember our rule: the limit does not care what happens at x = 2, only what happens near x = 2.
Think of this function as a bridge with a single plank missing right at x = 2. You can't step on that spot, but you can see the height of the bridge on either side of the gap.
Let's try our "getting close" strategy again:
- If
x = 1.9,g(1.9) = (1.9² - 4) / (1.9 - 2) = (3.61 - 4) / -0.1 = -0.39 / -0.1 = 3.9 - If
x = 1.99,g(1.99) = (1.99² - 4) / (1.99 - 2) = (3.9601 - 4) / -0.01 = -0.0399 / -0.01 = 3.99 - If
x = 2.01,g(2.01) = (2.01² - 4) / (2.01 - 2) = (4.0401 - 4) / 0.01 = 0.0401 / 0.01 = 4.01
As x gets closer and closer to 2, g(x) gets closer and closer to 4. So, we can say:
lim (x² - 4) / (x - 2) = 4 as x→2
Even though g(2) is undefined, the limit is 4. The limit fills in the hole. This is a profound idea and the key to understanding continuity and derivatives later on.
A quick note: You might see a very technical, "epsilon-delta" definition of a limit in some textbooks. This is not assessed on the AP Exam. The intuitive understanding we've built here is exactly what you need.
Worked examples
Let's walk through a few examples to make sure this notation and the concept behind it are crystal clear.
Interpreting a Limit Statement
Problem: A function h(t) models the height of a soccer ball, in feet, t seconds after it's kicked. The statement lim h(t) = 0 as t→3.5 is true. What does this mean in the context of the problem?
Solution Walkthrough:
- 1Deconstruct the Notation
limwitht→3.5: This tells us we're interested in what happens as time gets incredibly close to 3.5 seconds. We're not looking att=0ort=1, but specifically the moment aroundt=3.5.h(t): This is the function for the ball's height.= 0: This is the value the height is approaching.
- 2Synthesize the MeaningPutting it all together, as the time
tgets closer and closer to 3.5 seconds, the height of the ballh(t)gets closer and closer to 0 feet. - 3Explain in Plain EnglishIn the context of the soccer ball, this means the ball is about to hit the ground at 3.5 seconds. The limit describes the moment of impact. The height is approaching zero.
A Limit That Differs from the Function Value
Problem: Consider a function f(x). You are given two pieces of information:
lim f(x) = 10asx→5f(5) = -2
Describe what a graph of this function might look like near x=5.
Solution Walkthrough:
- 1Interpret the LimitThe statement
lim f(x) = 10asx→5tells us that as thex-value gets closer and closer to 5 (from both the left and the right), they-value of the function gets closer and closer to 10. - 2Interpret the Function ValueThe statement
f(5) = -2tells us the actual value of the function exactly atx=5. If you plug 5 into the function, the output is -2. - 3Combine the IdeasHow can both be true? This is our "broken bridge" scenario, but with a twist. The path of the function is heading towards the
y-value of 10 as you approachx=5. So, on the graph, there must be a hole at the coordinate(5, 10). But the function is defined atx=5. The valuef(5)=-2means there is a solid dot at the coordinate(5, -2). - 4Describe the GraphNear
x=5, the graph looks like a continuous curve heading towards the point(5, 10). However, there is a hole at(5, 10), and a separate, solid point plotted at(5, -2).
Try it yourself
Time to try it on your own. Don't worry about getting the perfect answer, just focus on applying the concepts we've discussed.
- 1ProblemThe cost, in dollars, to produce
xhigh-end basketballs at a factory in Chicago is given by a functionC(x). A manager notes thatlim C(x) = 5000asx→100. In a complete sentence, what does this limit statement tell us about the production cost?Hint: What does
x→100represent? What does= 5000represent? Connect the two ideas. - 2ProblemWrite the following sentence using proper limit notation: "The limit of the function
g(t) = 16t²astapproaches 2 is 64."Hint: Identify the function, the variable that's changing, the value it's approaching, and the resulting limit value. Assemble them into the
lim f(x) = Lformat.
In simple terms, defining a limit is about describing what value a function *tries* to reach at a certain point, even if it never actually gets there.
lim f(x) = L
x→c
- LIM-1.A: Represent limits analytically using correct notation.
- LIM-1.B: Interpret limits expressed in analytic notation.
- LIM-1.A.1
- Given a function f, the limit of f(x) as x approaches c is a real number R if f(x) can be made arbitrarily close to R by taking x sufficiently close to c (but not equal to c). If the limit exists and is a real number, then the common notation is lim f(x) = R as x approaches c. EXCLUSION STATEMENT: The epsilon-delta definition of a limit is not assessed on the AP Calculus AB or BC Exam. However, teachers may include this topic in the course if time permits.
- LIM-1.B.1
- A limit can be expressed in multiple ways, including graphically, numerically, and analytically.
flowchart TD
A[Start: Consider lim f(x) as x->c] --> B{What happens to f(x) as x gets very close to c?};
B --> C{Does f(x) approach ONE specific number, L?};
C -- Yes --> D[The limit exists and is L];
C -- No --> E[The limit Does Not Exist (DNE)];
D --> F((lim f(x) = L as x->c));
subgraph Key Questions
G{Does f(c) need to be defined?} -- No --> H[The limit only cares about the approach, not the destination.];
I{Must f(c) equal L?} -- No --> J[The function value and the limit can be different.];
end
A -.-> G;
D -.-> I;
Read what Saavi narrates
(gentle, warm intro music fades)
Hello, and welcome to Shrutam. I'm Saavi. Today we're going to talk about one of the biggest ideas in calculus: the limit.
So, imagine a delivery drone in Dallas. It's programmed to land on a tiny target in a backyard. As it gets lower and lower, it gets closer and closer to the target's coordinates. The most important thing isn't where the drone is at any one moment, but the single point it's *approaching*. Even if it's programmed to hover just a millimeter above the ground, we still know its intended destination. That intended destination... is the limit.
In calculus, we're doing the same thing with functions. We want to know what value a function *tries* to reach as its input gets closer to a specific number. We have a special notation for this, the language of limits, that helps us describe this "approaching" behavior precisely.
Let's look at a classic example. Imagine a function `f(x)` where you're given two facts. First, the limit of `f(x)` as `x` approaches 5 is 10. Second, the actual value of the function at 5, which we call `f(5)`, is negative 2.
Now, how can both of these be true? This is where students often get stuck.
Let's break it down. The limit part... `lim f(x) = 10` as `x` approaches 5... tells us about the path. As you trace the function on a graph and get super close to an x-value of 5, the y-value is getting closer and closer to 10. Imagine a road leading to a spot that is 10 units high.
But the second fact... `f(5) = -2`... tells us what happens at the exact destination. At the exact x-value of 5, the function has a value of -2.
So on a graph, this would look like a road heading towards a point at (5, 10), but there's a hole right at that point. The road just stops. And somewhere else, completely disconnected from that road, there's a single, solid dot at the point (5, -2).
This brings us to a really common mistake: confusing the limit with the function's value. They are not always the same! The limit is the intended destination of the path. The function's value is the actual location at that one single point. They can be different, and that's okay. In fact, it's one of the most powerful features of limits.
Understanding this difference is a huge step. Keep practicing, stay curious, and you'll get it. Thanks for listening.
(gentle, warm outro music fades in)
The limit describes the value the function *approaches*, which can be different from the actual value at the point, especially if there's a hole or jump in the graph.
Always treat the limit as the *intended* value based on the path near the point. Only if the function is continuous can you substitute directly.
The notation is a sentence. You need a subject (the function). `lim = 7` is like saying "approaches equals 7." It's meaningless.
Always write the full expression: `lim f(x) = 7` as `x→3`. Be precise.
The value 0/0 is called an "indeterminate form," which is a giant clue that there's more work to do! It does *not* automatically mean the limit doesn't exist.
When you see 0/0, recognize that the limit might still exist. You'll soon learn algebraic techniques (like factoring, which we used in our `(x²-4)/(x-2)` example) to find it.
As we saw in Worked Example 2, it's perfectly possible for the function to be defined at `x=c` (`f(c)` exists) while the limit as `x→c` is a different number.
Treat the limit and the function value as two separate pieces of information. `lim f(x)` as `x→c` is about the approach. `f(c)` is about the point itself.