Inch Fraction Calculator
Fractions, mixed numbers, and decimals — math that the phone calculator gets wrong.
How to use
Type a value in both fields and pick an operation. The answer updates as you type — no submit button needed.
- Enter a number in Value A — accepts whole numbers (2), fractions (3/8), mixed numbers (1 1/2), or decimals (0.625).
- Pick the operation — plus, minus, times, or divided by.
- Enter a number in Value B using the same formats.
- Read the answer below — shown as a mixed number, fraction, decimal inches, and millimetres.
Reviewed 2 June 2026 · methodology cited
About this calculator
Fractional inches are the working unit on most North American jobsites. A 2×4 stud is 1½″ × 3½″ actual; a 4×8 sheet is 96″ on the long edge; a half-inch drywall sheet is 0.500″ thick. When a cut list calls for nine equal pieces from a 96″ rail, the answer is not a round number — it is 10⅔″ each, and the calculator on your phone returns 10.666666667, which is useless for marking a board.
This tool keeps every calculation in integer arithmetic, so adding 1/2 + 3/8 returns 7/8 exactly — not a decimal approximation. It accepts mixed numbers (1 1/2), proper or improper fractions (3/8 or 11/8), and decimal inches (0.625), and gives you back the simplified fraction, the mixed-number form, the decimal equivalent, and the millimetres reading for cross-checking with a metric tape.
How to use it
Type a value into Value A. Pick the operation: plus, minus, times, or divided by. Type Value B. The result updates as you type.
The inputs are forgiving: a space between whole and fraction (1 1/2), or no space (1½ is not accepted; type 1 1/2). Negative numbers are allowed for subtraction edge cases. Decimal input gets rounded to the nearest 1/64″ and then simplified — close enough for any carpentry application.
The math behind it
Every input is parsed into an integer numerator and denominator. Addition and subtraction use the cross-product over a common denominator: a/b + c/d = (a·d + b·c) / (b·d). Multiplication is a·c / b·d. Division is a·d / b·c, with a guard for divide-by-zero.
The result is then simplified by dividing the numerator and denominator by their greatest common divisor (computed with the Euclidean algorithm). A result with numerator larger than denominator is also displayed as a mixed number (e.g. 11/8 → 1 3/8). The millimetres reading multiplies the decimal value by 25.4 — the exact conversion factor defined by the National Institute of Standards and Technology.
Reference: common inch fractions
| Fraction | Decimal | mm |
|---|---|---|
| 1/16″ | 0.0625″ | 1.588 |
| 1/8″ | 0.125″ | 3.175 |
| 3/16″ | 0.1875″ | 4.763 |
| 1/4″ | 0.25″ | 6.350 |
| 5/16″ | 0.3125″ | 7.938 |
| 3/8″ | 0.375″ | 9.525 |
| 7/16″ | 0.4375″ | 11.113 |
| 1/2″ | 0.5″ | 12.700 |
| 9/16″ | 0.5625″ | 14.288 |
| 5/8″ | 0.625″ | 15.875 |
| 11/16″ | 0.6875″ | 17.463 |
| 3/4″ | 0.75″ | 19.050 |
| 13/16″ | 0.8125″ | 20.638 |
| 7/8″ | 0.875″ | 22.225 |
| 15/16″ | 0.9375″ | 23.813 |
| 1″ | 1.0″ | 25.400 |
Tips for carpenters and framers
Carpenters routinely subtract for joint thickness. A 96″ rail cut into three pieces with two 1/8″ saw kerfs leaves (96 − 2/8) ÷ 3 = 31 15/16″ per piece, not 32″. Use the divide operation, not estimation.
For batten spacing on siding or shelving, divide the wall length minus all gaps by the panel count. The fractional remainder tells you where to favour the trim joint. For framing layouts on 16″ centres, multiply the spacing by stud count to confirm the layout lands square at the corner — a 1/16″ drift over twelve studs becomes 3/4″, which shows in the drywall.
Common gotchas: the 8d common nail is 2½″ long, not 2 5/8″ — the size code does not correspond to the length. The 2× lumber sizes have nominal vs actual dimensions (2×4 = 1½″ × 3½″); the fractional difference matters every time you stack them. And when reading a tape, the longest mark is the inch, the next-longest is the half, then quarter, eighth, sixteenth — count the marks, do not eyeball.
Frequently asked questions
How do I enter a mixed number like 1 and a half?
Type the whole number, then a space, then the fraction. So one and a half is 1 1/2 (one, space, one, slash, two). Do not use a hyphen, do not use the Unicode glyph ½, and do not use a decimal point — those parse as something else.
Why does my phone calculator give a different answer?
A phone calculator works in floating-point decimals, so 1/2 + 3/8 becomes 0.5 + 0.375 = 0.875 — correct, but useless when you need to mark 7/8″ on a board. This calculator keeps the fraction as integers and only converts to a decimal for display. The decimal you see is the exact value, not an approximation.
Why is a decimal input rounded to 1/64?
Most decimal inputs (0.5, 0.625, 0.125) are exact 16ths or 32nds. Some (0.4, 0.3) are not. Rounding to the nearest 1/64″ ensures the displayed fraction is something you can actually find on a tape measure — 64ths are the smallest practical division for carpentry. If you need finer precision, work in millimetres.
Does this handle negative numbers?
Yes. Prefix either input with a minus sign — for example -3/8 or -1 1/2. The result will carry the correct sign. Useful when subtracting larger from smaller, or when checking whether a cut will overshoot a reference mark.
Why both inches and millimetres in the result?
Lumber and sheet goods are imperial in North America. Hardware, fasteners, and metric tape measures are not. A fraction calculator that gives only inches forces you to do the second conversion in your head. We show both so you can pick whichever your next tool reads in.
Can I share a specific calculation?
Yes. Tap “Copy link” and the URL of the current calculation is copied to your clipboard. Paste it into a text or email and the recipient sees the same inputs and result. Useful for sending a cut list to an apprentice.
Does the math work for very large or very small values?
For practical carpentry values (up to several hundred inches, denominators up to 1024), yes — the integer math is exact. Extremely large inputs may overflow JavaScript’s safe integer range; the result would still be correct but the displayed mixed number could lose precision. In that case work in decimal millimetres instead.
Is this calculator suitable for structural or load-bearing decisions?
No. This is a reference utility for layout, cutting, and dimensional math. Any structural decision (beam sizing, joist spacing for a given load, anchor selection) belongs to a licensed engineer or building inspector. The Terms of Use cover this in full.