So I want to find the largest negative real number that can be represented using the IEEE-754 floating point.
So far I know the sign bit should be 1, and mantissa is 11111111, and the exponent is 255. I just put them into the formula, then I get -1.11111111 x 2^128.
The answer is -3.403 x 10^38.
How do I transform what I have into the answer form ?

