1,384 views
0 votes
0 votes

2 Answers

Best answer
1 votes
1 votes

Mantissa bits - 10 including sign bit. So, 9 bits for value. Maximum value

$ = 0.111111111$

And in normalized form there is an implicit 1 before "." and so we get

$1.111111111$.

Now for exponent we have 6 bits and given that it includes a sign bit. So, there is no bias being used as in IEEE 754 representation and so we get maximum possible value = $2^5 = 32.$

So, the maximum value that can be represented

$ = 1.111111111 \times 2^{32} \\= (2 - 2^{-9}) \times 2^{32}.$

Approximately $2^{32}.$

selected by
0 votes
0 votes

The format is as follows:  1 bit sign 6 bits exponent | 10 bits for mantissa

Now, lets focus on exponent. The range of exponent (without any bias) will be -32 to 31. But, these extreme values are reserved. So, highest value of exponent will be 30.

Now, lets consider normalized manitissa. The max value will be 1.1111111111.

1) The fraction part of 1.1111111111 evaluates as ($2^{-1}+2^{-2}+2^{-3}...+2^{-10} = 2^{-10} *(2^9+2^8...+2^0) = 2^{-10} *(2^{10}-1) =2^{-10} *(2^{10}) =1$)

2) We also need to add the 1 to the left of the fraction 1.1111111111 which is 1.

So, total = 1) + 2) =2

So, max number that can be represented is = $2^{30}$ * 1.1111111111 = $2^{30}$ * 2  = $2^{31}$

edited by

Related questions

1 votes
1 votes
1 answer
2
Aboveallplayer asked Jan 18, 2017
1,820 views
what is the hexadecimal representation of the floating point number (-48.625) in single precision, after rounding off and normalisation
2 votes
2 votes
3 answers
3
0 votes
0 votes
0 answers
4
atul_21 asked Nov 16, 2017
495 views
What is the smallest representable floating point number in fractional form of IEEE 754 single precision format? 2(-149)Explanation:0.00…01×2(-126)= 2(-23)× 2(-126)=...