I have a problem understading a floating point representation(Two's placement-sign mantissa exponent), could you check, am I doing right?
-1/7
-1*1/7*2^0=-1*4/7*2^1=-1*4/7*2^2=-1*8/7*2^3
so in binary itd be like:
1 00000011 1.001 001 001 001 001 001 001
1/1357
1*1/1357*2^0=1*2048/1357*2^-11
0 | 11110101 | 1.100 000 100...
-205,34
1,60422*2^7
1| 0000011
1 | ...
My main problem is when to know the exponent is negative, could you give me any tips?