Prerequisite – IEEE Standard 754 Floating Point Numbers
Problem:-
Here, we have discussed an algorithm to multiply two floating point numbers, x and y.
Algorithm:-
- Convert these numbers in scientific notation, so that we can explicitly represent hidden 1.
- Let ‘a’ be the exponent of x and ‘b’ be the exponent of y.
- Assume resulting exponent c = a+b. It can be adjusted after the next step.
- Multiply mantissa of x to mantissa of y. Call this result m.
- If m does not have a single 1 left of radix point, then adjust radix point so it does, and adjust exponent c to compensate.
- Add sign bits, mod 2, to get sign of resulting multiplication.
- Convert back to one byte floating point representation, truncating bits if needed.
Note :
Negative values are simple to take care of in floating point multiplication. Treat sign bit as 1 bit unsigned binary, add mod 2. This is the same as XORing the sign bit.
Example :-
Suppose you want to multiply following two numbers:

Now, these are steps according to above algorithm:
- Given, A = 1.11 x 2^0 and B = 1.01 x 2^2
- So, exponent c = a + b = 0 + 2 = 2 is the resulting exponent.
- Now, multiply 1.11 by 1.01, so result will be 10.0011
- We need to normalize 10.0011 to 1.00011 and adjust exponent 1 by 3 appropriately.
- Resulting sign bit 0 (XOR) 0 = 0, means positive.
- Now, truncate and normalite it 1.00011 x 2^3 to 1.000 x 2^3.
Therefore, resultant number is,

Similarly, we can multiply other floating point numbers.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
04 May, 2020
Like Article
Save Article