\frac{2}{\left(\left(\frac{{t}^{3}}{\ell \cdot \ell} \cdot \sin k\right) \cdot \tan k\right) \cdot \left(\left(1 + {\left(\frac{k}{t}\right)}^{2}\right) + 1\right)}\frac{2}{\left(\left(\left({\left(\sqrt[3]{t}\right)}^{3} \cdot \frac{{\left(\sqrt[3]{t}\right)}^{3}}{\ell}\right) \cdot \left(\sqrt[3]{\frac{{\left(\sqrt[3]{t}\right)}^{3}}{\ell} \cdot \sin k} \cdot \left(\sqrt[3]{\frac{{\left(\sqrt[3]{t}\right)}^{3}}{\ell} \cdot \sin k} \cdot \sqrt[3]{\frac{{\left(\sqrt[3]{t}\right)}^{3}}{\ell} \cdot \sin k}\right)\right)\right) \cdot \tan k\right) \cdot \left(1 + \left(1 + {\left(\frac{k}{t}\right)}^{2}\right)\right)}double code(double t, double l, double k) {
return (2.0 / ((double) (((double) (((double) ((((double) pow(t, 3.0)) / ((double) (l * l))) * ((double) sin(k)))) * ((double) tan(k)))) * ((double) (((double) (1.0 + ((double) pow((k / t), 2.0)))) + 1.0)))));
}
double code(double t, double l, double k) {
return (2.0 / ((double) (((double) (((double) (((double) (((double) pow(((double) cbrt(t)), 3.0)) * (((double) pow(((double) cbrt(t)), 3.0)) / l))) * ((double) (((double) cbrt(((double) ((((double) pow(((double) cbrt(t)), 3.0)) / l) * ((double) sin(k)))))) * ((double) (((double) cbrt(((double) ((((double) pow(((double) cbrt(t)), 3.0)) / l) * ((double) sin(k)))))) * ((double) cbrt(((double) ((((double) pow(((double) cbrt(t)), 3.0)) / l) * ((double) sin(k)))))))))))) * ((double) tan(k)))) * ((double) (1.0 + ((double) (1.0 + ((double) pow((k / t), 2.0)))))))));
}



Bits error versus t



Bits error versus l



Bits error versus k
Results
Initial program Error: 32.1 bits
rmApplied add-cube-cbrtError: 32.3 bits
Applied unpow-prod-downError: 32.3 bits
Applied times-fracError: 25.6 bits
Applied associate-*l*Error: 24.0 bits
rmApplied *-un-lft-identityError: 24.0 bits
Applied unpow-prod-downError: 24.0 bits
Applied times-fracError: 18.6 bits
SimplifiedError: 18.6 bits
rmApplied add-cube-cbrtError: 18.6 bits
Final simplificationError: 18.6 bits
herbie shell --seed 2020200
(FPCore (t l k)
:name "Toniolo and Linder, Equation (10+)"
:precision binary64
(/ 2.0 (* (* (* (/ (pow t 3.0) (* l l)) (sin k)) (tan k)) (+ (+ 1.0 (pow (/ k t) 2.0)) 1.0))))