\pi \cdot \ell - \frac{1}{F \cdot F} \cdot \tan \left(\pi \cdot \ell\right)\pi \cdot \ell - \frac{1 \cdot \frac{\frac{\tan \left(\pi \cdot \ell\right)}{\sqrt[3]{F} \cdot \sqrt[3]{F}}}{\sqrt[3]{F}}}{F}double code(double F, double l) {
return ((((double) M_PI) * l) - ((1.0 / (F * F)) * tan((((double) M_PI) * l))));
}
double code(double F, double l) {
return ((((double) M_PI) * l) - ((1.0 * ((tan((((double) M_PI) * l)) / (cbrt(F) * cbrt(F))) / cbrt(F))) / F));
}



Bits error versus F



Bits error versus l
Results
Initial program 16.6
rmApplied *-un-lft-identity16.6
Applied times-frac16.7
Applied associate-*l*12.4
rmApplied div-inv12.4
Applied associate-*l*12.4
Simplified12.4
rmApplied associate-*r/12.4
Applied associate-*r/12.4
Simplified12.4
rmApplied add-cube-cbrt12.6
Applied associate-/r*12.6
Final simplification12.6
herbie shell --seed 2020100 +o rules:numerics
(FPCore (F l)
:name "VandenBroeck and Keller, Equation (6)"
:precision binary64
(- (* PI l) (* (/ 1 (* F F)) (tan (* PI l)))))