What is the smallest exact representation of 1/(2^x) that can be represented in the C programming language?
|
|
|
|
|
|
|
On most platforms, C's However if you allow user defined types, there is no limit, as you can always express the exponent as a bigint. |
||
|
|
|
|
Using IEEE-754
If you use another type, say |
|||
|
|
|
|
If you use the GNU MP library (written in C), then you can represent any value up to the amount of RAM install. |
||
|
|
|
|
0, that is 1/(2^inf) ;) More seriously, this is a question of exponent bits in double precision floats. I don't think the C standard itself defines the size, but IEEE 754 does define it to have 11 exponent bits. Lets ignore denormals for a little while. Since the smallest exponent value is −1022, this should be 1/(2^1022). But then there's the case of denormals, which IIRC should simply not contain any implicit 1 bit. The denormal numbers are thus spread uniformly over the 0..1/(2^1022)-range, giving log2(52) more values IIRC. So, I THINK the final answer should be 1/(2^(1074)). |
||
|
|
|
|
If you store your variable as a 64-bit negative exponent, 1/2^(2^63 - 1). :) That's a reeeeally small number. |
||||
|
