Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

1And in Conclusion\dots

The IEEE 754 standard defines a binary representation for floating point values using three fields.

Figure 3 shows the bit breakdown for the single-precision (32-bit) representation. The leftmost bit is the MSB, and the rightmost bit is the LSB.

Value=(1)Sign×2Exp+Bias×1.Significand2\text{Value} = (−1)^{\text{Sign}} × 2^{\text{Exp}+\text{Bias}} × 1.\text{Significand}_2
Value=(1)Sign×2Exp+Bias+1×0.Significand2\text{Value} = (−1)^{\text{Sign}} × 2^{\text{Exp}+\text{Bias}+1} × 0.\text{Significand}_2

Table 1 shows that the IEEE 754 exponent field has values from 0 to 255. When translating between binary and decimal floating point values, we must remember that there is a bias for the exponent.

2Textbook Readings

P&H 3.5, 3.9

3Additional References