\frac{r \cdot \sin b}{\cos \left(a + b\right)}r \cdot \frac{\sin b}{\cos b \cdot \cos a - \sqrt[3]{{\left(\sin a \cdot \sin b\right)}^{3}}}double f(double r, double a, double b) {
double r16441 = r;
double r16442 = b;
double r16443 = sin(r16442);
double r16444 = r16441 * r16443;
double r16445 = a;
double r16446 = r16445 + r16442;
double r16447 = cos(r16446);
double r16448 = r16444 / r16447;
return r16448;
}
double f(double r, double a, double b) {
double r16449 = r;
double r16450 = b;
double r16451 = sin(r16450);
double r16452 = cos(r16450);
double r16453 = a;
double r16454 = cos(r16453);
double r16455 = r16452 * r16454;
double r16456 = sin(r16453);
double r16457 = r16456 * r16451;
double r16458 = 3.0;
double r16459 = pow(r16457, r16458);
double r16460 = cbrt(r16459);
double r16461 = r16455 - r16460;
double r16462 = r16451 / r16461;
double r16463 = r16449 * r16462;
return r16463;
}



Bits error versus r



Bits error versus a



Bits error versus b
Results
Initial program 14.9
rmApplied cos-sum0.3
rmApplied add-cbrt-cube0.4
Applied add-cbrt-cube0.4
Applied cbrt-unprod0.4
Simplified0.4
rmApplied *-un-lft-identity0.4
Applied times-frac0.4
Simplified0.4
Simplified0.3
rmApplied add-cbrt-cube0.4
Applied add-cbrt-cube0.4
Applied cbrt-unprod0.4
Simplified0.4
Final simplification0.4
herbie shell --seed 2020081
(FPCore (r a b)
:name "r*sin(b)/cos(a+b), A"
:precision binary64
(/ (* r (sin b)) (cos (+ a b))))