\left(x \cdot \log y - z\right) - y
\left(\left(x \cdot \left(\log \left(\sqrt[3]{y}\right) \cdot 2 + \log \left(\sqrt[3]{{\left(\sqrt[3]{y}\right)}^{2}}\right)\right) + x \cdot \log \left(\sqrt[3]{\sqrt[3]{y}}\right)\right) - z\right) - y(FPCore (x y z) :precision binary64 (- (- (* x (log y)) z) y))
(FPCore (x y z)
:precision binary64
(-
(-
(+
(* x (+ (* (log (cbrt y)) 2.0) (log (cbrt (pow (cbrt y) 2.0)))))
(* x (log (cbrt (cbrt y)))))
z)
y))double code(double x, double y, double z) {
return ((double) (((double) (((double) (x * ((double) log(y)))) - z)) - y));
}
double code(double x, double y, double z) {
return ((double) (((double) (((double) (((double) (x * ((double) (((double) (((double) log(((double) cbrt(y)))) * 2.0)) + ((double) log(((double) cbrt(((double) pow(((double) cbrt(y)), 2.0)))))))))) + ((double) (x * ((double) log(((double) cbrt(((double) cbrt(y)))))))))) - z)) - y));
}



Bits error versus x



Bits error versus y



Bits error versus z
Results
Initial program Error: 0.1 bits
rmApplied add-cube-cbrtError: 0.1 bits
Applied log-prodError: 0.1 bits
Applied distribute-lft-inError: 0.1 bits
SimplifiedError: 0.1 bits
rmApplied add-cube-cbrtError: 0.1 bits
Applied cbrt-prodError: 0.1 bits
Applied log-prodError: 0.1 bits
Applied distribute-lft-inError: 0.1 bits
Applied associate-+r+Error: 0.1 bits
SimplifiedError: 0.1 bits
Final simplificationError: 0.1 bits
herbie shell --seed 2020203
(FPCore (x y z)
:name "Statistics.Distribution.Poisson:$clogProbability from math-functions-0.1.5.2"
:precision binary64
(- (- (* x (log y)) z) y))