IEEE754 Floating Point Standard Presentation Detailed
IEEE754 Floating Point Standard Presentation Detailed
Solution:
1. Sign Bit: 1 (negative number)
2. Convert to Binary: 5.75 = 101.11 in binary
3. Normalize: 1.0111 × 2^2
4. Exponent: 2 + 127 (bias) = 129 (10000001 in binary)
5. Mantissa: 01110000000000000000000
6. IEEE 754 Format:
11000000101110000000000000000000
Example Problem 2
Solution:
1. Sign Bit: 0 (positive number)
2. Extract Exponent: 10000010 in binary = 130 in
decimal
3. Bias Subtraction: 130 - 127 = 3
4. Extract Mantissa: 1.011 (implicit leading 1)
5. Convert to Decimal: 1.375 × 2^3 = 11
6. Result: 11.0
Conclusion