\left(x + \cos y\right) - z \cdot \sin y
\left(x + \cos y\right) - \left(z \cdot \left(\sqrt[3]{\sin y} \cdot \sqrt[3]{\sin y}\right)\right) \cdot \sqrt[3]{\sin y}double code(double x, double y, double z) {
return ((x + cos(y)) - (z * sin(y)));
}
double code(double x, double y, double z) {
return ((x + cos(y)) - ((z * (cbrt(sin(y)) * cbrt(sin(y)))) * cbrt(sin(y))));
}



Bits error versus x



Bits error versus y



Bits error versus z
Results
Initial program 0.1
rmApplied add-cube-cbrt0.4
Applied associate-*r*0.4
Final simplification0.4
herbie shell --seed 2020049 +o rules:numerics
(FPCore (x y z)
:name "Graphics.Rasterific.Svg.PathConverter:segmentToBezier from rasterific-svg-0.2.3.1, B"
:precision binary64
(- (+ x (cos y)) (* z (sin y))))