x \cdot \log x
\mathsf{fma}\left(2 \cdot \log \left(\sqrt[3]{x}\right), x, \log \left(\left(\sqrt[3]{\sqrt[3]{x}} \cdot \sqrt[3]{\sqrt[3]{x}}\right) \cdot \sqrt[3]{\sqrt[3]{x}}\right) \cdot x\right)double f(double x) {
double r42884 = x;
double r42885 = log(r42884);
double r42886 = r42884 * r42885;
return r42886;
}
double f(double x) {
double r42887 = 2.0;
double r42888 = x;
double r42889 = cbrt(r42888);
double r42890 = log(r42889);
double r42891 = r42887 * r42890;
double r42892 = cbrt(r42889);
double r42893 = r42892 * r42892;
double r42894 = r42893 * r42892;
double r42895 = log(r42894);
double r42896 = r42895 * r42888;
double r42897 = fma(r42891, r42888, r42896);
return r42897;
}



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
rmApplied add-cube-cbrt0.3
Final simplification0.3
herbie shell --seed 2019303 +o rules:numerics
(FPCore (x)
:name "Statistics.Distribution.Binomial:directEntropy from math-functions-0.1.5.2"
:precision binary64
(* x (log x)))