\frac{-\sqrt{\left(2 \cdot \left(\left({B}^{2} - \left(4 \cdot A\right) \cdot C\right) \cdot F\right)\right) \cdot \left(\left(A + C\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)}}{{B}^{2} - \left(4 \cdot A\right) \cdot C}
\begin{array}{l}
t_0 := \sqrt[3]{\sqrt{2}}\\
t_1 := t_0 \cdot t_0\\
t_2 := \sqrt{F \cdot -0.5}\\
t_3 := {\left(A - C\right)}^{2}\\
t_4 := {B}^{2} - \left(4 \cdot A\right) \cdot C\\
t_5 := \frac{-\sqrt{\left(2 \cdot \left(t_4 \cdot F\right)\right) \cdot \left(\left(A + C\right) - \sqrt{{B}^{2} + t_3}\right)}}{t_4}\\
\mathbf{if}\;t_5 \leq -\infty:\\
\;\;\;\;t_1 \cdot \left(t_2 \cdot \left(t_0 \cdot \frac{-1}{\sqrt{C}}\right)\right)\\
\mathbf{elif}\;t_5 \leq -1.2953816470925393 \cdot 10^{-207}:\\
\;\;\;\;\begin{array}{l}
t_6 := 2 \cdot \left(F \cdot \left(B \cdot B - 4 \cdot \left(A \cdot C\right)\right)\right)\\
\frac{-\sqrt{A \cdot t_6 + t_6 \cdot \left(C - \sqrt{t_3 + B \cdot B}\right)}}{t_4}
\end{array}\\
\mathbf{elif}\;t_5 \leq 0:\\
\;\;\;\;\begin{array}{l}
t_7 := \sqrt{\sqrt{2}}\\
-t_7 \cdot \left(t_7 \cdot \frac{t_2}{\sqrt{C}}\right)
\end{array}\\
\mathbf{elif}\;t_5 \leq \infty:\\
\;\;\;\;\frac{A \cdot \left(\sqrt{2} \cdot \sqrt{-8 \cdot \left(C \cdot F\right)}\right)}{t_4}\\
\mathbf{else}:\\
\;\;\;\;-\frac{t_1 \cdot \left(t_0 \cdot t_2\right)}{\sqrt{C}}\\
\end{array}
(FPCore (A B C F)
:precision binary64
(/
(-
(sqrt
(*
(* 2.0 (* (- (pow B 2.0) (* (* 4.0 A) C)) F))
(- (+ A C) (sqrt (+ (pow (- A C) 2.0) (pow B 2.0)))))))
(- (pow B 2.0) (* (* 4.0 A) C))))(FPCore (A B C F)
:precision binary64
(let* ((t_0 (cbrt (sqrt 2.0)))
(t_1 (* t_0 t_0))
(t_2 (sqrt (* F -0.5)))
(t_3 (pow (- A C) 2.0))
(t_4 (- (pow B 2.0) (* (* 4.0 A) C)))
(t_5
(/
(-
(sqrt (* (* 2.0 (* t_4 F)) (- (+ A C) (sqrt (+ (pow B 2.0) t_3))))))
t_4)))
(if (<= t_5 (- INFINITY))
(* t_1 (* t_2 (* t_0 (/ -1.0 (sqrt C)))))
(if (<= t_5 -1.2953816470925393e-207)
(let* ((t_6 (* 2.0 (* F (- (* B B) (* 4.0 (* A C)))))))
(/ (- (sqrt (+ (* A t_6) (* t_6 (- C (sqrt (+ t_3 (* B B)))))))) t_4))
(if (<= t_5 0.0)
(let* ((t_7 (sqrt (sqrt 2.0)))) (- (* t_7 (* t_7 (/ t_2 (sqrt C))))))
(if (<= t_5 INFINITY)
(/ (* A (* (sqrt 2.0) (sqrt (* -8.0 (* C F))))) t_4)
(- (/ (* t_1 (* t_0 t_2)) (sqrt C)))))))))double code(double A, double B, double C, double F) {
return -sqrt((2.0 * ((pow(B, 2.0) - ((4.0 * A) * C)) * F)) * ((A + C) - sqrt(pow((A - C), 2.0) + pow(B, 2.0)))) / (pow(B, 2.0) - ((4.0 * A) * C));
}
double code(double A, double B, double C, double F) {
double t_0 = cbrt(sqrt(2.0));
double t_1 = t_0 * t_0;
double t_2 = sqrt(F * -0.5);
double t_3 = pow((A - C), 2.0);
double t_4 = pow(B, 2.0) - ((4.0 * A) * C);
double t_5 = -sqrt((2.0 * (t_4 * F)) * ((A + C) - sqrt(pow(B, 2.0) + t_3))) / t_4;
double tmp;
if (t_5 <= -((double) INFINITY)) {
tmp = t_1 * (t_2 * (t_0 * (-1.0 / sqrt(C))));
} else if (t_5 <= -1.2953816470925393e-207) {
double t_6 = 2.0 * (F * ((B * B) - (4.0 * (A * C))));
tmp = -sqrt((A * t_6) + (t_6 * (C - sqrt(t_3 + (B * B))))) / t_4;
} else if (t_5 <= 0.0) {
double t_7 = sqrt(sqrt(2.0));
tmp = -(t_7 * (t_7 * (t_2 / sqrt(C))));
} else if (t_5 <= ((double) INFINITY)) {
tmp = (A * (sqrt(2.0) * sqrt(-8.0 * (C * F)))) / t_4;
} else {
tmp = -((t_1 * (t_0 * t_2)) / sqrt(C));
}
return tmp;
}



Bits error versus A



Bits error versus B



Bits error versus C



Bits error versus F
Results
if (/.f64 (neg.f64 (sqrt.f64 (*.f64 (*.f64 2 (*.f64 (-.f64 (pow.f64 B 2) (*.f64 (*.f64 4 A) C)) F)) (-.f64 (+.f64 A C) (sqrt.f64 (+.f64 (pow.f64 (-.f64 A C) 2) (pow.f64 B 2))))))) (-.f64 (pow.f64 B 2) (*.f64 (*.f64 4 A) C))) < -inf.0Initial program 64.0
Taylor expanded around -inf 34.8
Simplified34.8
rmApplied associate-*r/_binary6434.7
Applied sqrt-div_binary6424.3
Simplified24.3
rmApplied add-cube-cbrt_binary6424.3
Applied associate-*l*_binary6424.3
Simplified24.3
rmApplied div-inv_binary6424.3
Applied associate-*l*_binary6424.3
if -inf.0 < (/.f64 (neg.f64 (sqrt.f64 (*.f64 (*.f64 2 (*.f64 (-.f64 (pow.f64 B 2) (*.f64 (*.f64 4 A) C)) F)) (-.f64 (+.f64 A C) (sqrt.f64 (+.f64 (pow.f64 (-.f64 A C) 2) (pow.f64 B 2))))))) (-.f64 (pow.f64 B 2) (*.f64 (*.f64 4 A) C))) < -1.29538164709253926e-207Initial program 1.4
rmApplied associate--l+_binary641.4
Applied distribute-rgt-in_binary641.4
Simplified1.4
Simplified1.4
if -1.29538164709253926e-207 < (/.f64 (neg.f64 (sqrt.f64 (*.f64 (*.f64 2 (*.f64 (-.f64 (pow.f64 B 2) (*.f64 (*.f64 4 A) C)) F)) (-.f64 (+.f64 A C) (sqrt.f64 (+.f64 (pow.f64 (-.f64 A C) 2) (pow.f64 B 2))))))) (-.f64 (pow.f64 B 2) (*.f64 (*.f64 4 A) C))) < 0.0Initial program 60.9
Taylor expanded around -inf 33.1
Simplified33.1
rmApplied associate-*r/_binary6433.1
Applied sqrt-div_binary6429.5
Simplified29.5
rmApplied add-sqr-sqrt_binary6429.6
Applied associate-*l*_binary6429.6
Simplified29.6
if 0.0 < (/.f64 (neg.f64 (sqrt.f64 (*.f64 (*.f64 2 (*.f64 (-.f64 (pow.f64 B 2) (*.f64 (*.f64 4 A) C)) F)) (-.f64 (+.f64 A C) (sqrt.f64 (+.f64 (pow.f64 (-.f64 A C) 2) (pow.f64 B 2))))))) (-.f64 (pow.f64 B 2) (*.f64 (*.f64 4 A) C))) < +inf.0Initial program 39.5
Taylor expanded around -inf 14.5
Simplified14.5
if +inf.0 < (/.f64 (neg.f64 (sqrt.f64 (*.f64 (*.f64 2 (*.f64 (-.f64 (pow.f64 B 2) (*.f64 (*.f64 4 A) C)) F)) (-.f64 (+.f64 A C) (sqrt.f64 (+.f64 (pow.f64 (-.f64 A C) 2) (pow.f64 B 2))))))) (-.f64 (pow.f64 B 2) (*.f64 (*.f64 4 A) C))) Initial program 64.0
Taylor expanded around -inf 52.4
Simplified52.4
rmApplied associate-*r/_binary6452.4
Applied sqrt-div_binary6448.1
Simplified48.1
rmApplied add-cube-cbrt_binary6448.1
Applied associate-*l*_binary6448.1
Simplified48.1
rmApplied associate-*l/_binary6448.1
Applied associate-*r/_binary6448.1
Final simplification31.1
herbie shell --seed 2021198
(FPCore (A B C F)
:name "ABCF->ab-angle b"
:precision binary64
(/ (- (sqrt (* (* 2.0 (* (- (pow B 2.0) (* (* 4.0 A) C)) F)) (- (+ A C) (sqrt (+ (pow (- A C) 2.0) (pow B 2.0))))))) (- (pow B 2.0) (* (* 4.0 A) C))))