Assume the following representation for a floating point number:
1 sign bit
4 bits exponent
4 bits significand
Bias of 7 for the exponent (there is no implied 1 as in IEEE)
Given this information, how would I find the largest and smallest positive floating point numbers (in binary) that this system can support ?
I want the solution but i'm interested in the method. How do I use this information to get my result ?
1or value0.5? (For IEEE 754, that's known, but this isn't IEEE 754.) Some examples of bit strings and their corresponding values might help here. - Mark Dickinson