x \cdot \cos y - z \cdot \sin y
\left(x \cdot {\left({\left(\cos y\right)}^{2}\right)}^{0.3333333333333333}\right) \cdot \sqrt[3]{\cos y} - z \cdot \sin y(FPCore (x y z) :precision binary64 (- (* x (cos y)) (* z (sin y))))
(FPCore (x y z) :precision binary64 (- (* (* x (pow (pow (cos y) 2.0) 0.3333333333333333)) (cbrt (cos y))) (* z (sin y))))
double code(double x, double y, double z) {
return ((double) (((double) (x * ((double) cos(y)))) - ((double) (z * ((double) sin(y))))));
}
double code(double x, double y, double z) {
return ((double) (((double) (((double) (x * ((double) pow(((double) pow(((double) cos(y)), 2.0)), 0.3333333333333333)))) * ((double) cbrt(((double) cos(y)))))) - ((double) (z * ((double) sin(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.4 bits
Applied associate-*r*Error: 0.4 bits
rmApplied pow1/3Error: 16.5 bits
Applied pow1/3Error: 16.4 bits
Applied pow-prod-downError: 0.2 bits
SimplifiedError: 0.2 bits
Final simplificationError: 0.2 bits
herbie shell --seed 2020204
(FPCore (x y z)
:name "Diagrams.ThreeD.Transform:aboutX from diagrams-lib-1.3.0.3, A"
:precision binary64
(- (* x (cos y)) (* z (sin y))))