Consider a 32 bit floating point number (IEEE 754) having 0-22 for mantissa(23 bits) , 23-30 for exponent(8 bits) , 31 for sign(1bit)
I want to find out the smallest positive number that can be stored.
I have been told answer is 1.18*10-38 which is approx 2-126
My analysis is as follows
if we put all zeroes in mantissa and put all ones in exponent then the decimal equivalent would be
1.0 x 2-128 = 2.93 x 10-39
Where am I going wrong ?
Thanks
2^149
, or approximately1.4*10^-45
. – Mark Dickinson