Limits & Continuity

Continuity

0:00
LearnStep 1/4

Continuity

Continuity: Making Sure Functions Behave!

Hey JEE aspirants! Continuity might sound like a simple concept, but it's super important in calculus and for tackling JEE problems. Think of continuous functions as functions you can draw without lifting your pen – no breaks, no jumps. This lesson will give you a solid understanding of what continuity means, the different types of discontinuities, and how to use this knowledge to solve problems. Let's dive in!

What is Continuity at a Point?

Imagine a smooth, unbroken road. That's what continuity is all about. Formally, a function f(x)f(x) is continuous at a point x=ax = a if it satisfies three conditions:

  1. f(a)f(a) is defined: The function has a value at x=ax = a. No holes allowed!
  2. limxaf(x)\lim_{x \rightarrow a} f(x) exists: The limit of the function as xx approaches aa exists. The function should approach the same value from both sides.
  3. limxaf(x)=f(a)\lim_{x \rightarrow a} f(x) = f(a): The limit of the function as xx approaches aa is equal to the function's value at aa. The function approaches the value it actually *is* at that point.

Think of it like this: to be continuous at a point, the function must exist there, it must be approaching a value there, and that value it's approaching must be the actual value of the function at that point. If any of these conditions fail, the function is discontinuous at that point.

Continuity at x = a

ff is continuous at x=ax = a if:

  1. f(a)f(a) is defined
  2. limxaf(x)\lim_{x \rightarrow a} f(x) exists
  3. limxaf(x)=f(a)\lim_{x \rightarrow a} f(x) = f(a)

Types of Discontinuity

Not all discontinuities are created equal! There are several types, each with its own unique behavior:

  • Removable Discontinuity: This occurs when limxaf(x)\lim_{x \rightarrow a} f(x) exists, but is not equal to f(a)f(a), or f(a)f(a) is not defined. It's like a tiny hole in the graph that you could "remove" by redefining the function at that point. For example, consider the function f(x)=x24x2f(x) = \frac{x^2 - 4}{x - 2}. At x=2x = 2, the function is undefined. However, limx2x24x2=limx2(x+2)=4\lim_{x \rightarrow 2} \frac{x^2 - 4}{x - 2} = \lim_{x \rightarrow 2} (x + 2) = 4. We could make this function continuous by defining f(2)=4f(2) = 4.
  • Jump Discontinuity: This occurs when the left-hand limit and the right-hand limit exist, but are not equal. The function "jumps" from one value to another. Imagine a step function – that's a classic example of a jump discontinuity. For example: f(x)={1,if x<02,if x0f(x) = \begin{cases} 1, & \text{if } x < 0 \\ 2, & \text{if } x \geq 0 \end{cases} This function has a jump discontinuity at x=0x=0.
  • Infinite Discontinuity: This occurs when the function approaches infinity (or negative infinity) as xx approaches aa. Think of functions like f(x)=1xf(x) = \frac{1}{x} at x=0x = 0. The function shoots off to infinity as you approach 0 from either side. These are often associated with vertical asymptotes.
  • Oscillatory Discontinuity: This is a more exotic type of discontinuity where the function oscillates wildly near the point, preventing the limit from existing. A classic example is f(x)=sin(1x)f(x) = \sin(\frac{1}{x}) as xx approaches 0. The function oscillates faster and faster, never settling on a specific value.

Continuity Over an Interval

A function is continuous over an open interval (a,b)(a, b) if it's continuous at every point in that interval. For a closed interval [a,b][a, b], the function must be continuous on (a,b)(a, b), and also continuous from the right at aa (i.e., limxa+f(x)=f(a)\lim_{x \rightarrow a^+} f(x) = f(a)) and continuous from the left at bb (i.e., limxbf(x)=f(b)\lim_{x \rightarrow b^-} f(x) = f(b)).

Many common functions are continuous over their entire domains: polynomials, sine, cosine, exponential functions. Rational functions are continuous everywhere *except* where the denominator is zero.

Intermediate Value Theorem (IVT)

The Intermediate Value Theorem is a powerful tool for proving the existence of solutions to equations. It states: If ff is continuous on the closed interval [a,b][a, b], and kk is any number between f(a)f(a) and f(b)f(b) (i.e., f(a)kf(b)f(a) \le k \le f(b) or f(b)kf(a)f(b) \le k \le f(a)), then there exists at least one number cc in the open interval (a,b)(a, b) such that f(c)=kf(c) = k.

In simpler terms: if a continuous function takes on two values, it must take on every value in between them. Imagine a hike: if you start at an altitude of 1000 meters and end at 2000 meters, you *must* have been at every altitude between 1000 and 2000 meters at some point during the hike (assuming the altitude changes continuously!).

Intermediate Value Theorem

If ff is continuous on [a,b][a,b] and kk is between f(a)f(a) and f(b)f(b), then there exists c(a,b)c \in (a,b) such that f(c)=kf(c) = k

Example: Show that the equation x3x1=0x^3 - x - 1 = 0 has a root between 1 and 2.

Let f(x)=x3x1f(x) = x^3 - x - 1. f(x)f(x) is a polynomial, so it's continuous everywhere. We have f(1)=111=1f(1) = 1 - 1 - 1 = -1 and f(2)=821=5f(2) = 8 - 2 - 1 = 5. Since 0 is between -1 and 5, by the IVT, there exists a cc in (1,2)(1, 2) such that f(c)=0f(c) = 0. Therefore, the equation has a root between 1 and 2.

Tip: The IVT only guarantees the *existence* of a solution. It doesn't tell you how to find it! You might need numerical methods (like the bisection method) to approximate the root.

Tips for Solving Problems

  • Check the three conditions: When determining if a function is continuous at a point, always systematically check if f(a)f(a) is defined, if limxaf(x)\lim_{x \rightarrow a} f(x) exists, and if they are equal.
  • Piecewise functions: Pay close attention to piecewise functions. Check the continuity at the points where the function definition changes.
  • IVT Applications: Look for opportunities to use the IVT to prove the existence of roots or solutions to equations.

Common Mistake: Assuming continuity just because a function "looks" continuous. Always verify the conditions rigorously, especially with piecewise functions!

Common Mistake: Forgetting to check both the left-hand limit and the right-hand limit when determining if a limit exists. They must be equal for the limit to exist.

JEE-Specific Tricks

While there aren't specific "tricks" unique to JEE, a strong understanding of the fundamental concepts and the ability to apply them quickly is key. Practice a variety of problems, focusing on piecewise functions and applications of the IVT. Be comfortable with different types of functions and their domains. Look for clever ways to simplify expressions before evaluating limits.

Mastering continuity is not just about memorizing definitions; it's about understanding how functions behave. With practice, you'll be able to confidently tackle continuity problems on the JEE!