Skip to main content

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 ToStep SizeLower BoundUpper Bound
Nearest 1010value โˆ’ 5value + 5
1 dp0.1value โˆ’ 0.05value + 0.05
2 sfDependsHalf the unit placeHalf 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โ€‹

OperationMin Value (Lower Bound)Max Value (Upper Bound)
AdditionLB + LBUB + UB
SubtractionLB โˆ’ UBUB โˆ’ LB
MultiplicationLB ร— LBUB ร— UB
DivisionLB รท UBUB รท LB

๐Ÿง  Quick Tip:โ€‹

Always identify the degree of accuracy first (nearest 0.1, 1, 10, etc.) and calculate the bounds before doing any operations.