Whether you are packing a suitcase, checking a gym personal-record, or comparing medical charts across countries, knowing how to convert kilograms to pounds (and back) is one of the most frequently needed everyday calculations. This converter handles it instantly and accurately, with no rounding shortcuts.
The exact conversion factor
The international avoirdupois pound was defined in 1959 by a multilateral agreement between the UK, US, Canada, Australia, New Zealand and South Africa:
1 lb = 0.45359237 kg (exact, by international treaty)
Inverting that definition gives the factor used by this calculator:
lb = kg / 0.45359237
or equivalently:
lb = kg × 2.2046226218…
The decimal expansion is infinite and non-repeating, so every conversion you see is rounded to a practical number of decimal places — the underlying arithmetic uses full 64-bit floating-point precision throughout.
Stones and pounds
In the United Kingdom and Ireland body weight is traditionally stated in stones and pounds rather than plain pounds or kilograms. One stone equals exactly 14 pounds (another exact Imperial definition). To convert:
- Calculate the total pounds:
lb = kg × 2.2046226… - Divide by 14 to get whole stones:
stones = floor(lb / 14) - The remainder is the extra pounds:
extra_lb = lb mod 14
Example: 80 kg = 176.37 lb = 12 stone 8.37 lb (often written “12 st 8”).
Worked example
A patient weighs 68 kg. What is that in pounds and in stones and pounds?
- Pounds: 68 × 2.2046226 = 149.91 lb
- Stones: floor(149.91 / 14) = 10 stone
- Remaining pounds: 149.91 - (10 × 14) = 9.91 lb
Result: 149.91 lb or 10 st 9.9 lb
This is a useful range to know — a typical healthy adult male in the UK is roughly 70–85 kg (154–187 lb, 11–13 stone) and a typical adult female roughly 60–75 kg (132–165 lb, 9.5–11.5 stone) according to NHS reference data.
Common reference points
| Kilograms | Pounds | Stones and lb |
|---|---|---|
| 50 kg | 110.2 lb | 7 st 12.2 lb |
| 60 kg | 132.3 lb | 9 st 6.3 lb |
| 70 kg | 154.3 lb | 11 st 0.3 lb |
| 80 kg | 176.4 lb | 12 st 8.4 lb |
| 100 kg | 220.5 lb | 15 st 10.5 lb |
Why the factor is 2.2046… not exactly 2.2
Many people use 2.2 as a quick mental shortcut, and for rough calculations it is fine. But at 100 kg the shortcut gives 220 lb versus the true 220.46 lb — an error of nearly half a pound. For luggage allowances, pharmaceutical dosing, clinical BMI calculations and sports weigh-ins, the full factor matters. This calculator uses the full factor every time.