\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 r27456 = b;
double r27457 = atan2(r27456, r27456);
double r27458 = sqrt(r27457);
double r27459 = a;
double r27460 = r27456 - r27459;
double r27461 = pow(r27458, r27460);
double r27462 = sin(r27461);
return r27462;
}
double f(double a, double b) {
double r27463 = b;
double r27464 = atan2(r27463, r27463);
double r27465 = cbrt(r27464);
double r27466 = a;
double r27467 = r27463 - r27466;
double r27468 = 0.5;
double r27469 = r27467 * r27468;
double r27470 = pow(r27465, r27469);
double r27471 = r27465 * r27465;
double r27472 = pow(r27471, r27469);
double r27473 = r27470 * r27472;
double r27474 = sin(r27473);
return r27474;
}



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 003"
(sin (pow (sqrt (atan2 b b)) (- b a))))