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

Exploring Types of Discontinuities

Lesson ~10 min read

In simple terms: In simple terms, this topic is about the different ways a function's graph can be broken (discontinuous) and what we, as mathematicians, call each type of break: a hole, a jump, or a canyon.

Why this matters

Imagine you're on a classic American road trip, driving from Seattle down to Portland. The GPS shows a straight shot on I-5 South. As you approach the bridge over the Columbia River, you see flashing lights. Traffic is stopped. There's a break in the road ahead!

Is it a small, single pothole you could easily patch over and continue? Is the drawbridge stuck open, with the road on the other side at a completely different height? Or has a section of the bridge collapsed entirely, leaving a massive, impassable chasm?

In calculus, a function's graph is like that road. When it's not perfectly smooth and connected, we say it has a "discontinuity." But just like with the bridge, it’s not enough to say "it's broken." A good engineer—and a good calculus student—needs to know what kind of break it is. Today, we'll become those engineers and learn to diagnose the three main types of discontinuities.

Concept overview

flowchart TD
    A[Analyze f(x) at x=c] --> B{Does lim (x->c) f(x) exist and is finite?}
    B -- No --> C{Are one-sided limits finite but unequal?}
    C -- Yes --> D[Jump Discontinuity]
    C -- No --> E[Infinite Discontinuity]
    B -- Yes --> F{Is f(c) defined and f(c) = limit?}
    F -- No --> G[Removable Discontinuity]
    F -- Yes --> H[Continuous]
This diagram is a flowchart for classifying a function's behavior at a point. It guides the user through a series of questions, starting with whether the limit exists, to determine if the function has a jump, infinite, or removable discontinuity, or if it is continuous.

Core explanation

Hey there. It's Saavi. Let's talk about what happens when things fall apart—at least for our functions.

In the last topic, we defined continuity with a strict, three-part test. A function f(x) is continuous at a point x = c if and only if:

  1. f(c) is defined (there's a solid point on the map).
  2. lim_{x->c} f(x) exists (the roads from both sides lead to the same spot).
  3. lim_{x->c} f(x) = f(c) (the spot the roads lead to is the same as the actual point on the map).

A discontinuity happens when at least one of these rules is broken. The specific way it breaks tells us the type of discontinuity.

Type 1: Removable Discontinuity (The Pothole)

A removable discontinuity is the most civil kind of break. It's like a tiny pothole in an otherwise perfect road.

How it happens: The limit as x approaches c exists, but either the function isn't defined at c, or it's defined at a different value.

  • Rule that breaks
    Rule #1 or Rule #3.
  • The key
    Rule #2 is MET. The limit from the left and the limit from the right agree! They are heading to the same place.

Think of the function f(x) = (x^2 - 4) / (x - 2). If you graph this, it looks exactly like the line y = x + 2. But, if you try to plug in x = 2, you get 0/0, which is undefined. There's a "hole" in the graph at (2, 4).

The limit as x approaches 2 exists and is 4. But the point f(2) doesn't exist. Because we could easily "fix" this by just defining f(2) = 4, we call this a removable discontinuity. You can remove the problem by filling in a single point.

// Example of a removable discontinuity
f(x) = (x^2 - 9) / (x + 3)
// At x = -3, the function is undefined.
// But the limit as x approaches -3 is -6.
// This is a hole at (-3, -6).

Type 2: Jump Discontinuity (The Drawbridge)

A jump discontinuity is exactly what it sounds like. The function stops at one value and suddenly reappears at a different value.

How it happens: The limit from the left and the limit from the right both exist as finite numbers, but they are not equal.

  • Rule that breaks: Rule #2. Because the one-sided limits don't agree, the overall limit doesn't exist.

Imagine a drawbridge over a river in Chicago. The road on the south side might end 20 feet above the water, while the road on the north side also ends 20 feet above the water. When the bridge is down, it's continuous. But if the bridge is up, the "function" of the road has a jump. You'd have to leap from one side to the other.

You'll see these most often in piecewise functions.

Consider this function, which could model cell phone plan costs: f(x) = { $30, if x <= 2; $45, if x > 2 } Here, x is the gigabytes of data used. For 2 GB or less, you pay $30. The moment you go over 2 GB, the price jumps to $45.

  • The limit as x approaches 2 from the left is $30.
  • The limit as x approaches 2 from the right is $45. Since 30 ≠ 45, the limit at x = 2 does not exist. This is a jump discontinuity.

Type 3: Infinite Discontinuity (The Canyon)

This is the most dramatic type of discontinuity. It occurs where a function has a vertical asymptote.

How it happens: As x approaches c from the left or the right (or both), the function's values shoot up to positive infinity or down to negative infinity.

  • Rule that breaks: Rule #2 (the limit doesn't exist because it's not a real number) and usually Rule #1 (the function is undefined at the asymptote).

This is the collapsed bridge, the impassable canyon. There's no "jumping" across it, and you certainly can't patch it with a single point. The road on either side veers off into the sky or plummets into the earth.

The classic example is f(x) = 1/x. At x = 0, the graph runs up along the y-axis on the right and down along the y-axis on the left. This is a vertical asymptote.

Any time you have a rational function where the denominator is zero but the numerator is not zero at x=c, you have a vertical asymptote, which means you have an infinite discontinuity.

For g(x) = 5 / (x - 4), at x = 4 the denominator is zero but the numerator is 5. This creates a vertical asymptote at x=4. It's an infinite discontinuity.

Justifying Your Conclusion

On the AP Exam, you can't just say "it's a jump." You have to prove it using the language of calculus. Always go back to the three-part definition of continuity. State which condition fails and why. For example: "The function has a jump discontinuity at x=2 because the limit from the left is 30 and the limit from the right is 45. Since the one-sided limits are not equal, the overall limit does not exist." That's a perfect, point-scoring justification.

Worked examples

Let's walk through a few problems together. I'll show you how to methodically analyze a function and justify your conclusion—no guessing!

Example 1

Removable Discontinuity

Problem: Analyze the continuity of the function f(x) = (x^2 + x - 6) / (x - 2) at x = 2. If it is discontinuous, classify the type.

Step-by-Step Solution:

  1. Check the 3 continuity conditions at c = 2.

    • Condition 1: Is f(2) defined? If we plug in x = 2, we get f(2) = (2^2 + 2 - 6) / (2 - 2) = (4 + 2 - 6) / 0 = 0/0. This is an indeterminate form, which means the function is undefined at x = 2.
      • Right away, we know the function is discontinuous at x = 2 because it fails the first condition. But we need to know the type, so we must press on.
  2. Check the limit.

    • Condition 2: Does lim_{x->2} f(x) exist? Since we got 0/0, that's a huge hint that we can simplify the expression. Let's factor the numerator: x^2 + x - 6 = (x + 3)(x - 2). Now, let's re-evaluate the limit: lim_{x->2} ( (x + 3)(x - 2) ) / (x - 2) Since the limit only cares about values near x=2, not at x=2, we know x - 2 is not zero, so we can cancel it out. lim_{x->2} (x + 3) = 2 + 3 = 5 The limit exists and is equal to 5.
  3. Classify the discontinuity.

    • The limit exists (it's 5), but the function is undefined at the point. This is the classic signature of a removable discontinuity. It's a hole in the graph at the point (2, 5).

Justification: The function f(x) has a removable discontinuity at x = 2 because lim_{x->2} f(x) = 5, but f(2) is undefined.

Example 2

Jump Discontinuity

Problem: Priya is tracking her phone's battery. The charging rate is modeled by the piecewise function B(t), where t is hours. B(t) = { 10t + 20, if 0 <= t < 3; 80, if t >= 3 } Is the function B(t) continuous at t = 3? If not, classify the discontinuity.

Step-by-Step Solution:

  1. Check the 3 continuity conditions at c = 3.

    • Condition 1: Is B(3) defined? We look at the second piece of the function, 80, if t >= 3. The "or equal to" tells us to use this piece. So, B(3) = 80. The function is defined. So far, so good.
  2. Check the limit.

    • Condition 2: Does lim_{t->3} B(t) exist? Because the rule changes at t=3, we MUST check the one-sided limits.
      • Left-hand limit
        lim_{t->3^-} B(t). We use the first piece, 10t + 20. lim_{t->3^-} (10t + 20) = 10(3) + 20 = 30 + 20 = 50.
      • Right-hand limit
        lim_{t->3^+} B(t). We use the second piece, 80. lim_{t->3^+} 80 = 80.
  3. Compare and classify.

    • The left-hand limit (50) does not equal the right-hand limit (80). Therefore, the overall limit lim_{t->3} B(t) does not exist.
    • Since the function fails the second condition of continuity this way, we have a jump discontinuity.

Justification: The function B(t) is discontinuous at t = 3. It is a jump discontinuity because lim_{t->3^-} B(t) = 50 while lim_{t->3^+} B(t) = 80. Since the one-sided limits exist but are not equal, the overall limit does not exist.

Try it yourself

Ready to try diagnosing a couple on your own? Remember to use the three-part test for continuity to justify your answer.

Problem 1: Consider the function g(x) = (x - 4) / (x^2 - 16). Find all points of discontinuity for g(x) and classify each one (removable, jump, or infinite).

Problem 2: For what value of the constant k is the function h(x) continuous everywhere? h(x) = { x^2 - 1, if x < 2; kx - 5, if x >= 2 } If k = 5, what type of discontinuity would exist at x = 2?