x \cdot \log x
\mathsf{fma}\left(2 \cdot \log \left(\sqrt[3]{x}\right), x, \log \left(\sqrt[3]{x}\right) \cdot x\right)double f(double x) {
double r49448 = x;
double r49449 = log(r49448);
double r49450 = r49448 * r49449;
return r49450;
}
double f(double x) {
double r49451 = 2.0;
double r49452 = x;
double r49453 = cbrt(r49452);
double r49454 = log(r49453);
double r49455 = r49451 * r49454;
double r49456 = r49454 * r49452;
double r49457 = fma(r49455, r49452, r49456);
return r49457;
}



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