What number does the following word stand for?
$$\color{red}{1}\;\;\;\;\color{blue}{10000101}\;\;\;\;11110010011110100000000$$
Where the red one is the sign (it's called the sign bit which determines the sign of the number), the blue binary number is the Exponent, and the other bits are significand precision.
Based on this link I tried to use the following formula:
$$\text{Value}=\left(-1\right)^{\operatorname{sign}}\cdot2^{\left(e-127\right)}\cdot\left(1+\sum_{i=1}^{23}b_{23-i}\ \cdot2^{-i}\right)$$
$$\text{Value}=$$$$\left(-1\right)^{\color{red}{1}}\cdot2^{\left(\color{blue}{133}-127\right)}\cdot\left(1+2^{-1}+2^{-2}+2^{-3}+2^{-4}+2^{-7}+2^{-10}+2^{-11}+2^{-12}+2^{-13}+2^{-15}\right)$$$$=-124.619140625$$
is that right?