x \cdot \log x
x \cdot \log \left(\sqrt{x}\right) + x \cdot \left(\log \left(\left|{x}^{0.3333333333333333}\right|\right) + \log \left(\sqrt{\sqrt[3]{x}}\right)\right)(FPCore (x) :precision binary64 (* x (log x)))
(FPCore (x) :precision binary64 (+ (* x (log (sqrt x))) (* x (+ (log (fabs (pow x 0.3333333333333333))) (log (sqrt (cbrt x)))))))
double code(double x) {
return x * log(x);
}
double code(double x) {
return (x * log(sqrt(x))) + (x * (log(fabs(pow(x, 0.3333333333333333))) + log(sqrt(cbrt(x)))));
}



Bits error versus x
Results
Initial program 0.3
rmApplied add-sqr-sqrt_binary640.3
Applied log-prod_binary640.3
Applied distribute-rgt-in_binary640.3
Simplified0.3
Simplified0.3
rmApplied add-cube-cbrt_binary640.3
Applied sqrt-prod_binary640.3
Applied log-prod_binary640.3
Simplified0.3
rmApplied pow1/3_binary640.3
Final simplification0.3
herbie shell --seed 2020233
(FPCore (x)
:name "Statistics.Distribution.Binomial:directEntropy from math-functions-0.1.5.2"
:precision binary64
(* x (log x)))