x \cdot \log x
\mathsf{fma}\left(x, 2 \cdot \log \left(\sqrt[3]{x}\right), x \cdot \log \left(\sqrt[3]{x}\right)\right)double f(double x) {
double r31882 = x;
double r31883 = log(r31882);
double r31884 = r31882 * r31883;
return r31884;
}
double f(double x) {
double r31885 = x;
double r31886 = 2.0;
double r31887 = cbrt(r31885);
double r31888 = log(r31887);
double r31889 = r31886 * r31888;
double r31890 = r31885 * r31888;
double r31891 = fma(r31885, r31889, r31890);
return r31891;
}



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 2020039 +o rules:numerics
(FPCore (x)
:name "Statistics.Distribution.Binomial:directEntropy from math-functions-0.1.5.2"
:precision binary64
(* x (log x)))