When I plug these equations into R I get:
> 1/(1+exp(-18))
[1] 1
> 1/(1+exp(-16))
[1] 0.9999999
But when I plug the same equations into Chrome I get:
1/(1+exp(-18))
0.99999998477
1/(1+exp(-16))
0.99999988746
So it seems like R is not very precise and rounds numbers up. Is it possible for me to get more digit precision with R? If so, how can I do that?