Left Hand Vs Right Hand Limits: The 3 Rules Every Calculus Student Must Master

Understanding the difference between left hand vs right hand limits is one of the most important skills in early calculus. These one-sided limits determine whether a full two-sided limit exists, and they are the key to understanding continuity, jump discontinuities, and piecewise function behavior. If you have ever wondered why some limits simply “do not exist,” the answer almost always involves left-hand vs right-hand limits not matching up.

This article covers left-hand vs right-hand limits thoroughly — what they are, how to compute them, when they determine whether a two-sided limit exists, and how these one-sided limits appear in machine learning contexts. By the end, you will be able to evaluate left-hand vs right-hand limits confidently for any piecewise function you encounter.

What Are Left-Hand vs Right-Hand Limits?

When we discuss left-hand vs right-hand limits, we are talking about the behavior of a function as it approaches a point from one specific direction. The left-hand limit (written lim(x → a⁻) f(x)) describes what f(x) approaches as x approaches a from values smaller than a — from the left side of the number line.

The right-hand limit (written lim(x → a⁺) f(x)) describes what f(x) approaches as x approaches a from values larger than a — from the right. Together, left-hand vs right-hand limits give you a complete picture of function behavior on both sides of a given point.

The standard two-sided limit lim(x → a) f(x) exists if and only if both one-sided limits exist AND are equal to each other. This is the fundamental rule connecting left-hand vs right-hand limits to standard limit theory. If you have not yet read What is a Limit in Calculus? A Beginner’s Guide, that article gives a complete introduction before you tackle left-hand vs right-hand limits specifically.

The 3 Rules of Left-Hand vs Right-Hand Limits

Rule 1: Both one-sided limits must exist.

If either the left-hand limit or the right-hand limit does not exist at a point — for example, if the function oscillates without settling — then the two-sided limit does not exist either. Left-hand vs right-hand limits cannot be compared if one of them is undefined.

Rule 2: Both one-sided limits must be equal.

Even if both left-hand vs right-hand limits exist individually, the two-sided limit only exists if they share the same value. If lim(x → a⁻) f(x) = 3 but lim(x → a⁺) f(x) = 5, then the two-sided limit does not exist at a. The one-sided limits must converge to the same number.

Rule 3: Equal one-sided limits do not guarantee continuity.

Just because left-hand vs right-hand limits agree does not mean the function is continuous at that point. You also need the common limit value to equal f(a). This three-part condition is the formal definition of continuity, covered in detail in our article on What is Continuity in Mathematical Functions?.

Worked Examples of Left-Hand vs Right-Hand Limits

Example 1: Classic Jump Discontinuity

  • The Function: $f(x) = 1$ for $x < 0$, and $f(x) = 3$ for $x \geq 0$.
  • Left-Hand Limit: As $x \to 0^-$, the limit is $1$.
  • Right-Hand Limit: As $x \to 0^+$, the limit is $3$.
  • Conclusion: Since these one-sided limits differ, $\lim_{x \to 0} f(x)$ does not exist. This is a jump discontinuity — the clearest case of left-hand vs right-hand limits failing to match.

Example 2: Absolute Value Function

  • The Function: $f(x) = \frac{|x|}{x}$.
    • For $x > 0$, $f(x) = 1$.
    • For $x < 0$, $f(x) = -1$.
  • Left-Hand Limit: As $x \to 0^-$, the limit is $-1$.
  • Right-Hand Limit: As $x \to 0^+$, the limit is $1$.
  • Conclusion: Since left-hand vs right-hand limits differ, the overall limit does not exist at $x = 0$.

Example 3: Limits Agree, But Discontinuity Remains

  • The Function: $g(x) = x^2$ for $x \neq 2$, and $g(2) = 10$.
  • Left-Hand Limit: As $x \to 2^-$, the limit is $4$.
  • Right-Hand Limit: As $x \to 2^+$, the limit is $4$.
  • Conclusion: Both one-sided limits agree, so $\lim_{x \to 2} g(x) = 4$. But $g(2) = 10 \neq 4$, so the function is NOT continuous — it has a removable discontinuity. Left-hand vs right-hand limits agreement is necessary but not sufficient for continuity.

Example 4: Piecewise Rational Function

  • The Function: $h(x) = \frac{x^2 – 9}{x – 3}$ for $x \neq 3$, and $h(3) = 5$.
  • The Setup: Factor the equation: $\frac{(x – 3)(x + 3)}{x – 3} = x + 3$ for $x \neq 3$.
  • The Limits: Both one-sided limits approach $6$ as $x \to 3$.
  • Conclusion: So $\lim_{x \to 3} h(x) = 6$, but $h(3) = 5$ — another removable discontinuity showing that left-hand vs right-hand limits analysis is the right tool here.

Example 5: Limit Exists at a Piecewise Boundary

  • The Function: $p(x) = 2x + 1$ for $x < 4$, and $p(x) = x + 5$ for $x \geq 4$.
  • Left-Hand Limit: At $x = 4$, $2(4) + 1 = 9$.
  • Right-Hand Limit: At $x = 4$, $4 + 5 = 9$.
  • Conclusion: Both one-sided limits match, and $p(4) = 9$. This function is continuous at $x = 4$ — left-hand vs right-hand limits agree and equal the function value.

Left-Hand vs Right-Hand Limits in Piecewise Functions

Piecewise functions are where left-hand vs right-hand limits become absolutely essential. Every time you encounter a function defined differently on different intervals, you must check the one-sided limits at the boundaries to determine whether the full limit exists and whether the function is continuous there.

This analysis is not just textbook mathematics. In machine learning, virtually all activation functions beyond simple polynomials are piecewise in nature. ReLU is defined as max(0, x), which means it equals 0 for x < 0 and x for x ≥ 0. Checking left-hand vs right-hand limits at x = 0 confirms that both one-sided limits equal 0, so the limit exists and ReLU is continuous. However, the derivative does not exist at x = 0 because the one-sided limits of the derivative disagree — which has important consequences for gradient computations.

For a deeper understanding of how left-hand vs right-hand limits connect to broken function behavior, see our complete guide on Types of Discontinuities: Jump, Removable, and Infinite. And for the full context within calculus for machine learning, the hub article on Limits and Continuity: The Prerequisites for ML Calculus ties everything together.

How to Compute Left-Hand vs Right-Hand Limits: Step-by-Step

Step 1: Identify the point a at which you want to evaluate left-hand vs right-hand limits.

Step 2: For the left-hand limit, substitute values slightly less than a and observe the trend, or apply the formula that governs the function for x < a directly.

Step 3: For the right-hand limit, substitute values slightly greater than a, or use the formula governing x ≥ a directly.

Step 4: Compare the one-sided limits. If they agree, the two-sided limit exists and equals their common value.

Step 5: Compare the common limit value (if it exists) to f(a). If they match, the function is continuous at a. If not, you have identified the type of discontinuity using left-hand vs right-hand limits analysis.

Two-Sided Limit Existence: The Big Picture

Understanding two-sided limit existence through the lens of left-hand vs right-hand limits is one of the most transferable skills in all of calculus. It is the technique you use to evaluate any piecewise function, to classify discontinuities, and to determine differentiability.

For limits where the input approaches infinity rather than a finite point, the concept of left-hand vs right-hand limits extends naturally — see Limits Approaching Infinity: Asymptotes in Math. For the algebraic rules that apply once you have confirmed limit existence, see Core Properties of Limits with Step-by-Step Examples. The complete framework lives in the hub article on Limits and Continuity: The Prerequisites for ML Calculus.

External Resources

Khan Academy – One-sided Limits — Video walkthrough of left-hand vs right-hand limits with interactive exercises.

Paul’s Online Math Notes – One-Sided Limits — Detailed written notes with multiple worked examples covering all aspects of one-sided limits.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top