Mathwords logoMathwords

Bounds — Definition, Formula & Examples

Bounds are values that limit a set from above or below. An upper bound is a number greater than or equal to every element in the set, while a lower bound is a number less than or equal to every element.

Given a set SS of real numbers, a value UU is an upper bound of SS if xUx \le U for all xSx \in S, and a value LL is a lower bound of SS if LxL \le x for all xSx \in S. A set that has both an upper and a lower bound is called bounded.

How It Works

To find bounds for a set, look for any value that sits at or beyond the extreme elements. For finite sets, the maximum is the tightest (least) upper bound and the minimum is the tightest (greatest) lower bound. For infinite sets like intervals, you examine the endpoints or behavior of the set. A set can have many upper bounds and many lower bounds — the most useful ones are the tightest: the least upper bound (supremum) and greatest lower bound (infimum).

Worked Example

Problem: Find an upper bound and a lower bound of the set S={2,5,8,11,14}S = \{2, 5, 8, 11, 14\}.
Identify extremes: The smallest element is 2 and the largest is 14.
min(S)=2,max(S)=14\min(S) = 2, \quad \max(S) = 14
Choose bounds: Any value at or below 2 is a lower bound (e.g., 2, 0, or −10). Any value at or above 14 is an upper bound (e.g., 14, 20, or 100). The tightest choices are 2 and 14 themselves.
2x14for all xS2 \le x \le 14 \quad \text{for all } x \in S
Answer: A lower bound is 2 (the greatest lower bound) and an upper bound is 14 (the least upper bound).

Why It Matters

Bounds appear throughout calculus and analysis — for instance, the Squeeze Theorem uses upper and lower bounding functions to determine a limit. In optimization and computer science, bounds help narrow search ranges and prove that algorithms terminate.

Common Mistakes

Mistake: Thinking a set has only one upper bound or one lower bound.
Correction: A set typically has infinitely many upper bounds and infinitely many lower bounds. The special ones are the least upper bound (supremum) and greatest lower bound (infimum), which are the tightest.