Maximize pieces per 4x8 or 5x5 sheet — best orientation, kerf allowance, and waste percentage.
Pieces per sheet
Best orientation: A
9
Orientation A (length along sheet)
3 × 3 = 9
Orientation B (rotated 90°)
7 × 1 = 7
Sheets needed
3
Waste per sheet
43.8%
A full sheet is usually bigger than its nominal size (a 4×8 is 48-1/8 × 96-1/8 in from most mills), but the math stays the same — floor the long dimension into piece-length-plus-kerf slots, floor the short dimension into piece-width slots, multiply.
Always try both orientations. Rotating the piece 90° often changes yield by one or two pieces per sheet, which is the difference between buying 4 sheets and 5.
cols = floor((sheet_length + kerf) ÷ (piece_length + kerf))
rows = floor((sheet_width + kerf) ÷ (piece_width + kerf))
pieces_per_sheet = max(orientA, orientB)
sheets = ceil(quantity ÷ pieces_per_sheet)
Kerf Allowance
How much material a saw blade eats across multiple cuts — ripping, crosscuts, bandsaw, laser.
Board Feet
Convert lumber dimensions to board feet and project cost — the standard unit for buying rough lumber.
Wood Project Cost
Add lumber, hardware, finish, and labor into a true project cost — and cost per piece if you are making multiples.