Last updated: July 17, 2026
Inches to Fraction Calculator
Creators
Dharmendra SinghReviewers

Creators
Dharmendra SinghReviewers
Quick Answer
This calculator converts a decimal inch measurement (or any length in mm, cm, m, ft, or yd) to its fractional-inch equivalent. The user selects a precision denominator (1/2 through 1/128), and the algorithm extracts the decimal part, rounds the numerator, and simplifies via GCD. Outputs include mixed number, improper fraction, feet-and-inches notation, and the raw decimal-inch value.
To convert decimal inches to a fraction, separate the whole-inch part, multiply the decimal remainder by your precision denominator (e.g. 16 for sixteenths), round to the nearest integer, and simplify with GCD. For example, 11.81 inches at 1/16 precision becomes 11 and 13/16 inches.
Key Takeaways
- Multiply the decimal part of inches by the precision denominator and round to the nearest integer to get the numerator.
- Always simplify the resulting fraction using the Greatest Common Divisor (GCD) for the most readable result.
- Use 1/16" precision for general carpentry; 1/32" or 1/64" for precision machining and joinery.
- The conversion factor 1 inch = 25.4 mm is exact by international definition, so metric-to-fraction conversions introduce no additional rounding error beyond the chosen precision.
- Mixed numbers (e.g. 11 13/16") are preferred in trade work; improper fractions (189/16") are easier for algebraic calculation.
Creators
Dharmendra SinghReviewers

Creators
Dharmendra SinghReviewers
Formula
numerator = round(decimal_part × P); simplified = numerator / GCD(numerator, P); result = whole + simplified/P
Where:
- d=Decimal fractional part of inches(inches)
- P=Precision denominator (e.g. 16 for 1/16)(dimensionless)
- W=Whole-inch part(inches)
- n=Rounded numerator before simplification(dimensionless)
Worked Examples
Convert 0.5 inches to fraction
Convert 0.5 decimal inches to the simplest fractional form using 1/16 precision.
- 1Enter 0.5 as input value in inches
- 2Select precision: 1/16 (denominator = 16)
- 3Whole part = floor(0.5) = 0
- 4Decimal part = 0.5
- 5Numerator = round(0.5 × 16) = round(8) = 8
- 6GCD(8, 16) = 8, simplified: 8÷8 = 1, 16÷8 = 2
- 7Result: 1/2 inch
Convert 11.81 inches to mixed number
Convert 11.81 decimal inches to a mixed fractional number using 1/16 precision.
- 1Enter 11.81 as input value in inches
- 2Whole part = floor(11.81) = 11
- 3Decimal part = 11.81 - 11 = 0.81
- 4Select precision: 1/16 (denominator = 16)
- 5Numerator = round(0.81 × 16) = round(12.96) = 13
- 6GCD(13, 16) = 1 — fraction is already simplified
- 7Result: 11 13/16 inches
Convert 7 mm to fractional inches
Convert 7 millimeters to fractional inches using 1/32 precision, as used in workshop measurement.
- 1Enter 7 as input value in millimeters
- 2Convert to inches: 7 ÷ 25.4 = 0.27559 inches
- 3Whole part = 0, decimal part = 0.27559
- 4Select precision: 1/32 (denominator = 32)
- 5Numerator = round(0.27559 × 32) = round(8.819) = 9
- 6GCD(9, 32) = 1 — fraction is already simplified
- 7Result: 9/32 inch
Introduction
The Inches to Fraction Calculator converts any decimal inch measurement — or a metric value in mm, cm, m, ft, or yd — into the standard fractional notation used in construction, woodworking, and precision machining. Choose precision from 1/2 to 1/128 to match the finest markings on your ruler or measuring tape. The result is automatically simplified using the Greatest Common Divisor (GCD) and displayed as a mixed number, improper fraction, and feet-and-inches notation.
What Are Fractional Inches?
Fractional inches are the standard sub-inch divisions used in the US customary and imperial measurement systems. A ruler or measuring tape typically shows markings at every 1/16" or 1/32", and precision instruments can resolve to 1/64" or finer. The fractional system divides one inch into equal parts — halves (1/2), quarters (1/4), eighths (1/8), sixteenths (1/16), and so on — always using powers of two as the denominator. This binary subdivision makes it straightforward to mark with a compass or divider. When digital tools, CAD software, or metric measurements produce decimal values like 0.8125, tradespeople must translate them to fractions like 13/16" to actually mark the material. This calculator automates that translation instantly.
How to Convert Decimal Inches to Fractions
The conversion follows five steps:
1. Identify the whole-inch part: whole = floor(decimal_inches). For 11.81", whole = 11.
2. Extract the decimal fraction: frac = decimal_inches - whole. For 11.81", frac = 0.81.
3. Choose precision (P): common choices are 16 (sixteenths) for general work, 32 or 64 for finer work.
4. Round the numerator: n = round(frac × P). For frac=0.81 and P=16: n = round(12.96) = 13.
5. Simplify with GCD: divide both n and P by GCD(n, P). GCD(13,16)=1, so the result is 13/16.
Combine: 11 + 13/16 = 11 13/16".
For other units, first multiply by the appropriate factor (mm: ÷25.4; cm: ÷2.54; ft: ×12; yd: ×36). See our inches to centimeters converter for the reverse direction.
Choosing the Right Precision
The precision setting determines the denominator of your fraction, which controls how finely the result is resolved: - 1/2 (halves) — rough layout, never used for accurate measurements. - 1/4 (quarters) — material rough cuts and quick estimates. - 1/8 (eighths) — standard for most carpentry and drywall. - 1/16 (sixteenths) — the most common shop standard; matches typical tape-measure markings. - 1/32 (thirty-seconds) — woodworking, furniture joinery, and HVAC ductwork. - 1/64 (sixty-fourths) — precision machining, gauge blocks, and inspection. - 1/128 (128ths) — gauge and instrument calibration. Higher precision does not mean higher accuracy unless your input value is genuinely that precise. If you measured with a tape reading to 1/16", use 1/16 precision. See our feet and inches calculator for mixed-unit arithmetic.
Converting Metric and Imperial Units
The calculator accepts six input units and converts them all to decimal inches before applying the fraction algorithm: | Unit | Factor to inches | |------|------------------| | Inches | × 1 | | Millimeters | ÷ 25.4 | | Centimeters | ÷ 2.54 | | Meters | ÷ 0.0254 | | Feet | × 12 | | Yards | × 36 | These exact conversion factors are defined by international agreement and are documented by NIST in SP 811. For example, 1 inch = 25.4 mm exactly — there is no rounding — so metric-to-fraction conversions are only limited by the precision setting you choose. A practical note: 7 mm converts to 0.27559…", which at 1/32 precision rounds to 9/32" (= 0.28125"), giving an error of only 0.006". This is typically acceptable for woodworking but not for precision gauge work.
Practical Applications in Construction and Machining
Fractional inches are essential in many industries: Construction and carpentry: Dimensional lumber, drywall, and flooring are specified in fractional inches. A builder converting a metric architectural drawing must express 152.4 mm as exactly 6" before ordering materials. Precision machining: CNC programs may produce decimal coordinates (e.g., 0.4375") that machinists must verify against fractional tolerances (7/16"). The Machinery's Handbook lists drill and tap sizes in both decimal and fractional form. Plumbing and HVAC: Pipe diameters and fittings use fractional inch standards (1/4", 3/8", 1/2", 3/4", 1"). Electronics: PCB trace widths and hole diameters are often specified to 1/64" or 0.001" tolerance. Fabric and sewing: Seam allowances and pattern pieces use 1/4", 3/8", and 5/8" increments. Converting metric patterns from European suppliers requires a reliable decimal-to-fraction tool.
Fraction Simplification via Greatest Common Divisor
After computing the raw numerator, the fraction may not be in its simplest form. For example, at 1/64 precision, the value 0.5" gives numerator = round(0.5 × 64) = 32, yielding 32/64. Dividing both by GCD(32,64) = 32 simplifies this to 1/2. The GCD algorithm used here is the classical Euclidean algorithm: given two integers a and b, the GCD is computed by repeated remainder: GCD(a, b) = GCD(b, a mod b) until b = 0. This runs in O(log min(a,b)) time and always produces the smallest possible denominator, ensuring human-readable results regardless of the chosen precision. Simplification is important for usability: a carpenter does not want to be told to cut at "32/64"" — they want "1/2"".
Quick Reference Card
Inches to Fraction Quick Reference
Quick reference • Inches to Fraction Calculator
numerator = round(decimal_part × P); simplified = numerator ÷ GCD(n, P); result = whole + simplified/PValid range: Any non-negative decimal value; precision P from 2 to 128 (powers of two)
Common Values
⚠ Watch Out
- •Rounding to a coarse precision (1/8 or 1/4) may introduce a noticeable error for values with a decimal part far from a fraction boundary.
- •Very small inputs (< 0.008 in) may round to zero at 1/64 precision; use 1/128 for sub-millimeter values.
- •The result is an approximation; verify the simplified fraction is within your project's tolerance before cutting.
- •Metric inputs use the exact factor 1 inch = 25.4 mm, but floating-point arithmetic may introduce tiny rounding differences — always round to a practical precision.
Pro Tips
- →Match your calculator precision to your measurement tool: if your tape only resolves 1/16", setting precision to 1/64" gives false accuracy.
- →For CNC programming, use decimal output (convertedDecimalInches) and reserve fractions for shop-floor communication.
- →When the GCD equals 1, the fraction is already in lowest terms — no further simplification is possible.
- →To verify manually: multiply the simplified fraction by your precision (e.g., 13/16 × 16 = 13) and check it matches the rounded numerator.
FAQs
What is 0.5 inches as a fraction?
0.5 inches equals 1/2 inch. The decimal 0.5 has a fractional part of 0.5; multiplying by 2 gives numerator 1 and denominator 2, so the result is exactly 1/2".
How do I convert 7 mm to fractional inches?
Divide 7 by 25.4 to get 0.27559 inches. At 1/32 precision, round(0.27559 ×
- 1= 9, so the result is 9/32". At 1/64 precision, round(0.27559 ×
- 2= 18, giving 18/64" = 9/32" (same after simplification)
What precision should I use for woodworking?
1/16" is the standard for most woodworking and furniture making. Finer joints, inlays, or hand-tool work often call for 1/32". Only specialized instrument-grade joinery requires 1/64".
Can I convert feet and yards to fractional inches?
Yes. Select feet (ft) or yards (yd) from the input unit dropdown. The calculator multiplies by 12 (feet) or 36 (yards) to convert to decimal inches, then applies the fraction algorithm.
What is the difference between a mixed number and an improper fraction?
A mixed number combines whole and fractional parts: e.g., 11 13/16". An improper fraction expresses the same value with the numerator larger than the denominator: 189/16". Both are mathematically equivalent; mixed numbers are preferred in trade work.
Why does the result sometimes differ at different precisions?
The fraction is an approximation rounded to the nearest multiple of 1/P. A value of 0.81" at 1/16 precision rounds to 13/16" (0.8125), while at 1/32 it rounds to 26/32" = 13/16" (same). But at 1/8 precision it rounds to 6/8" = 3/4" (0.75), which is further from 0.81. Higher precision generally gives a closer approximation.