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



Bits error versus x
Results
Initial program 0.3
rmApplied add-cube-cbrt_binary64_4540.3
Applied log-prod_binary64_5050.4
Applied distribute-rgt-in_binary64_3690.4
Simplified0.4
Simplified0.4
rmApplied pow1/3_binary64_5010.3
Final simplification0.3
herbie shell --seed 2021093
(FPCore (x)
:name "Statistics.Distribution.Binomial:directEntropy from math-functions-0.1.5.2"
:precision binary64
(* x (log x)))