Exploring Types of Discontinuities
Why this matters
Imagine you're on a cross-country road trip from Boston to Seattle. The road, your function f(x), is supposed to be a smooth, connected path. But what happens when it isn't?
You might hit a single, jarring pothole. The road exists on either side, but there's a tiny spot missing. Or, you could reach a river where a bridge has collapsed. The road continues on the other side, but at a totally different level—you can't just drive across. Worst of all, you might find the road leads to the edge of a massive canyon, plunging infinitely downward.
These three scenarios—the pothole, the collapsed bridge, and the canyon—are like the three main types of discontinuities we see in calculus. They are breaks in our function's path. In this lesson, we'll learn the official names for these breaks and, more importantly, how to use calculus to prove exactly which type of break you're looking at.
Concept overview
flowchart TD
A[Start: Analyze f(x) at x=c] --> B{Is f(c) defined?};
B -->|No| C{Does lim x->c f(x) exist?};
B -->|Yes| D{Does lim x->c f(x) exist?};
C -->|Yes| E[Removable Discontinuity];
C -->|No| F{Do left/right limits exist but differ?};
F -->|Yes| G[Jump Discontinuity];
F -->|No| H[Infinite Discontinuity];
D -->|No| F;
D -->|Yes| I{Does lim x->c f(x) == f(c)?};
I -->|Yes| J[Function is Continuous];
I -->|No| E;
Core explanation
Hey there. It's Saavi. Let's talk about what happens when functions aren't continuous. We call these breaks "discontinuities," and our job is to be like detectives, using evidence to classify them.
The Continuity Checklist
First, let's quickly recap the formal definition of continuity. For a function f to be continuous at a point x = c, it must meet all three of these conditions:
- 1The Point Exists
f(c)is defined. (There's a dot on the graph atx=c.) - 2The Limit Exists
lim x→c f(x)exists. (The graph approaches the same height from both the left and the right.) - 3The Point and Limit Agree
lim x→c f(x) = f(c). (The place the graph is heading is the same place where the dot is.)
A discontinuity happens when one or more of these rules are broken. The specific rule that fails tells us what kind of discontinuity we have.
Type 1: Removable Discontinuity (The Pothole)
A removable discontinuity is the most polite type of break. It's like a single missing point on an otherwise perfect road.
How it happens: The limit as x approaches c exists (Rule #2 is met!), but either the point f(c) doesn't exist (Rule #1 fails) or the point exists in a different spot than the limit (Rule #3 fails).
Think of the function f(x) = (x² - 9) / (x - 3).
If you try to plug in x = 3, you get 0/0, which is undefined. So, f(3) is not defined, and Rule #1 fails. The function is discontinuous at x = 3.
But what's the limit?
lim x→3 (x² - 9) / (x - 3)
= lim x→3 (x - 3)(x + 3) / (x - 3)
= lim x→3 (x + 3) = 3 + 3 = 6
The limit exists and is equal to 6! The graph is heading toward the point (3, 6), but there's a hole right there. Because we could "remove" the discontinuity by simply defining f(3) = 6 (like filling a pothole), we call it removable.
Graphically, this always looks like a hole in the curve.
Type 2: Jump Discontinuity (The Collapsed Bridge)
A jump discontinuity is exactly what it sounds like. The function stops at one value and suddenly reappears at another.
How it happens: The limit as x approaches c does not exist (Rule #2 fails). Specifically, it fails because the left-hand limit and the right-hand limit are different finite numbers.
lim x→c⁻ f(x) ≠ lim x→c⁺ f(x)
Consider this piecewise function, which might model different pricing tiers for a data plan:
/ 30, if x ≤ 100 (cost for up to 100 GB)
g(x) = {
\ 50, if x > 100 (cost for over 100 GB)
Let's check the continuity at x = 100.
- The limit from the left:
lim x→100⁻ g(x) = 30 - The limit from the right:
lim x→100⁺ g(x) = 50
Since 30 ≠ 50, the overall limit lim x→100 g(x) does not exist. The function "jumps" from a height of 30 to a height of 50. This is a jump discontinuity.
This is where many students get confused: They see that g(100) is defined (it's 30), but that doesn't make it continuous. The failure of Rule #2 (the limit not existing) is what matters here and what defines the jump.
Type 3: Infinite Discontinuity (The Canyon)
This is the most dramatic break. The function flies off toward positive or negative infinity.
How it happens: The limit as x approaches c does not exist (Rule #2 fails). It fails because the function's values increase or decrease without bound as you get closer to c. This happens at a vertical asymptote.
lim x→c⁻ f(x) = ±∞ or lim x→c⁺ f(x) = ±∞
Consider the function h(x) = 1 / (x - 2).
At x = 2, the function is undefined (Rule #1 fails). Let's check the limits:
- As
xapproaches 2 from the right (e.g., 2.1, 2.01),x-2is a small positive number, soh(x)goes to+∞. - As
xapproaches 2 from the left (e.g., 1.9, 1.99),x-2is a small negative number, soh(x)goes to-∞.
Since the function values shoot off to infinity, the limit does not exist. This is an infinite discontinuity at the vertical asymptote x = 2.
Justifying Your Conclusion
On the AP exam, you can't just say "it's a jump." You have to prove it. To justify your classification, you must appeal to the three-part definition of continuity and use limits.
- For a removable discontinuity at
c, you must show thatlim x→c f(x)exists but is not equal tof(c)(orf(c)is undefined). - For a jump discontinuity at
c, you must show that the left and right-hand limits exist but are not equal. - For an infinite discontinuity at
c, you must show that the left or right-hand limit (or both) goes to±∞.
Mastering this justification is key to showing you truly understand the concepts.
Worked examples
Let's walk through a few problems together. The goal isn't just to get the answer, but to build the logical argument for why it's the answer.
Classifying a Hole
Problem: Let f(x) = (x² + x - 6) / (x - 2). Determine if f(x) is continuous at x = 2. If not, classify the discontinuity and justify your answer.
Step-by-Step Solution:
-
Check the 3-part definition of continuity at
c = 2.- Rule 1: Is
f(2)defined? Plugging inx = 2, we getf(2) = (2² + 2 - 6) / (2 - 2) = (4 + 2 - 6) / 0 = 0/0. This is an indeterminate form, which means the function is undefined atx = 2. Conclusion: Since Rule #1 fails, the function is discontinuous atx = 2. Now we need to classify it.
- Rule 1: Is
-
Find the limit to classify the discontinuity. Since we got
0/0, this hints at a removable discontinuity (a hole). Let's find the limit by factoring.lim x→2 (x² + x - 6) / (x - 2)= lim x→2 (x - 2)(x + 3) / (x - 2)This is the key step. We can cancel the
(x - 2)terms because when we take a limit, we are concerned with values nearx=2, not atx=2.= lim x→2 (x + 3)= 2 + 3 = 5 -
Formulate the justification. We have all the evidence we need.
- The limit as
xapproaches 2 exists and is 5. - The function value
f(2)is undefined.
Justification: The function
f(x)has a removable discontinuity atx = 2becauselim x→2 f(x) = 5, butf(2)is undefined.Common Mistake Alert: Students often stop after finding
f(2)is undefined and just write "discontinuous." You must proceed to find the limit to correctly classify the type of discontinuity. - The limit as
Analyzing a Piecewise Function
Problem: Let h(x) be defined as:
/ x² - 1, if x < 1
h(x) = {
\ 2x + 1, if x ≥ 1
Is h(x) continuous at x = 1? If not, classify the discontinuity.
Step-by-Step Solution:
-
Check the 3-part definition at
c = 1.- Rule 1: Is
h(1)defined? Yes. Forx ≥ 1, we use the bottom piece:h(1) = 2(1) + 1 = 3. - Rule 2: Does
lim x→1 h(x)exist? For piecewise functions, we MUST check the limit from both the left and the right.- Left-hand limit (x < 1)
lim x→1⁻ h(x) = lim x→1⁻ (x² - 1) = 1² - 1 = 0 - Right-hand limit (x ≥ 1)
lim x→1⁺ h(x) = lim x→1⁺ (2x + 1) = 2(1) + 1 = 3Since the left-hand limit (0) does not equal the right-hand limit (3), the overall limitlim x→1 h(x)does not exist.
- Left-hand limit (x < 1)
- Rule 1: Is
-
Classify and Justify. Since the limit does not exist because the left and right limits approach different finite values, we have a jump.
- Rule 3 is irrelevant. We don't even need to check if the limit equals the point value, because the limit doesn't exist in the first place!
Justification: The function
h(x)has a jump discontinuity atx = 1becauselim x→1⁻ h(x) = 0andlim x→1⁺ h(x) = 3. Since the left and right-hand limits exist but are not equal, the overall limit does not exist.
Try it yourself
Time to try a couple on your own. Remember to use the full definition of continuity to justify your answers.
Problem 1:
Consider the function g(x):
/ sin(x)/x, if x < 0
g(x) = {
\ x - 1, if x ≥ 0
Determine the type of discontinuity at x = 0. Justify your answer using limits.
Hint: Remember the special trigonometric limit lim x→0 sin(x)/x = 1. Check the left and right-hand limits separately.
Problem 2:
Find and classify all points of discontinuity for the function f(x) = (x + 1) / (x² - 4x - 5).
Hint: Start by factoring the denominator. You'll find two points where the denominator is zero. One will lead to a 0/0 situation (a hole), and the other will lead to a (non-zero)/0 situation (a vertical asymptote).
In simple terms, this lesson explains the different ways a function's graph can be "broken" and how to use the formal definition of continuity to name each type of break: removable, jump, or infinite.
/ 30, if x ≤ 100 (cost for up to 100 GB)
g(x) = {
\ 50, if x > 100 (cost for over 100 GB)
- LIM-2.A: Justify conclusions about continuity at a point using the definition.
- LIM-2.A.1
- Types of discontinuities include removable discontinuities, jump discontinuities, and discontinuities due to vertical asymptotes.
flowchart TD
A[Start: Analyze f(x) at x=c] --> B{Is f(c) defined?};
B -->|No| C{Does lim x->c f(x) exist?};
B -->|Yes| D{Does lim x->c f(x) exist?};
C -->|Yes| E[Removable Discontinuity];
C -->|No| F{Do left/right limits exist but differ?};
F -->|Yes| G[Jump Discontinuity];
F -->|No| H[Infinite Discontinuity];
D -->|No| F;
D -->|Yes| I{Does lim x->c f(x) == f(c)?};
I -->|Yes| J[Function is Continuous];
I -->|No| E;
Read what Saavi narrates
(gentle, warm intro music fades)
Hey there, it's Saavi from Shrutam. Let's talk about something that sounds complicated but is actually pretty intuitive: discontinuities.
Imagine you're following a path on a map... that's your function. A discontinuity is just a break in that path. Sometimes, it's a tiny pothole you could easily fill in. Other times, it's like a bridge is out, and the road continues on the other side, but at a completely different height. And sometimes, the road just leads to a cliff edge and drops off forever.
In calculus, we have official names for these breaks. We call them removable, jump, and infinite discontinuities. Our job is to figure out which is which, using a simple three-part checklist for continuity.
Let's try one. Imagine a function... f of x equals... the quantity x-squared plus x minus 6, all divided by the quantity x minus 2. We want to know what's happening at x equals 2.
First, we check... is the function defined at 2? If we plug in 2, we get 0 divided by 0. That's undefined. So, Rule 1 fails. The function is definitely discontinuous. But what kind?
Next, we check the limit as x approaches 2. That 0 over 0 is a clue. Let's factor the top part of the fraction. It becomes... the quantity x minus 2 times the quantity x plus 3. Now our function is... (x-2)(x+3) all over (x-2).
We can cancel the (x-2) terms. So we're just finding the limit of (x+3) as x approaches 2. That's just 2 plus 3, which is 5.
So, the limit exists! The path is heading toward a height of 5. But the point itself is missing. That's our pothole. We call this a removable discontinuity. We justify it by saying the limit as x approaches 2 is 5, but f of 2 is undefined.
See? It's a logical process. A common mistake is to see that 0 over 0 and just stop. But you have to push through and find the limit. That's what tells you if it's a simple hole or a more serious break like an asymptote.
Keep practicing this process of checking the definition, and you'll be able to classify any discontinuity the AP exam throws at you. You've got this.
(gentle, warm outro music fades in)
`0/0` is an indeterminate form, which means "more work needed." It often signals a removable discontinuity where the limit *does* exist.
When you see `0/0`, immediately try to simplify the expression by factoring, using conjugates, or applying L'Hôpital's Rule (which we'll cover later).
Both can result from a zero in the denominator, but they are fundamentally different. A hole (removable) means the limit exists. An asymptote (infinite) means the limit does not exist because it goes to ±∞.
After finding a value `c` that makes the denominator zero, check if it also makes the numerator zero. If it's `0/0`, it's likely a hole. If it's `(non-zero)/0`, it's a vertical asymptote.
The definition of a limit requires the left and right-hand limits to be equal. At the "seam" of a piecewise function, they can often be different.
Always calculate `lim x→c⁻ f(x)` and `lim x→c⁺ f(x)` separately when `c` is the point where the function's rule changes.
"DNE" stands for "Does Not Exist." A limit can't *equal* a state of non-existence. This is a grammatical and mathematical error that graders will notice.
Write "`lim x→c f(x)` does not exist." Then, explain why (e.g., "because the left and right limits are not equal" or "because the function approaches ∞").
This only satisfies the first of three conditions. A jump discontinuity can have a defined point, but it's still discontinuous because the limit doesn't exist.
Always go through the full three-part checklist. Is the point defined? Does the limit exist? Do they match?