What Is The Squeeze Theorem In Calculus

9 min read

The squeeze theorem in calculus is apowerful tool that lets you determine the limit of a function by “squeezing” it between two other functions whose limits are known and equal. Here's the thing — in essence, if a function is trapped between two simpler functions that both approach the same value at a point, then the trapped function must also approach that value. This concept, often introduced early in a first‑year calculus course, provides a rigorous way to evaluate limits that are otherwise difficult to compute directly, especially when oscillatory or indeterminate behavior is involved.

Introduction

When studying limits, students quickly discover that many functions do not have obvious limit values as the input approaches a particular point. And the squeeze theorem in calculus offers a systematic method to handle such cases by leveraging known limits of bounding functions. By establishing a clear relationship among three functions—one that is always less than or equal to the target function and another that is always greater than or equal to it—the theorem guarantees that all three share the same limiting behavior. This approach not only simplifies complex limit calculations but also deepens the conceptual understanding of continuity and convergence Worth keeping that in mind..

Statement of the Squeeze Theorem

Formally, the squeeze theorem in calculus can be expressed as follows:

If (f(x) \le g(x) \le h(x)) for all (x) in some open interval around (a) except possibly at (a) itself,
and

[ \lim_{x \to a} f(x) = \lim_{x \to a} h(x) = L, ]

then

[\lim_{x \to a} g(x) = L. ]

In words, when (f) and (h) both converge to the same limit (L) as (x) approaches (a), the middle function (g) is forced to converge to (L) as well. The conditions require that the inequalities hold in a neighborhood of (a), though they may fail at (a) itself without affecting the conclusion.

How to Apply the Squeeze Theorem: Step‑by‑Step

To use the squeeze theorem in calculus effectively, follow these key steps:

  1. Identify the target function whose limit you wish to find.
  2. Find two bounding functions (f(x)) and (h(x)) such that (f(x) \le g(x) \le h(x)) in a neighborhood of the point of interest. 3. Verify that the bounds are valid for all (x) sufficiently close to the target point (excluding the point itself if needed).
  3. Compute the limits of the bounding functions as (x) approaches the point.
  4. Confirm that both limits are equal; if they are, the common value is the limit of the target function by the squeeze theorem in calculus.
  5. Conclude that the original function’s limit equals this shared value.

These steps provide a clear roadmap for tackling limits that involve absolute values, trigonometric expressions, or piecewise definitions Not complicated — just consistent..

Intuitive Example: The Classic (\displaystyle \lim_{x \to 0} \frac{\sin x}{x})

Probably most celebrated illustrations of the squeeze theorem in calculus involves the limit (\displaystyle \lim_{x \to 0} \frac{\sin x}{x}). Direct substitution yields the indeterminate form (0/0), so an alternative approach is required Easy to understand, harder to ignore. Nothing fancy..

Consider the geometric construction in the unit circle where, for (0 < x < \frac{\pi}{2}),

[ \sin x < x < \tan x. ]

Dividing every term by (\sin x) gives [ 1 < \frac{x}{\sin x} < \frac{1}{\cos x}. ]

Taking reciprocals (which reverses the inequalities) yields

[ \cos x < \frac{\sin x}{x} < 1. ]

As (x \to 0), both (\cos x) and (1) approach (1). Which means, by the squeeze theorem in calculus,

[ \lim_{x \to 0} \frac{\sin x}{x} = 1. ]

This example showcases how the theorem transforms an otherwise elusive limit into a straightforward conclusion by sandwiching the function between two well‑behaved neighbors Most people skip this — try not to. No workaround needed..

Proof Sketch (Optional but Helpful) While a full epsilon‑delta proof is beyond the scope of this article, a brief outline helps solidify why the squeeze theorem in calculus works. Assume (f(x) \le g(x) \le h(x)) near (a) and that (\lim_{x \to a} f(x) = \lim_{x \to a} h(x) = L). For any (\varepsilon > 0), there exists a (\delta_1) such that (|f(x)-L| < \varepsilon) whenever (0 < |x-a| < \delta_1), and similarly a (\delta_2) for (h(x)). Let (\delta = \min(\delta_1, \delta_2)). Then, for (0 < |x-a| < \delta),

[ L-\varepsilon < f(x) \le g(x) \le h(x) < L+\varepsilon, ]

which implies (|g(x)-L| < \varepsilon). Hence, (\lim_{x \to a} g(x) = L). This logical chain confirms the validity of the squeeze theorem in calculus.

Additional Applications

The squeeze theorem in calculus extends far beyond the (\sin x / x) limit. Some notable applications include:

  • Limits involving absolute values: To give you an idea, (\displaystyle \lim_{x \to 0} x^2 \sin\left(\frac{1}{x}\right)) is squeezed between (-x^2) and (x^2), both of which tend to (0).
  • Sequences: If a sequence (a_n) is bounded by two convergent sequences with the same limit, then (a_n) must also converge to that limit.
  • Improper integrals: When evaluating integrals of functions that oscillate increasingly rapidly, bounding the integrand can reveal convergence.
  • Piecewise functions:

Piecewise Functions

A piecewise‑defined function combines several elementary expressions, each valid on a separate subinterval of the domain. Still, when a limit is taken at a point where the definition switches, the function may exhibit different one‑sided behaviors. The squeeze theorem provides a powerful tool for handling such limits because it allows us to compare the troublesome piecewise expression with two simpler functions that share the same limiting value on either side of the point of interest.

Worth pausing on this one.

Example: Limit at a Breakpoint

Consider

[ \lim_{x\to 2}\frac{|x-3|}{x-2}. ]

Direct substitution yields an indeterminate form (0/0). Rewrite the absolute value by splitting the domain at (x=0) (the point where the expression inside the absolute value changes sign). Even so, the limit point (x=2) does not coincide with the breakpoint, so we first rewrite the absolute value without splitting:

Some disagree here. Fair enough Less friction, more output..

[ \frac{|x-3|}{x-2}= \begin{cases} \displaystyle\frac{3-x}{x-2}, & x<3,\[4pt] \frac{x-3}{x-2}, & x\ge 3 . \end{cases} ]

Now examine the limit as (x\to 2). For (x) near 2 (but not equal to 3), the relevant branch is the first one, because (x<3) in a neighborhood of 2. Hence

[ \frac{|x-3|}{x-2}= \frac{3-x}{x-2}= \frac{-(x-3)}{x-2}= -\frac{x-3}{x-2}. ]

Notice that (-\frac{x-3}{x-2}= -\frac{(x-2)+1}{x-2}= -\left(1+\frac{1}{x-2}\right)= -1-\frac{1}{x-2}).

As (x\to 2), the term (\frac{1}{x-2}) diverges, so the limit does not exist. Still, if we modify the numerator to eliminate the jump, e.g Most people skip this — try not to..

[ \lim_{x\to 2}\frac{|x-3|}{|x-2|}, ]

the situation changes. For (x) near 2, the relevant branch is again (x<3), giving

[ \frac{|x-3|}{|x-2|}= \frac{3-x}{x-2}= \frac{-(x-3)}{x-2}= -\frac{(x-2)+1}{x-2}= -1-\frac{1}{x-2}. ]

Both one‑sided limits diverge, so the limit does not exist Worth keeping that in mind..

A more fruitful example is

[ \lim_{x\to 0}\frac{|x|\sin!\left(\frac{1}{x}\right)}{x}. ]

Here the absolute value removes the sign change, and the function can be written as

[ \frac{|x|\sin!\left(\frac{1}{x}\right)}{x}= \begin{cases} \displaystyle\frac{x\sin!Think about it: \left(\frac{1}{x}\right)}{x}= \sin! \left(\frac{1}{x}\right), & x>0,\[4pt] \displaystyle\frac{-x\sin!Plus, \left(\frac{1}{x}\right)}{x}= -\sin! \left(\frac{1}{x}\right), & x<0.

Both branches are bounded between (-1) and (1). Since (\displaystyle -1\le\sin!\left(\frac{1}{x}\right)\le 1) for every (x\neq0), the

both one‑sided limits are squeezed between −1 and 1. Applying the squeeze theorem, we obtain

[ -1 \le \frac{|x|\sin\left(\frac{1}{x}\right)}{x} \le 1, ]

and since both the lower and upper bounds converge to 0 as (x \to 0), we conclude that

[ \lim_{x\to 0}\frac{|x|\sin!\left(\frac{1}{x}\right)}{x} = 0. ]

This elegant result demonstrates how the squeeze theorem circumvents the need to evaluate the oscillatory (\sin(1/x)) term directly Simple as that..

Example: Limit at a Cusp

A classic case where piecewise analysis proves essential occurs with functions containing absolute values that change form at the limit point itself. Consider

[ \lim_{x\to 0}\frac{|x|}{x}. ]

Here, the function is defined piecewise as

[ \frac{|x|}{x} = \begin{cases} \displaystyle\frac{-x}{x} = -1, & x<0,\[4pt] \displaystyle\frac{x}{x} = 1, & x>0. \end{cases} ]

Since the left‑hand limit equals (-1) while the right‑hand limit equals (1), the two one‑sided limits disagree, and the overall limit does not exist. This discontinuity at (x = 0) is termed a cusp, and the piecewise representation makes the asymmetry immediately apparent.

The Squeeze Theorem in Multivariable Contexts

While our discussion has focused on single‑variable limits, the squeeze theorem extends naturally to functions of several variables. In practice, for instance, if (0 \le f(x,y) \le g(x,y)) and (\lim_{(x,y)\to(a,b)} g(x,y) = 0), then (\lim_{(x,y)\to(a,b)} f(x,y) = 0) as well. This principle proves invaluable when estimating limits of functions that oscillate rapidly in multiple directions, such as (\lim_{(x,y)\to(0,0)} \frac{x^2 y}{x^2 + y^2}), where bounding the numerator by a multiple of the denominator leads directly to the limit value of 0.


Conclusion

The squeeze theorem stands as one of the most versatile tools in the calculus toolkit. By providing a mechanism to bound a difficult expression between two simpler functions that share a common limit, it transforms seemingly intractable problems into manageable ones. Whether dealing with trigonometric oscillations, piecewise definitions, or multivariable scenarios, the theorem's core insight—that a function squeezed between two converging functions must itself converge to their common value—remains powerfully consistent That alone is useful..

Mastery of this technique, together with the ability to identify appropriate bounding functions and correctly analyze piecewise definitions, equips students and practitioners alike to tackle a broad spectrum of limit problems with confidence and precision.

Right Off the Press

Coming in Hot

A Natural Continuation

Dive Deeper

Thank you for reading about What Is The Squeeze Theorem In Calculus. We hope the information has been useful. Feel free to contact us if you have any questions. See you next time — don't forget to bookmark!
⌂ Back to Home