Intuitively, a function is continuous if you can draw its graph without lifting your pencil. There are no gaps, jumps, or holes. Most functions you work with in calculus (polynomials, trig functions, exponentials, logarithms) are continuous on their domains — but we need a precise definition to handle edge cases.

$$ \text{A function } f \text{ is continuous at } x = a \text{ if:} $$ $$ \boxed{\lim_{x \to a} f(x) = f(a)} $$
📌 The Three Conditions for Continuity at a Point

A function $f$ is continuous at $x = a$ if and only if all three of these are true:

  1. $f(a)$ is defined — the function has a value at $x = a$
  2. $\displaystyle \lim_{x \to a} f(x)$ exists — the left and right limits agree (finite)
  3. $\displaystyle \lim_{x \to a} f(x) = f(a)$ — the limit equals the function value

📊 Visualizing Continuity vs. Discontinuity

Use the interactive graph below to see continuous and discontinuous functions:

🚗 Real-World Analogy: A Smooth Road

Imagine driving on a road:

📋 Types of Discontinuities

TypeDescriptionConditionExample
RemovableA hole in the graph$\lim_{x \to a} f(x)$ exists but $f(a)$ is undefined or not equal to the limit$f(x)=\frac{x^2-1}{x-1}$ at $x=1$
JumpLeft and right limits exist but are different$\lim_{x \to a^-} f(x) \neq \lim_{x \to a^+} f(x)$$f(x)=\lfloor x \rfloor$ (greatest integer)
InfiniteThe function goes to $\pm\infty$$\lim_{x \to a} f(x) = \infty$ or $-\infty$$f(x)=\frac{1}{x}$ at $x=0$
Example 1Checking Continuity at a Point

Check if $f(x) = x^2$ is continuous at $x = 2$.

All three conditions hold — $f$ is continuous at $x = 2$.

Example 2Removable Discontinuity (Hole)

Check continuity of $f(x) = \frac{x^2 - 4}{x - 2}$ at $x = 2$.

Example 3Jump Discontinuity

Check continuity of $f(x) = \lfloor x \rfloor$ (greatest integer function) at $x = 1$.

Example 4Infinite Discontinuity (Vertical Asymptote)

Check continuity of $f(x) = \frac{1}{x}$ at $x = 0$.

📏 Continuity on an Interval

A function is continuous on an interval if it is continuous at every point in that interval. For example:

⚠️ Common Mistakes
🔍 Key Takeaways
← Back to Module Page