Limits and Continuity
Welcome, students! In Engineering Mathematics, limits and continuity are the starting point for understanding how functions behave near specific values. They help us answer questions like: What happens to a temperature reading as a machine warms up? What is the speed of a vehicle just before a curve? How can we describe a quantity that changes smoothly, instead of jumping suddenly? 🚗📈
Learning Objectives
By the end of this lesson, students, you should be able to:
- explain the main ideas and terminology behind limits and continuity,
- apply basic reasoning and procedures for finding limits,
- check whether a function is continuous at a point,
- connect these ideas to the broader topic of Differential Calculus I,
- use examples from engineering-style situations to interpret limits and continuity.
What Is a Limit?
A limit describes the value a function gets close to as the input gets close to a certain number. It does not always mean the function must actually equal that value at the point. This is one of the most important ideas in calculus because it lets us study motion, growth, and change near a point rather than only exactly at a point.
We write the limit of a function $f(x)$ as $x$ approaches $a$ as:
$$\lim_{x \to a} f(x) = L$$
This means that when $x$ gets very close to $a$, the output $f(x)$ gets very close to $L$.
For example, if $f(x) = 2x + 1$, then as $x$ approaches $3$, the function approaches $7$ because:
$$\lim_{x \to 3} (2x + 1) = 7$$
You can think of a limit like walking toward a door. You may not step exactly on the same spot every time, but you are clearly approaching it. In engineering, this idea is useful when measuring values that become stable near a point, such as voltage levels, fluid flow, or temperature changes 🌡️.
Finding Limits from Direct Substitution
The simplest way to evaluate a limit is often direct substitution. If the function is well-behaved at the point, you can replace the variable with the value it approaches.
Example:
$$\lim_{x \to 4} (x^2 - 1)$$
Substitute $x = 4$:
$$4^2 - 1 = 16 - 1 = 15$$
So,
$$\lim_{x \to 4} (x^2 - 1) = 15$$
This works because polynomials are continuous everywhere. That means they have no breaks, holes, or jumps. However, direct substitution does not always work. Sometimes it gives an expression like $\frac{0}{0}$, which is called an indeterminate form. When that happens, the function may still have a limit, but you need another method to find it.
Example:
$$\lim_{x \to 2} \frac{x^2 - 4}{x - 2}$$
Direct substitution gives:
$$\frac{2^2 - 4}{2 - 2} = \frac{0}{0}$$
That does not give the answer directly. We factor the numerator:
$$x^2 - 4 = (x - 2)(x + 2)$$
So the expression becomes:
$$\frac{(x - 2)(x + 2)}{x - 2}$$
For $x \ne 2$, this simplifies to:
$$x + 2$$
Now evaluate the limit:
$$\lim_{x \to 2} (x + 2) = 4$$
So the limit is $4$.
One-Sided Limits and Real-World Meaning
Sometimes we care about approaching a point from just one side. A left-hand limit looks at what happens as $x$ approaches $a$ from values smaller than $a$. A right-hand limit looks at values larger than $a$.
We write:
$$\lim_{x \to a^-} f(x)$$
and
$$\lim_{x \to a^+} f(x)$$
A two-sided limit exists only if both one-sided limits exist and are equal.
Example: imagine a road with a speed limit sign at a bend. If a vehicle approaches the bend from the left and right at different speeds, the behavior on each side may differ. In math, that means the one-sided limits may be different.
For instance, consider a piecewise function:
$$f(x) = \begin{cases} x + 1, & x < 2 \\ 5, & x = 2 \\ 2x, & x > 2 \end{cases}$$
Then:
$$\lim_{x \to 2^-} f(x) = 3$$
and
$$\lim_{x \to 2^+} f(x) = 4$$
Since these are not equal, the two-sided limit $\lim_{x \to 2} f(x)$ does not exist.
This is important in engineering because abrupt changes can represent switching circuits, valves opening, or a control system changing mode ⚙️.
Continuity: No Breaks, No Holes, No Jumps
A function is continuous at a point if its graph has no break at that point. More precisely, a function $f(x)$ is continuous at $x = a$ if all three of these are true:
- $f(a)$ is defined,
- $\lim_{x \to a} f(x)$ exists,
- $\lim_{x \to a} f(x) = f(a)$.
If any one of these conditions fails, the function is not continuous at $x = a$.
Example:
$$f(x) = x^2$$
At any point $a$, we have:
$$f(a) = a^2$$
and
$$\lim_{x \to a} x^2 = a^2$$
So $f(x) = x^2$ is continuous for all real numbers.
Now compare this with a function that has a hole:
$$g(x) = \frac{x^2 - 1}{x - 1}$$
This simplifies to $x + 1$ for $x \ne 1$, but the original function is not defined at $x = 1$ because the denominator becomes $0$. Even though
$$\lim_{x \to 1} g(x) = 2$$
the function is not continuous at $x = 1$ unless a value is assigned there. This kind of break is called a removable discontinuity.
Continuity is very useful in engineering. A continuous model often represents a smooth physical process, such as the heating of a metal rod or the charging of a capacitor, where the quantity changes gradually rather than by sudden jumps 🔋.
Types of Discontinuity
Not every discontinuity looks the same. Common types include:
- Removable discontinuity: the graph has a hole. The limit exists, but the function is missing a value or has the wrong value.
- Jump discontinuity: the graph jumps from one height to another.
- Infinite discontinuity: the function grows without bound near a point, often near a vertical asymptote.
Example of a jump discontinuity:
$$h(x) = \begin{cases} 1, & x < 0 \\ 3, & x \ge 0 \end{cases}$$
Here,
$$\lim_{x \to 0^-} h(x) = 1$$
and
$$\lim_{x \to 0^+} h(x) = 3$$
The two-sided limit does not exist, so the function is not continuous at $x = 0$.
Example of an infinite discontinuity:
$$k(x) = \frac{1}{x - 2}$$
As $x$ approaches $2$, the values of $k(x)$ become very large in magnitude, so the function is not continuous at $x = 2$.
These ideas matter when models have thresholds, limits of performance, or failure points. For example, a system may behave predictably until a certain input value is reached, then stop behaving normally.
Why Limits and Continuity Matter in Differential Calculus I
Limits are the foundation of differentiation. A derivative is defined using a limit, so understanding limits prepares you for the next major topic in Differential Calculus I.
The derivative of $f(x)$ at $x = a$ is based on the idea of the rate of change over very small intervals. In formal notation:
$$f'(a) = \lim_{h \to 0} \frac{f(a+h) - f(a)}{h}$$
This formula uses a limit because we want the exact slope of the tangent line, not just an approximate slope over a large interval. If a function is not continuous at a point, it often cannot be differentiated there. In other words, continuity is a basic requirement for many derivative ideas to work properly.
A smooth curve is easier to analyze than a graph with gaps or jumps. That is why limits and continuity are studied before rules like the product rule and quotient rule. They give the language and tools needed to describe change accurately.
In engineering, this matters for optimization, motion analysis, signal processing, and system design. A model that is continuous is often easier to predict and control, which is one reason engineers pay close attention to these properties.
Checking Continuity Step by Step
To test whether a function is continuous at $x = a$, use this procedure:
- Find $f(a)$.
- Compute $\lim_{x \to a} f(x)$.
- Compare the two values.
- If they are equal, the function is continuous at $a$.
Example:
$$f(x) = \frac{x^2 - 9}{x - 3}$$
Check continuity at $x = 3$.
First, $f(3)$ is not defined because the denominator becomes $0$.
Now compute the limit:
$$\frac{x^2 - 9}{x - 3} = \frac{(x - 3)(x + 3)}{x - 3} = x + 3$$
So,
$$\lim_{x \to 3} f(x) = 6$$
Because $f(3)$ is not defined, the function is not continuous at $x = 3$.
If we define a new function
$$g(x) = \begin{cases} \frac{x^2 - 9}{x - 3}, & x \ne 3 \\ 6, & x = 3 \end{cases}$$
then $g(x)$ becomes continuous at $x = 3$.
Conclusion
Limits and continuity are essential ideas in Engineering Mathematics, students. A limit tells us what a function approaches, and continuity tells us whether a function behaves smoothly at a point. Together, they build the foundation for differentiation and later topics in Differential Calculus I. When you understand limits and continuity, you are better prepared to study slopes, rates of change, and real engineering models. These ideas help describe motion, temperature, voltage, and many other changing quantities in a clear mathematical way ✅.
Study Notes
- A limit describes what $f(x)$ approaches as $x$ approaches a value.
- Write limits as $\lim_{x \to a} f(x) = L$.
- Direct substitution works when the function is continuous at the point.
- If substitution gives $\frac{0}{0}$, simplify or use another method.
- One-sided limits are $\lim_{x \to a^-} f(x)$ and $\lim_{x \to a^+} f(x)$.
- A two-sided limit exists only if the left-hand and right-hand limits are equal.
- A function is continuous at $x = a$ if $f(a)$ exists, the limit exists, and they are equal.
- Common discontinuities are removable, jump, and infinite discontinuities.
- Continuity is a key foundation for the derivative definition.
- Limits and continuity help model smooth changes in engineering situations.
