To find the bounds of a rounded number, first identify the unit of accuracy (e.g., if rounded to the nearest 10, the unit is 10).
Calculate the half-unit by dividing the unit of accuracy by 2 (e.g., ).
The Lower Bound is found by subtracting this half-unit from the rounded value: .
The Upper Bound is found by adding this half-unit to the rounded value: .
Addition: To find the maximum sum, add the upper bounds (); for the minimum sum, add the lower bounds ().
Multiplication: The maximum product is found using , while the minimum product uses .
Subtraction: To find the maximum difference, use the largest possible starting value minus the smallest possible subtracted value ().
Division: To find the maximum quotient, divide the largest possible numerator by the smallest possible denominator ().
| Operation | Maximum Result (UB) | Minimum Result (LB) |
|---|---|---|
Rounding vs. Truncation: Rounding moves a number to the nearest unit, whereas truncation simply cuts off digits. For a truncated number, the is the number itself, and the is the number plus one full unit of accuracy.
Inclusive vs. Exclusive: In an error interval , the is inclusive because a value exactly at the would round up to the given value. The is exclusive because a value exactly at the would round up to the next unit.
Discrete vs. Continuous: For continuous data (like height), bounds are calculated using the half-unit rule. For discrete data (like number of people), bounds must represent realistic whole-number limits.