Decimals into the compound formats people actually write — and the rounding order that decides whether the answer can exist at all.
Calculator
Try:
5.999 in feet and inches
6ft 0in
rounding each part on its own would give 5ft 12in, which cannot exist
Carry first, then round
Correct — carry, then round6ft 0inevery remainder below its modulus
Wrong — round each part on its own5ft 12in12in is a whole ft
Back to a decimal6the round trip closes
The whole bug is an order of operations. Convert everything into the smallest unit, round once, then carry back up — and 12in can never appear, because that many is a whole ft. Round each part separately and it appears constantly, in spreadsheets, in code, and on printed forms.
The same 5.999 in every compound format
Correct against naive, across six systems
Format
Modulus
Correct
Rounded separately
Feet and inches
12
6ft 0in
5ft 12in
Stones and pounds
14
6st 0lb
5st 14lb
Pounds and ounces
16
6lb 0oz
5lb 16oz
Hours and minutes
60
6h 0min
5h 60min
Hours, minutes and seconds
60 then 60
5h 59min 56s
5h 59min 56s
Degrees, minutes and seconds
60 then 60
5° 59' 56"
5° 59' 56"
Every row has a modulus and every modulus is a place the same bug can appear. The three-part rows are worse, because a rounding error can carry twice — 59.9 seconds becomes 60, which becomes a minute, which can push 59 minutes to an hour.
Can this value exist?
VerdictImpossible6 ft as a decimal
12in is at or above the 12 that make one ft, so it should have carried.
This is the same test applied to something a person wrote rather than something a machine produced. A remainder at or above its own modulus should have carried, and seeing one on a form is a reliable sign that whatever produced it rounded in the wrong order.
Decimal hours are not a clock
What it actually is7:45the decimal times sixty
Read as a clock time7:75the digits taken as minutes
Difference30 minutesper entry, and it compounds over a week
7.75 hours is 7:45, not 7:75. Timesheets are kept in decimal hours and clocks are kept in minutes, and the two look identical on a page. The error is always in the same direction — reading decimals as minutes over-states the time — and at half an hour per entry it is not a rounding difference, it is a payroll one.
What this converter covers
Six compound formats with the correct answer beside the naive one, a validity check for values someone else wrote, and the decimal-hours trap.
Feet and inches, stones and pounds, pounds and ounces
Hours and minutes, hours-minutes-seconds, and degrees-minutes-seconds
The correct carry shown beside the wrong one, for every format
Whether a written compound value can exist at all
Decimal hours against clock times, and what the confusion costs
Carry, then round Six formats Decimal hours ≠ clock Decimal ↔ compound
Free, no signup — exact by definition, not an estimate.
Updated 8 September 2026
At a glance
Formula shown
Convert to the smallest unit, round once, then carry back up
Scenario support
5.999 ft is 6 ft 0 in, not 5 ft 12 in · 7.75 hours is 7:45, not 7:75
Educational estimate
Planning support from the values you enter — not professional advice.
Where 5 ft 12 in comes from
Converting 5.999 feet into feet and inches is arithmetic anyone can do, and doing it in the obvious order produces an answer that cannot exist.
The obvious order is: take the whole feet, multiply the remainder by twelve, round. Five feet, and 0.999 × 12 = 11.988, which rounds to 12. So “5 ft 12 in”.
There is no such height. Twelve inches is a foot, so the answer is six feet exactly — and the arithmetic never noticed, because by the time the rounding happened the feet had already been decided.
The same bug in three formats
Value
Rounded part by part
Correct
5.999 ft
5 ft 12 in
6 ft 0 in
9.99 st
9 st 14 lb
10 st 0 lb
2.999 h
2 h 60 min
3 h 0 min
The fix is an order of operations rather than a special case. Convert the whole value into the smallest unit, round once there, and carry back up. Do it that way and the impossible value cannot be produced, because the carry happens after the rounding rather than before it.
Every format has a modulus
The bug is not about feet. Every compound format has a number at which the smaller unit becomes one of the larger, and every one of them is a place this can happen.
The moduli, and where they are met
Format
Modulus
Used for
Feet and inches
12
Height, timber, rooms
Stones and pounds
14
Body weight, UK and Ireland only
Pounds and ounces
16
Groceries, post, birth weights
Hours and minutes
60
Timesheets, durations
Hours, minutes, seconds
60 then 60
Elapsed time, video
Degrees, minutes, seconds
60 then 60
Latitude and longitude
The three-part formats are worse, because a rounding can carry twice. 1 h 59 min 59.6 s rounds to 1 h 59 min 60 s, which should carry to 2 h 0 min 0 s — two carries from one rounding, and an implementation that handles one and not the other will produce “1 h 60 min 0 s” instead.
Note also that the moduli are not all 60 or all 12. Fourteen pounds to the stone is the one people most often get wrong when writing code, because it is the only one in the set that is not a familiar number from somewhere else.
One value, one sign
A negative compound value has a single sign in front of the whole thing, not one on each part, and getting this wrong quietly doubles the magnitude.
Minus five and a half feet is −5 ft 6 in. It is not “−5 ft −6 in”, which would be minus five and a half feet again if the parts were added — and it is not “−5 ft 6 in” interpreted as minus five feet plus six inches, which is minus four and a half.
The convention is that the sign belongs to the composite quantity and the parts are always non-negative. So the way to convert a negative value is to take its absolute value, do the whole carry, and put the sign back at the end — which is what the calculator above does, and why its parts are never negative.
This matters most where compound values are subtracted: a difference of −0 ft 3 in is a real and common result, and it is where an implementation that writes the sign on the wrong part becomes visibly wrong.
Decimal hours are not a clock
A related confusion, and the one that costs actual money: decimal hours and clock times share their digits and mean different amounts.
7.75 hours is 7 hours 45 minutes. Read as a clock time it looks like 7:75, which is not a time at all — and the instinct to read it as “seven and seventy-five” over-states the duration by half an hour.
What the confusion is worth per entry
Decimal hours
Actually
Read as digits
Out by
1.5
1:30
1:50
20 min
3.25
3:15
3:25
10 min
7.75
7:45
7:75
30 min
0.9
0:54
0:90
36 min
The error always runs in the same direction — reading decimals as minutes over-states the time — because a hundred is more than sixty. On a timesheet that is a systematic overstatement rather than a random one, so it does not average out across a week.
Payroll systems ask for decimal hours and clocks display minutes, which puts the conversion at exactly the point where a person is copying between two systems. If a figure ends in .25, .5 or .75 it is almost certainly decimal hours; if it ends in anything above .59 it definitely is.
Spotting it on a form
The useful skill is recognising the bug in something someone else produced, because its output is always a value that cannot exist.
The test is one line: is any remainder at or above its own modulus? Twelve inches, fourteen pounds, sixteen ounces, sixty minutes, sixty seconds — each of those should have carried, and seeing one means whatever produced it rounded in the wrong order.
It shows up most often in spreadsheets, where the two parts are usually two separate formulas and the second has no way of telling the first that it rounded up. It also shows up in printed reports where a database stored a decimal and a template formatted it in two independent steps.
The calculator above will take a written pair and tell you whether it is possible, which is worth doing once on any form or report that produces these formats automatically. A single “5 ft 12 in” in a set of records is not an isolated typo — it is evidence that every value in the set was rounded the same way, and that the ones which happened not to land on a boundary are wrong by a fraction rather than visibly.
Related calculators
Other length, weight and time tools:
LengthMillimetres to miles on the exact 1959 factors, with the mil kept clearly apart from the millimetre — they differ 25-fold.
WeightKilograms, pounds, ounces, stone and tonnes, listing the short, long and metric ton separately — three masses, one word.
Fractional InchInch fractions, decimals, thou and millimetres — showing the answer at every denominator and what each rounding costs.
Time UnitNanoseconds to fortnights exactly, with months as a real calendar range and four different years side by side — because two of those units have no fixed length.
CoordinatesLatitude and longitude between degrees-minutes-seconds and decimal degrees, showing how far the common misreading would put you.
Time ZoneConvert a date and time between EST, IST, GMT, UTC, CET, PST, or any IANA time zone, with live daylight-saving handling and a multi-zone world clock view.
The measurement guidance is where the rounding-once rule comes from; the other two are why these compound formats are still in everyday and in some cases legal use rather than being a historical curiosity.
Guide for the Use of the International System of Units (NIST SP 811)National Institute of Standards and Technology · verified 2026-09-08 · Guidance on expressing quantities and on rounding, including that a converted value should be rounded once to the intended precision rather than at intermediate steps — which is the rule this page turns into a carry order
National Physical LaboratoryNPL · verified 2026-09-08 · The UK national measurement institute’s guidance on units and on the imperial units still in legal use for particular purposes, including the stone for body weight
Weights and measures: the lawUK Government · verified 2026-09-08 · Which imperial units remain lawful for trade and in what contexts in the United Kingdom, which is why compound formats such as stones and pounds and feet and inches persist alongside metric ones
Conversion note
This converts between a decimal and a compound way of writing the same quantity. It does not decide how much precision is appropriate: rounding a height to the nearest inch or a weight to the nearest pound loses information, and whether that matters depends entirely on what the figure is for. Where a measurement feeds a calculation, keep the decimal and round only at the point of display — rounding first and computing afterwards accumulates error in a way this page cannot see. Legal and trade requirements about which units may be used, and to what precision, vary by country and by purpose; where a form, a contract or a regulation specifies a format, that specification governs. Nothing here addresses measurement uncertainty in the original figure, which is usually larger than the rounding discussed on this page.
Published the Feet and Inches Converter: decimals into six compound formats -- feet and inches, stones and pounds, pounds and ounces, hours and minutes, hours-minutes-seconds and degrees-minutes-seconds -- and back.
Shows the CORRECT answer beside the naive one for every format, because the bug this page is about is invisible in a single answer: 5 ft 12 in only looks wrong when 6 ft 0 in is next to it.
Names the cause as an order of operations rather than a special case. Convert into the smallest unit, round ONCE, then carry back up, and the impossible value cannot be produced; round each part independently and it appears constantly.
Records the same failure in every format: 5.999 ft gives 5 ft 12 in, 9.99 st gives 9 st 14 lb and 2.999 h gives 2 h 60 min, none of which can exist.
Notes that three-part formats are worse, since one rounding can carry twice -- 1 h 59 min 59.6 s should become 2 h 0 min 0 s, and an implementation that handles one carry produces 1 h 60 min 0 s.
States that a negative compound value carries ONE sign in front of the whole quantity and none on the parts, and that writing it on every part double-counts the magnitude.
Includes a validity check for a value someone else wrote, since a remainder at or above its own modulus is proof that whatever produced it rounded in the wrong order.
Adds the decimal-hours trap, where 7.75 hours read as 7:75 rather than 7:45 over-states by half an hour, always in the same direction, on exactly the boundary where a person copies between a clock and a payroll system.
Verified by 115 automated cases, asserting that the naive method produces the impossible values and the correct one does not, that every format carries correctly at a value just under a whole unit, that the parts of a negative result are all non-negative, and that reading decimals as minutes always over-states, by 20 minutes at 1.5 hours and 30 at 7.75.
Add this calculator to your site
Responsive embed — and private: nothing your visitors type leaves their browser.