Lower and Upper Bounds
๐ What Are Bounds?โ
When a value is rounded or truncated, it is no longer exact. The lower bound and upper bound show the range within which the actual value lies.
๐งฎ Key Conceptsโ
1. Rounding to the Nearest Whole Number / Decimal / Significant Figureโ
-
When a value is rounded, it could be slightly less or more than the rounded value.
-
The range of possible values is from:
-
Lower Bound = rounded value โ half the degree of accuracy
-
Upper Bound = rounded value + half the degree of accuracy
-
โ How to Find Boundsโ
Rounding To | Step Size | Lower Bound | Upper Bound |
---|---|---|---|
Nearest 10 | 10 | value โ 5 | value + 5 |
1 dp | 0.1 | value โ 0.05 | value + 0.05 |
2 sf | Depends | Half the unit place | Half the unit place |
๐ Example:
If a length is 12.4 cm (rounded to 1 decimal place):
-
Step size = 0.1
-
Lower bound = 12.4 โ 0.05 = 12.35 cm
-
Upper bound = 12.4 + 0.05 = 12.45 cm
โ Calculations with Boundsโ
โ ๏ธ Important Rule:โ
-
Addition/Subtraction: Use extreme combinations to find min and max possible results.
-
Multiplication/Division: Use extreme combinations that increase or decrease the result as much as possible.
โ 1. Additionโ
Use lower + lower for the smallest result
Use upper + upper for the largest result
๐ Example:
Length A = 5.3 m (ยฑ0.05) โ LB = 5.25, UB = 5.35
Length B = 2.6 m (ยฑ0.05) โ LB = 2.55, UB = 2.65
-
Min total = 5.25 + 2.55 = 7.80 m
-
Max total = 5.35 + 2.65 = 8.00 m
โ 2. Subtractionโ
Use lower โ upper for the smallest result
Use upper โ lower for the largest result
๐ Example:
A = 8.1 cm (ยฑ0.05) โ LB = 8.05, UB = 8.15
B = 3.4 cm (ยฑ0.05) โ LB = 3.35, UB = 3.45
- Min difference = 8.05 โ 3.45 = 4.60 cm
- Max difference = 8.15 โ 3.35 = 4.80 cm
โ๏ธ 3. Multiplicationโ
Use lower ร lower for the smallest result
Use upper ร upper for the largest result
๐ Example:
Length = 4.2 m (ยฑ0.05) โ LB = 4.15, UB = 4.25
Width = 1.8 m (ยฑ0.05) โ LB = 1.75, UB = 1.85
-
Min area = 4.15 ร 1.75 = 7.26 mยฒ
-
Max area = 4.25 ร 1.85 = 7.86 mยฒ
โ 4. Divisionโ
Use lower รท upper for the smallest result
Use upper รท lower for the largest result
๐ Example:
Distance = 120 km (ยฑ0.5) โ LB = 119.5, UB = 120.5
Time = 2 h (ยฑ0.05) โ LB = 1.95, UB = 2.05
-
Min speed = 119.5 รท 2.05 = โ 58.29 km/h
-
Max speed = 120.5 รท 1.95 = โ 61.79 km/h
โจ Summary Tableโ
Operation | Min Value (Lower Bound) | Max Value (Upper Bound) |
---|---|---|
Addition | LB + LB | UB + UB |
Subtraction | LB โ UB | UB โ LB |
Multiplication | LB ร LB | UB ร UB |
Division | LB รท UB | UB รท LB |
๐ง Quick Tip:โ
Always identify the degree of accuracy first (nearest 0.1, 1, 10, etc.) and calculate the bounds before doing any operations.