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



Bits error versus x



Bits error versus y



Bits error versus z



Bits error versus t
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-sqr-sqrtError: 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
rmApplied add-log-expError: 0.1 bits
Applied sum-logError: 0.1 bits
SimplifiedError: 0.1 bits
Final simplificationError: 0.1 bits
herbie shell --seed 2020203
(FPCore (x y z t)
:name "Numeric.SpecFunctions:incompleteGamma from math-functions-0.1.5.2, A"
:precision binary64
(+ (- (- (* x (log y)) y) z) (log t)))