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 r38186 = x;
double r38187 = log(r38186);
double r38188 = r38186 * r38187;
return r38188;
}
double f(double x) {
double r38189 = x;
double r38190 = 2.0;
double r38191 = cbrt(r38189);
double r38192 = log(r38191);
double r38193 = r38190 * r38192;
double r38194 = r38189 * r38192;
double r38195 = fma(r38189, r38193, r38194);
return r38195;
}



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