x \cdot \log x
\mathsf{fma}\left(2 \cdot \log \left(\sqrt[3]{x}\right), x, x \cdot \log \left(\sqrt[3]{x}\right)\right)double f(double x) {
double r44112 = x;
double r44113 = log(r44112);
double r44114 = r44112 * r44113;
return r44114;
}
double f(double x) {
double r44115 = 2.0;
double r44116 = x;
double r44117 = cbrt(r44116);
double r44118 = log(r44117);
double r44119 = r44115 * r44118;
double r44120 = r44116 * r44118;
double r44121 = fma(r44119, r44116, r44120);
return r44121;
}



Bits error versus x
Initial program 0.3
rmApplied add-cube-cbrt0.3
Applied log-prod0.4
Applied distribute-lft-in0.4
Simplified0.4
rmApplied fma-def0.3
Final simplification0.3
herbie shell --seed 2019199 +o rules:numerics
(FPCore (x)
:name "Statistics.Distribution.Binomial:directEntropy from math-functions-0.1.5.2"
(* x (log x)))