Floating-point Notation
Binary floating-point number consists of 3 parts:
-
a Sign bit ["0" is non-negative (+), "1" is negative (-)
-
the Exponent and
-
the Mantissa.
- In an 8-bit pattern example below, the most significant (the right-most) bit is th sign-bit, followed by a 3-bit exponent (expressed in excess notation) followed by a 4-bit mantissa.
Important Note: in a normalized floating point notation, the mantissa must begin, i.e., the most significant bit of the mantissa must be a "1" and the radixpoint is assumed to be at the left of the mantissa. In this course, we will always use the normalized system.