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



Bits error versus x
Results
Initial program 0.3
rmApplied diff-log_binary640.0
rmApplied pow1_binary640.0
Applied log-pow_binary640.0
Applied add-sqr-sqrt_binary640.0
Applied times-frac_binary640.0
Simplified0.0
Final simplification0.0
herbie shell --seed 2020219
(FPCore (x)
:name "Jmat.Real.lambertw, estimator"
:precision binary64
(- (log x) (log (log x))))