Multiplication of floating point numbers is much easier than addition because you simply multiply the two mantissas and add the exponents. There is no shifting of one of the operands as with addition. The resulting mantissa can never be equal to or greater than 1 because both the multiplicand and multiplier are less than 1. But with multiplication, the possibility of overflow is much greater because adding two 2-digit numbers could often result in a value greater than 99. But multiplying a large number by a small one poses no special problems and does not necessarily cause the same kind of problem as adding two very different numbers. |