math mascot
math7 min read

Metric vs Imperial: How Measurement Systems Work

The world runs on two measurement systems: metric (used by ~95% of the world) and imperial/US customary (used daily in the US, and partially in the UK). Converting between them is one of the most common everyday math tasks — whether you are following a recipe, shipping a package, or checking your weight at the doctor.


How the Metric System Works

Metric is built on powers of 10. Every unit is exactly 10x, 100x, or 1000x the next. The base units are the meter (length), gram (mass), and liter (volume). Prefixes do all the scaling:

  • milli- = 1/1000 (1 kg = 1000 g = 1,000,000 mg)
  • centi- = 1/100 (1 m = 100 cm)
  • kilo- = 1000 (1 km = 1000 m)
mgmilligramx1000ggramx1000kgkilogramx1000ttonneMetric: each step is exactly x1000Imperial: 1 lb = 16 oz, 1 stone = 14 lb, 1 ton = 2000 lb (irregular)

This decimal structure is why metric conversions are trivial — you just move the decimal point. Converting 2.5 kg to grams? Move three places right: 2500 g. No memorization needed.


The Imperial / US Customary System

Imperial units evolved from historical standards — the foot from actual human feet, the pound from Roman libra pondo, the cup from common drinking vessels. The conversion factors are irregular because they were never designed as a coherent system:

  • 1 mile = 5,280 feet = 1,760 yards
  • 1 pound = 16 ounces
  • 1 gallon = 4 quarts = 8 pints = 128 fluid ounces
  • 1 cup = 8 fluid ounces = 16 tablespoons = 48 teaspoons
UK vs US measures differ. A US pint is 473 mL, but a UK pint is 568 mL. A US gallon is 3.785 L, but an Imperial gallon is 4.546 L. The UK stone (14 pounds) is commonly used for body weight there but rarely in the US.

How Unit Conversion Works Mathematically

Every conversion uses a conversion factor — a ratio that equals 1. Since 1 kg = 2.2046 lb, the ratio 2.2046 lb / 1 kg equals 1. Multiplying by 1 does not change the value, only the units:

5 kg x (2.2046 lb / 1 kg) = 11.023 lb

To go the other direction, flip the fraction:

150 lb x (1 kg / 2.2046 lb) = 68.04 kg

The Base-Unit Strategy

Converters typically pick one base unit (grams for weight, milliliters for volume) and store every unit as a multiplier. To convert between any two units:

  • Convert source to base: base = value x source.toBase
  • Convert base to target: result = base / target.toBase

This two-step approach means you only need N conversion factors (one per unit) instead of N x N (one per pair).


Cooking Conversions: Volume vs Weight

Cooking adds a complication: recipes mix volume and weight measurements. "1 cup of flour" is a volume, but flour density varies — a loosely scooped cup weighs ~120g while a packed cup is ~160g. This is why professional bakers prefer weight measurements.

Volume-to-volume conversions (cups to mL) are exact. But volume-to-weight depends on the ingredient. Simple converters assume water density (1 mL = 1 g), which works for liquids but is only approximate for solids.

Key cooking equivalents worth memorizing: 1 cup = 237 mL, 1 tbsp = 15 mL, 1 tsp = 5 mL, 1 oz = 28 g, 1 lb = 454 g. These get you 90% of the way in any recipe conversion.

Specialty Units

Some fields use their own measurement units:

  • Troy ounces (31.1 g) for precious metals — heavier than regular ounces (28.3 g)
  • Carats (0.2 g) for gemstones
  • Grains (64.8 mg) for ammunition and pharmaceuticals
  • Stones (6.35 kg / 14 lb) for body weight in the UK

Try it yourself

Put what you learned into practice with our Weight & Mass Converter.