\sin \left({\left(\sqrt{\tan^{-1}_* \frac{b}{b}}\right)}^{\left(b - a\right)}\right)\sin \left({\left(\sqrt[3]{\tan^{-1}_* \frac{b}{b}}\right)}^{\left(\left(b - a\right) \cdot \frac{1}{2}\right)} \cdot {\left(\sqrt[3]{\tan^{-1}_* \frac{b}{b}} \cdot \sqrt[3]{\tan^{-1}_* \frac{b}{b}}\right)}^{\left(\left(b - a\right) \cdot \frac{1}{2}\right)}\right)double f(double a, double b) {
double r17600 = b;
double r17601 = atan2(r17600, r17600);
double r17602 = sqrt(r17601);
double r17603 = a;
double r17604 = r17600 - r17603;
double r17605 = pow(r17602, r17604);
double r17606 = sin(r17605);
return r17606;
}
double f(double a, double b) {
double r17607 = b;
double r17608 = atan2(r17607, r17607);
double r17609 = cbrt(r17608);
double r17610 = a;
double r17611 = r17607 - r17610;
double r17612 = 0.5;
double r17613 = r17611 * r17612;
double r17614 = pow(r17609, r17613);
double r17615 = r17609 * r17609;
double r17616 = pow(r17615, r17613);
double r17617 = r17614 * r17616;
double r17618 = sin(r17617);
return r17618;
}



Bits error versus a



Bits error versus b
Results
Initial program 0.1
rmApplied pow1/20.1
Applied pow-pow0.1
Simplified0.1
rmApplied add-cube-cbrt0.1
Applied unpow-prod-down0.1
Simplified0.1
Simplified0.1
Final simplification0.1
herbie shell --seed 2019194 +o rules:numerics
(FPCore (a b)
:name "Random Jason Timeout Test 015"
(sin (pow (sqrt (atan2 b b)) (- b a))))