| Decimal | Unsigned Binary | Signed Binary |
| 125 | 01111101 | 01111101 |
| -125 | smaller than UMIN | 10000011 |
| 219 | 11011011 | greater then TMAX |
| -219 | smaller than UMIN | smaller than TMIN |
| 101 | 01100101 | ----- |
| 211 | 11010011 | ----- |
| 83 | ----- | 01010011 |
| -73 | ----- | 10110111 |
| Bit representation | e | E | f | M | V |
| 0 01101 0001 | 13 | -2 | 1/16 | 17/16 | 17/16 * 1/4 = 17/64 |
| 1 10011 1010 | 19 | 4 | 10/16 | 26/16 | -26/16 * 16 = -26.0 |
| 0 00000 1010 denormalized | 0 | -14 | 10/16 | 10/16 | 10/16 * 1/(2**14) |
| 0 01111 0011 | 15 | 0 | 3/16 | 19/16 | 19/16 |
| 0 10100 1000 | 20 | 5 | 8/16 | 24/16 | 48.0 |
| 0 01100 0100 | 12 | -3 | 4/16 | 20/16 | 5/32 |
What is the bit sequence and value for the largest possible normalized value?
0 11110 1111 which is 31/16 * (2**15)
What is the bit sequence and value for the smallest possible positive normalized value?
0 00001 0000 which is 1/(2**14)
What is the bit sequence and value for the largest possible de-normalized value?
0 0000 1111 which is 15/16 * 1/(2**14)
What is the bit sequence and value for the smallest possible positive de-normalized value?
0 0000 0001 which is 1/16 * 1/(2**14)