In: Computer Science
Convert 3/7 to IEEE 754.
Convert 171.375 to IEEE754
Convert the float number 0x4024 0080 0000 0000 to decimal. What is the true exponent? Circle the true exponent.
0x3FAF 9000 0000 is an IEEE float number. Convert it to base 10. While doing the conversion answer two questions: What is the true exponent? What is the mantissa? Make these two values obvious by circling them.
Convert 3/7 to IEEE 754
3/7=0.42857142857
1. First, convert to the binary (base 2) the integer part:
0.
Divide the number repeatedly by 2.
Keep track of each remainder.
We stop when we get a quotient that is equal to zero.
2. Construct the base 2 representation of the integer part of the number.
Take all the remainders starting from the bottom of the list constructed above.
0(10) =
0(2)
3. Convert to the binary (base 2) the fractional part: 0.428 571 428 57.
Multiply it repeatedly by 2.
Keep track of each integer part of the results.
Stop when we get a fractional part that is equal to zero.
We didn't get any fractional part that was equal to zero. But we had enough iterations (over Mantissa limit) and at least one integer that was different from zero => FULL STOP (losing precision...)
4. Construct the base 2 representation of the fractional part of the number.
Take all the integer parts of the multiplying operations, starting from the top of the constructed list above:
0.428 571 428 57(10) =
0.0110 1101 1011 0110 1101 1011 0(2)
5. Positive number before normalization:
0.428 571 428 57(10) =
0.0110 1101 1011 0110 1101 1011 0(2)
6. Normalize the binary representation of the number.
Shift the decimal mark 2 positions to the right so that only one non zero digit remains to the left of it:
0.428 571 428 57(10) =
0.0110 1101 1011 0110 1101 1011 0(2) =
0.0110 1101 1011 0110 1101 1011 0(2) × 20 =
1.1011 0110 1101 1011 0110 110(2) × 2-2
7. Up to this moment, there are the following elements that would feed into the 32 bit single precision IEEE 754 binary floating point representation:
Sign: 0 (a positive number)
Exponent (unadjusted): -2
Mantissa (not normalized):
1.1011 0110 1101 1011 0110 110
8. Adjust the exponent.
Use the 8 bit excess/bias notation:
Exponent (adjusted) =
Exponent (unadjusted) + 2(8-1) - 1 =
-2 + 2(8-1) - 1 =
(-2 + 127)(10) =
125(10)
9. Convert the adjusted exponent from the decimal (base 10) to 8 bit binary.
Use the same technique of repeatedly dividing by 2:
10. Construct the base 2 representation of the adjusted exponent.
Take all the remainders starting from the bottom of the list constructed above:
Exponent (adjusted) =
125(10) =
0111 1101(2)
11. Normalize the mantissa.
a) Remove the leading (the leftmost) bit, since it's allways 1, and the decimal point, if the case.
b) Adjust its length to 23 bits, only if necessary (not the case here).
Mantissa (normalized) =
1. 101 1011 0110 1101 1011 0110 =
101 1011 0110 1101 1011 0110
12. The three elements that make up the number's 32 bit single precision IEEE 754 binary floating point representation:
Sign (1 bit) =
0 (a positive number)
Exponent (8 bits) =
0111 1101
Mantissa (23 bits) =
101 1011 0110 1101 1011 0110