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



Bits error versus x
Results
Initial program 0.3
rmApplied diff-log0.0
Final simplification0.0
herbie shell --seed 2020057
(FPCore (x)
:name "Jmat.Real.lambertw, estimator"
:precision binary64
(- (log x) (log (log x))))