Perform precise addition, subtraction, multiplication, and division of lengths expressed in feet and inches. Visualize results on an interactive scale. Supports fractional inches (1/2, 1/4, 1/8, 1/16) and decimal inputs.
The imperial system of measurement, particularly feet and inches, remains the standard in the United States and is widely used in construction, architecture, woodworking, and interior design. Unlike the decimal-based metric system, imperial units are based on historical conventions: 1 foot = 12 inches, with inches further subdivided into fractions — halves, quarters, eighths, sixteenths, and even thirty-seconds in precision work.
This Feet and Inches Calculator is designed to handle the arithmetic of these units seamlessly. Whether you are adding lengths for a framing project, subtracting for a cut list, scaling a dimension by a factor, or dividing a board into equal sections, this tool delivers accurate results in the format you need — feet and inches, pure inches, or decimal feet.
Base conversion: 1 ft = 12 in · 1 in = 2.54 cm (exact)
All calculations internally use inches as the base unit, then convert back to feet and inches for display.
Tip: Use the preset examples to quickly see how the calculator handles common scenarios. The fraction parser understands standard notation like 1/2, 3/4, 5/8, 11/16, and more.
Calculate total wall lengths, floor joist spans, and material cut lists. Includes header beam net heights, foundation diagonal cross-checking (Pythagorean theorem with imperial units), and precise rafter layout for roofing.
Precisely dimension furniture parts, calculate board feet, and determine joint placements. Particularly suited for hard woodworking requiring 1/8″ and 1/64″ precision, as well as layout of dovetail and finger joints with equal spacing.
Plan room layouts, furniture spacing, and curtain lengths. Ideal for calculating total fabric length for curtain pleating ratios, baseboard miter cutting allowances, and picture frame centering positioning.
A carpenter is building a 16′ × 12′ deck. The joists are spaced 16″ on center (O.C.). To determine the number of joists needed, they divide the total length (16 ft = 192 in) by the spacing (16 in): 192 ÷ 16 = 12 joists. But they also need to account for the rim joist and double-check the layout. Using this calculator, they enter 16′ 0″ ÷ 16″ and get 12.0 — confirming the count. For the ledger board attachment, they add 2′ 6″ for the stair landing: 16′ 0″ + 2′ 6″ = 18′ 6″. The tool makes these repetitive calculations fast and error-free.
Pro Tip for Material Ordering: To account for cutting waste, a 10%~15% waste factor is typically added. Simply multiply the final total length (18′ 6″) by 1.15 using this tool's multiplication mode to get approximately 21′ 3″ for actual purchase, preventing costly reorders due to material shortages.
Internally, the calculator converts all inputs to a single unit — inches — using the formula:
totalInches = feet × 12 + inches
After performing the chosen arithmetic operation (addition, subtraction, multiplication by a scalar, or division by a scalar), the result is converted back to feet and inches:
feet = floor(totalInches / 12) · inches = totalInches % 12
For addition and subtraction, both operands are lengths. For multiplication and division, the second operand is treated as a dimensionless scalar — this is the most common need in scaling and partitioning. The result is then expressed in feet and inches, with the option to view pure inches or decimal feet.
Fractional inch inputs are parsed using a regular expression that handles numerator/denominator patterns. The result is always displayed with the fraction reduced to its simplest form.
Note on Precision and Industry Tolerances: This calculator rounds to the nearest 1/32 inch for display, following the recommended field measurement tolerance of the American Wood Council (AWC). For higher-precision machinery or instrument installation, developers can modify the internal precision variable to 1/64 or 1/128. All internal computations use double-precision floating-point (IEEE 754), ensuring zero cumulative error for standard engineering magnitudes (up to ±1e15 inches).
The foot as a unit of measurement has ancient origins — the length of a human foot varied across cultures, but was standardized in England in the 13th century. The inch was defined as the length of three barleycorns. The modern international foot (0.3048 m) was adopted in 1959 by the U.S. and Commonwealth nations. While most of the world uses the metric system, the imperial foot-and-inch system persists in the United States, Canada (for construction), and the United Kingdom (for road signs and certain trades). This calculator bridges the gap for professionals working in imperial environments.
numerator/denominator (e.g., 1/2, 3/4, 5/8, 11/16). It also accepts decimal values like 6.5. The result is displayed in the same fractional format.