Sign = 1 bit, Biased Exponent = 8 bits, Mantissa = 23 bits
What is the positive and negative possible range? My teacher told me the following range for ieee 754:
-0.5*2^-128 to -(1-2^-24)*2^127 (for negative floating point numbers)
0.5*2^-128 to (1-2^-24)*2^127 (for positive floating point numbers)
But I don't find this range correct because I am not able to understand how to store 0.5 * 2-128 into this format. Please explain.