x \cdot \log x
x \cdot \left(2 \cdot \log \left(\sqrt[3]{x}\right)\right) + \left(x \cdot \frac{1}{3}\right) \cdot \log xdouble code(double x) {
return ((double) (x * ((double) log(x))));
}
double code(double x) {
return ((double) (((double) (x * ((double) (2.0 * ((double) log(((double) cbrt(x)))))))) + ((double) (((double) (x * 0.3333333333333333)) * ((double) log(x))))));
}



Bits error versus x
Results
Initial program 0.3
rmApplied add-cube-cbrt0.3
Applied log-prod0.4
Applied distribute-lft-in0.4
Simplified0.4
rmApplied pow1/30.3
Applied log-pow0.3
Applied associate-*r*0.3
Final simplification0.3
herbie shell --seed 2020168
(FPCore (x)
:name "Statistics.Distribution.Binomial:directEntropy from math-functions-0.1.5.2"
:precision binary64
(* x (log x)))