How Long Multiplication Works
Long multiplication is the standard written method for multiplying multi-digit numbers by hand. It works because of the distributive property: any number can be broken into a sum of place values (thousands, hundreds, tens, ones), and multiplying two numbers is the same as multiplying every place-value piece of one number by every place-value piece of the other, then adding all those pieces together. The written algorithm is a shortcut for doing that expansion one digit of the multiplier at a time instead of one digit of each number at a time.
The algorithm, step by step
Write the multiplicand on top and the multiplier underneath. Starting with the rightmost (ones) digit of the multiplier, multiply it by the entire top number to get the first partial product. Move to the next digit left (the tens digit), multiply it by the entire top number, and shift that partial product one place to the left (equivalent to multiplying by 10) — in the classic layout this is shown by writing a placeholder 0 in the ones column. Continue for the hundreds digit (shift two places), and so on for every digit of the multiplier. Finally, add all the partial products together in a single column addition to get the final product. For example, 3247 x 58: the ones digit 8 gives 3247 x 8 = 25,976; the tens digit 5 gives 3247 x 5 = 16,235, shifted left one place to 162,350; adding 25,976 + 162,350 = 188,326.
Multiplying decimals with the same method
Long multiplication handles decimals by temporarily ignoring the decimal points: strip them out, multiply the two numbers as if they were whole numbers using the steps above, then count how many digits appeared after the decimal point in each original factor. Add those two counts together and place the decimal point that many digits from the right in your product. For instance, 3.2 x 1.5 has one decimal place in each factor (two total), so 32 x 15 = 480 becomes 4.80.
Common mistakes
- Forgetting the placeholder shift: every partial product after the first must be shifted one additional place left, or the digits will be added in the wrong columns.
- Losing track of carries: when a single-digit multiplication produces a two-digit result, the tens digit must be carried into the next column, just like in addition.
- Misplacing the decimal point: count decimal places in both factors, not just one, and count them in the original numbers, not in an intermediate result.
- Sign errors: the product of two negative numbers is positive; the product of one negative and one positive number is negative.
Checking your result with casting out nines
Casting out nines is a quick error check based on the fact that a number and its digit sum always leave the same remainder when divided by 9. Find the remainder of each factor mod 9, multiply those two remainders together and reduce the result mod 9, then compare it to the remainder of your product mod 9. If the two don't match, there's an arithmetic mistake somewhere in the long multiplication. A match doesn't guarantee the answer is perfect (it can miss digit-swap errors that happen to preserve the remainder), but it catches the vast majority of common slips.