c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}
\begin{array}{l}
t_0 := \frac{\frac{\sqrt[3]{A}}{\sqrt[3]{V}}}{\sqrt[3]{\ell}}\\
\left(c0 \cdot \left|t_0\right|\right) \cdot \sqrt{t_0}
\end{array}
(FPCore (c0 A V l) :precision binary64 (* c0 (sqrt (/ A (* V l)))))
(FPCore (c0 A V l) :precision binary64 (let* ((t_0 (/ (/ (cbrt A) (cbrt V)) (cbrt l)))) (* (* c0 (fabs t_0)) (sqrt t_0))))
double code(double c0, double A, double V, double l) {
return c0 * sqrt(A / (V * l));
}
double code(double c0, double A, double V, double l) {
double t_0 = (cbrt(A) / cbrt(V)) / cbrt(l);
return (c0 * fabs(t_0)) * sqrt(t_0);
}



Bits error versus c0



Bits error versus A



Bits error versus V



Bits error versus l
Results
Initial program 19.2
Applied associate-/r*_binary6419.2
Applied add-cube-cbrt_binary6419.5
Applied add-cube-cbrt_binary6419.6
Applied add-cube-cbrt_binary6419.7
Applied times-frac_binary6419.7
Applied times-frac_binary6415.6
Applied sqrt-prod_binary647.0
Applied associate-*r*_binary647.0
Simplified1.1
Final simplification1.1
herbie shell --seed 2021215
(FPCore (c0 A V l)
:name "Henrywood and Agarwal, Equation (3)"
:precision binary64
(* c0 (sqrt (/ A (* V l)))))