While reading a tutorial I came across how to represent Float number in memory. The tutorial had an example with a floating point number.
float a=5.2 with below Diagram
Can anyone please tell how this 5.2 is converted in to binary and how it is represented in memory in above the above diagram?
The conversion technique posted originally on the other website is shown unnecessarily complex (although it takes us to right answer) . For memory representation of 5.2 in memory:
First convert it into simple binary system, which will give us 101.001100110011001100110011
Now change it into scientific form : 1.01001100110011001100110011 x 10^2 .
Now our sign bit is 0 as the number is positive
For exponent we need (127 + 2) upto 8 bits which gives us 10000001
Fraction is 01001100110011001100110 . (23 bits) (Discarding the leading 1 of scientific form)
=> the representation is
5.2 is represented as "01000000101001100110011001100110"
Check the Converter Applet
Raw float 5.2:
In memory, reverse byte order (as your diagram):
I think the diagram is not one hundret percent correct.
Floats are stored in memory as follows:
They are decomposed into:
s
(denoting whether it's positive or negative) - 1 bitm
(essentially the digits of your number - 24 bitse
- 7 bitsThen, you can write any number
x
ass * m * 2^e
where^
denotes exponentiation.5.2 should be represented as follows:
S=0
denotes that it is a positive number, i.e.s=+1
E
is to be interpreted as unsigned number, thus representing129
. Note that you must subtract 127 fromE
to obtain the original exponente = E - 127 = 2
M
must be interpreted the following way: It is interpreted as a number beginning with a1
followed by a point (.
) and then digits after that point. The digits after.
are the ones that are actually coded inm
. We introduce weights for each digit:Now you sum up the weights where the corresponding bits are set. After you've done this, you add
1
(due to normalization in the IEEE standard, you always add 1 for interpretingM
) and obtain the originalm
.Now, you compute
x = s * m * 2^e
and get your original number.So, the only thing left is that in real memory, bytes might be in reverse order. That is why the number may not be stored as follows:
but more the other way around (simply take 8-bit blocks and mirror their order)
5.2 in binary 101.00110011...... ------> non normalized form 5.2 is .10100110011.... x 2^3 ------> explicit normal form 5.2 is .0100110011 x 2^3 in implicit normal form
In the above example sign bit is correct Excess 64 is not applied , so not normalized but ideally it should use implicit normalization Mantissa part in second byte if you apply implicit normalization the MSB '1' will not come .
This gives 0100 0000 1010 0110 0110 0110 1000 0001 (1084647041)