I'm guessing there is some standard trick that I wasn't able to find: Anyway I want to compute a large power of a number very close to 1(think 1-p where p<1e-17) in a numerically stable fashion. 1-p is truncated to 1 on my system.
Using the taylor expansion of the logarithm I obtain the following bounds
Is there anything smarter I can do?
You may calculate
log(1+x)
more accurately for|x| <= 1
by using thelog1p
function.An example:
And another one:
Here, however, we're limited with the accuracy of
double
type-based FP arithmetic (see What Every Computer Scientist Should Know About Floating-Point Arithmetic).Another way is to use e.g. the
Rmpfr
(a.k.a. Multiple Precision Floating-Point Reliable) package:The package uses the
gsl
andmpfr
library to implement arbitrary precision FP operations (at the cost of slower computation speed, of course).