I wonder if it is possible to use integers bigger than the value of .Machine$double.xmax (~1.79e308) in R. I thought that by using e.g. Rmpfr or gmp libraries in R you could assign values of any size, up to the limit of RAM on your system? I thought this was greater than .Machine$double.xmax but clearly it isn't.
> require( gmp )
> as.bigz( .Machine$double.xmax )
Big Integer ('bigz') :
[1] 179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368
> as.bigz( 1e309 )
Big Integer ('bigz') :
[1] NA
>
Is it possible for someone explain why a computer using 64bit memory addressing can't store values greater than 1.79e308? Sorry - I don't have a computer science background, but I am trying to learn.
Thanks.
?as.bigz. – joran Feb 11 at 18:22as.bigz(10)^309. In fact, you can do this:"%e%" <- function(x,y) as.bigz(x) * 10^as.bigz(y); 1%e%309– Ben Bolker Feb 11 at 19:18x, so if you wanted 1.5e309 you would need something like15%e%308... – Ben Bolker Feb 11 at 19:21e <- bc(10); 1.5 * e ^ 309– G. Grothendieck Feb 11 at 20:18