Why is division more expensive than multiplication?

But I wonder why is division actually slower than multiplication? Isn't division just a glorified subtraction, and multiplication is a glorified addition?

The big difference is that in a long multiplication you just need to add up a bunch of numbers after shifting and masking. In a long division you have to test for overflow after each subtraction.


Lets consider a long multiplication of two n bit binary numbers.

  • shift (no time)
  • mask (constant time)
  • add (neively looks like time proportional to n²)

But if we look closer it turns out we can optimise the addition by using two tricks (there are further optimisations but these are the most important).

  1. We can add the numbers in groups rather than sequentially.
  2. Until the final step we can add three numbers to produce two rather than adding two to produce one. While adding two numbers to produce one takes time proportional to n, adding three numbers to produce two can be done in constant time because we can eliminate the carry chain.

So now our algorithm looks like

  • shift (no time)
  • mask (constant time)
  • add numbers in groups of three to produce two until there are only two left (time proportional to log(n))
  • perform the final addition (time proportional to n)

In other words we can build a multiplier for two n bit numbers in time roughly proportional to n (and space roughly proportional to n²). As long as the CPU designer is willing to dedicate the logic multiplication can be almost as fast as addition.


In long division we need to know whether each subtraction overflowed before we can decide what inputs to use for the next one. So we can't apply the same parallising tricks as we can with long multiplication.

There are methods of division that are faster than basic long division but still they are slower than multiplication.


CPU's ALU (Arithmetic-Logic Unit) executes algorithms, though they are implemented in hardware. Classic multiplications algorithms includes Wallace tree and Dadda tree. More information is available here. More sophisticated techniques are available in newer processors. Generally, processors strive to parallelize bit-pairs operations in order the minimize the clock cycles required. Multiplication algorithms can be parallelized quite effectively (though more transistors are required).

Division algorithms can't be parallelized as efficiently. The most efficient division algorithms are quite complex (The Pentium FDIV bug demonstrates the level of complexity). Generally, they requires more clock cycles per bit. If you're after more technical details, here is a nice explanation from Intel. Intel actually patented their division algorithm.