\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 r28002 = b;
double r28003 = atan2(r28002, r28002);
double r28004 = sqrt(r28003);
double r28005 = a;
double r28006 = r28002 - r28005;
double r28007 = pow(r28004, r28006);
double r28008 = sin(r28007);
return r28008;
}
double f(double a, double b) {
double r28009 = b;
double r28010 = atan2(r28009, r28009);
double r28011 = cbrt(r28010);
double r28012 = a;
double r28013 = r28009 - r28012;
double r28014 = 0.5;
double r28015 = r28013 * r28014;
double r28016 = pow(r28011, r28015);
double r28017 = r28011 * r28011;
double r28018 = pow(r28017, r28015);
double r28019 = r28016 * r28018;
double r28020 = sin(r28019);
return r28020;
}



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))))