\log x - \log \left(\log x\right)
\log \left(\frac{x}{\log x}\right)(FPCore (x) :precision binary64 (- (log x) (log (log x))))
(FPCore (x) :precision binary64 (log (/ x (log x))))
double code(double x) {
return ((double) (((double) log(x)) - ((double) log(((double) log(x))))));
}
double code(double x) {
return ((double) log((x / ((double) log(x)))));
}



Bits error versus x
Results
Initial program Error: 0.3 bits
rmApplied diff-logError: 0.0 bits
Final simplificationError: 0.0 bits
herbie shell --seed 2020204
(FPCore (x)
:name "Jmat.Real.lambertw, estimator"
:precision binary64
(- (log x) (log (log x))))