\frac{-\left(f + n\right)}{f - n}\sqrt[3]{-{\left(\frac{n + f}{f - n}\right)}^{2} \cdot \sqrt[3]{{\left(\frac{n + f}{f - n}\right)}^{3}}}double f(double f, double n) {
double r26931 = f;
double r26932 = n;
double r26933 = r26931 + r26932;
double r26934 = -r26933;
double r26935 = r26931 - r26932;
double r26936 = r26934 / r26935;
return r26936;
}
double f(double f, double n) {
double r26937 = n;
double r26938 = f;
double r26939 = r26937 + r26938;
double r26940 = r26938 - r26937;
double r26941 = r26939 / r26940;
double r26942 = 2.0;
double r26943 = pow(r26941, r26942);
double r26944 = 3.0;
double r26945 = pow(r26941, r26944);
double r26946 = cbrt(r26945);
double r26947 = r26943 * r26946;
double r26948 = -r26947;
double r26949 = cbrt(r26948);
return r26949;
}



Bits error versus f



Bits error versus n
Results
Initial program 0.0
rmApplied *-un-lft-identity0.0
rmApplied add-cbrt-cube41.7
Applied add-cbrt-cube42.6
Applied cbrt-undiv42.6
Simplified0.0
rmApplied add-log-exp0.0
Simplified0.0
rmApplied add-cube-cbrt0.0
Applied exp-prod0.0
Applied log-pow0.0
Simplified0.0
Final simplification0.0
herbie shell --seed 2019174
(FPCore (f n)
:name "subtraction fraction"
(/ (- (+ f n)) (- f n)))