Average Error: 28.4 → 5.2
Time: 20.9s
Precision: binary64
Cost: 47236
\[\left(\left(1.0536712127723509 \cdot 10^{-8} < a \land a < 94906265.62425156\right) \land \left(1.0536712127723509 \cdot 10^{-8} < b \land b < 94906265.62425156\right)\right) \land \left(1.0536712127723509 \cdot 10^{-8} < c \land c < 94906265.62425156\right)\]
\[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{3 \cdot a} \]
\[\begin{array}{l} \mathbf{if}\;b \leq 0.045:\\ \;\;\;\;\frac{\mathsf{fma}\left({\left(\mathsf{fma}\left(c, a \cdot -3, b \cdot b\right)\right)}^{0.25}, {\left(\frac{\left(c \cdot c\right) \cdot \left(a \cdot \left(a \cdot 9\right)\right) - {b}^{4}}{a \cdot \left(c \cdot -3\right) - b \cdot b}\right)}^{0.25}, -b\right)}{a \cdot 3}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.16666666666666666, \frac{{\left(c \cdot a\right)}^{4}}{a} \cdot \frac{6.328125}{{b}^{7}}, a \cdot \left(\frac{c \cdot -0.375}{\frac{{b}^{3}}{c}} + -0.5625 \cdot \left(a \cdot \frac{{c}^{3}}{{b}^{5}}\right)\right)\right)\right)\\ \end{array} \]
(FPCore (a b c)
 :precision binary64
 (/ (+ (- b) (sqrt (- (* b b) (* (* 3.0 a) c)))) (* 3.0 a)))
(FPCore (a b c)
 :precision binary64
 (if (<= b 0.045)
   (/
    (fma
     (pow (fma c (* a -3.0) (* b b)) 0.25)
     (pow
      (/
       (- (* (* c c) (* a (* a 9.0))) (pow b 4.0))
       (- (* a (* c -3.0)) (* b b)))
      0.25)
     (- b))
    (* a 3.0))
   (fma
    -0.5
    (/ c b)
    (fma
     -0.16666666666666666
     (* (/ (pow (* c a) 4.0) a) (/ 6.328125 (pow b 7.0)))
     (*
      a
      (+
       (/ (* c -0.375) (/ (pow b 3.0) c))
       (* -0.5625 (* a (/ (pow c 3.0) (pow b 5.0))))))))))
double code(double a, double b, double c) {
	return (-b + sqrt(((b * b) - ((3.0 * a) * c)))) / (3.0 * a);
}
double code(double a, double b, double c) {
	double tmp;
	if (b <= 0.045) {
		tmp = fma(pow(fma(c, (a * -3.0), (b * b)), 0.25), pow(((((c * c) * (a * (a * 9.0))) - pow(b, 4.0)) / ((a * (c * -3.0)) - (b * b))), 0.25), -b) / (a * 3.0);
	} else {
		tmp = fma(-0.5, (c / b), fma(-0.16666666666666666, ((pow((c * a), 4.0) / a) * (6.328125 / pow(b, 7.0))), (a * (((c * -0.375) / (pow(b, 3.0) / c)) + (-0.5625 * (a * (pow(c, 3.0) / pow(b, 5.0))))))));
	}
	return tmp;
}
function code(a, b, c)
	return Float64(Float64(Float64(-b) + sqrt(Float64(Float64(b * b) - Float64(Float64(3.0 * a) * c)))) / Float64(3.0 * a))
end
function code(a, b, c)
	tmp = 0.0
	if (b <= 0.045)
		tmp = Float64(fma((fma(c, Float64(a * -3.0), Float64(b * b)) ^ 0.25), (Float64(Float64(Float64(Float64(c * c) * Float64(a * Float64(a * 9.0))) - (b ^ 4.0)) / Float64(Float64(a * Float64(c * -3.0)) - Float64(b * b))) ^ 0.25), Float64(-b)) / Float64(a * 3.0));
	else
		tmp = fma(-0.5, Float64(c / b), fma(-0.16666666666666666, Float64(Float64((Float64(c * a) ^ 4.0) / a) * Float64(6.328125 / (b ^ 7.0))), Float64(a * Float64(Float64(Float64(c * -0.375) / Float64((b ^ 3.0) / c)) + Float64(-0.5625 * Float64(a * Float64((c ^ 3.0) / (b ^ 5.0))))))));
	end
	return tmp
end
code[a_, b_, c_] := N[(N[((-b) + N[Sqrt[N[(N[(b * b), $MachinePrecision] - N[(N[(3.0 * a), $MachinePrecision] * c), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] / N[(3.0 * a), $MachinePrecision]), $MachinePrecision]
code[a_, b_, c_] := If[LessEqual[b, 0.045], N[(N[(N[Power[N[(c * N[(a * -3.0), $MachinePrecision] + N[(b * b), $MachinePrecision]), $MachinePrecision], 0.25], $MachinePrecision] * N[Power[N[(N[(N[(N[(c * c), $MachinePrecision] * N[(a * N[(a * 9.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[Power[b, 4.0], $MachinePrecision]), $MachinePrecision] / N[(N[(a * N[(c * -3.0), $MachinePrecision]), $MachinePrecision] - N[(b * b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 0.25], $MachinePrecision] + (-b)), $MachinePrecision] / N[(a * 3.0), $MachinePrecision]), $MachinePrecision], N[(-0.5 * N[(c / b), $MachinePrecision] + N[(-0.16666666666666666 * N[(N[(N[Power[N[(c * a), $MachinePrecision], 4.0], $MachinePrecision] / a), $MachinePrecision] * N[(6.328125 / N[Power[b, 7.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(a * N[(N[(N[(c * -0.375), $MachinePrecision] / N[(N[Power[b, 3.0], $MachinePrecision] / c), $MachinePrecision]), $MachinePrecision] + N[(-0.5625 * N[(a * N[(N[Power[c, 3.0], $MachinePrecision] / N[Power[b, 5.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{3 \cdot a}
\begin{array}{l}
\mathbf{if}\;b \leq 0.045:\\
\;\;\;\;\frac{\mathsf{fma}\left({\left(\mathsf{fma}\left(c, a \cdot -3, b \cdot b\right)\right)}^{0.25}, {\left(\frac{\left(c \cdot c\right) \cdot \left(a \cdot \left(a \cdot 9\right)\right) - {b}^{4}}{a \cdot \left(c \cdot -3\right) - b \cdot b}\right)}^{0.25}, -b\right)}{a \cdot 3}\\

\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.16666666666666666, \frac{{\left(c \cdot a\right)}^{4}}{a} \cdot \frac{6.328125}{{b}^{7}}, a \cdot \left(\frac{c \cdot -0.375}{\frac{{b}^{3}}{c}} + -0.5625 \cdot \left(a \cdot \frac{{c}^{3}}{{b}^{5}}\right)\right)\right)\right)\\


\end{array}

Error

Derivation

  1. Split input into 2 regimes
  2. if b < 0.044999999999999998

    1. Initial program 9.2

      \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{3 \cdot a} \]
    2. Simplified9.1

      \[\leadsto \color{blue}{\frac{\sqrt{\mathsf{fma}\left(b, b, c \cdot \left(a \cdot -3\right)\right)} - b}{3 \cdot a}} \]
      Proof
      (/.f64 (-.f64 (sqrt.f64 (fma.f64 b b (*.f64 c (*.f64 a -3)))) b) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (sqrt.f64 (fma.f64 b b (*.f64 c (*.f64 a (Rewrite<= metadata-eval (neg.f64 3)))))) b) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (sqrt.f64 (fma.f64 b b (*.f64 c (Rewrite<= distribute-rgt-neg-in_binary64 (neg.f64 (*.f64 a 3)))))) b) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (sqrt.f64 (fma.f64 b b (*.f64 c (neg.f64 (Rewrite<= *-commutative_binary64 (*.f64 3 a)))))) b) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (sqrt.f64 (fma.f64 b b (Rewrite<= distribute-rgt-neg-in_binary64 (neg.f64 (*.f64 c (*.f64 3 a)))))) b) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (sqrt.f64 (fma.f64 b b (neg.f64 (Rewrite<= *-commutative_binary64 (*.f64 (*.f64 3 a) c))))) b) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (sqrt.f64 (Rewrite<= fma-neg_binary64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) b) (*.f64 3 a)): 22 points increase in error, 14 points decrease in error
      (/.f64 (-.f64 (Rewrite<= /-rgt-identity_binary64 (/.f64 (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c))) 1)) b) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (/.f64 (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c))) (Rewrite<= metadata-eval (/.f64 -1 -1))) b) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (Rewrite<= associate-/l*_binary64 (/.f64 (*.f64 (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c))) -1) -1)) b) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (/.f64 (Rewrite<= *-commutative_binary64 (*.f64 -1 (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c))))) -1) b) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (/.f64 (Rewrite<= neg-mul-1_binary64 (neg.f64 (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c))))) -1) b) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (/.f64 (neg.f64 (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) -1) (Rewrite<= /-rgt-identity_binary64 (/.f64 b 1))) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (/.f64 (neg.f64 (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) -1) (/.f64 b (Rewrite<= metadata-eval (/.f64 -1 -1)))) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (/.f64 (neg.f64 (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) -1) (Rewrite<= associate-/l*_binary64 (/.f64 (*.f64 b -1) -1))) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (/.f64 (neg.f64 (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) -1) (/.f64 (Rewrite<= *-commutative_binary64 (*.f64 -1 b)) -1)) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (/.f64 (neg.f64 (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) -1) (/.f64 (Rewrite<= neg-mul-1_binary64 (neg.f64 b)) -1)) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (Rewrite<= div-sub_binary64 (/.f64 (-.f64 (neg.f64 (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (neg.f64 b)) -1)) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (/.f64 (Rewrite=> sub-neg_binary64 (+.f64 (neg.f64 (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (neg.f64 (neg.f64 b)))) -1) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (/.f64 (+.f64 (neg.f64 (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (Rewrite=> remove-double-neg_binary64 b)) -1) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (/.f64 (Rewrite<= +-commutative_binary64 (+.f64 b (neg.f64 (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))))) -1) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (/.f64 (Rewrite<= sub-neg_binary64 (-.f64 b (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c))))) -1) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (Rewrite<= associate-/r*_binary64 (/.f64 (-.f64 b (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (*.f64 -1 (*.f64 3 a)))): 0 points increase in error, 0 points decrease in error
      (/.f64 (Rewrite<= *-lft-identity_binary64 (*.f64 1 (-.f64 b (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))))) (*.f64 -1 (*.f64 3 a))): 0 points increase in error, 0 points decrease in error
      (/.f64 (*.f64 (Rewrite<= metadata-eval (neg.f64 -1)) (-.f64 b (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c))))) (*.f64 -1 (*.f64 3 a))): 0 points increase in error, 0 points decrease in error
      (Rewrite=> times-frac_binary64 (*.f64 (/.f64 (neg.f64 -1) -1) (/.f64 (-.f64 b (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (*.f64 3 a)))): 0 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (Rewrite=> metadata-eval 1) -1) (/.f64 (-.f64 b (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (*.f64 3 a))): 0 points increase in error, 0 points decrease in error
      (*.f64 (Rewrite=> metadata-eval -1) (/.f64 (-.f64 b (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (*.f64 3 a))): 0 points increase in error, 0 points decrease in error
      (Rewrite=> associate-*r/_binary64 (/.f64 (*.f64 -1 (-.f64 b (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c))))) (*.f64 3 a))): 0 points increase in error, 0 points decrease in error
      (/.f64 (Rewrite<= neg-mul-1_binary64 (neg.f64 (-.f64 b (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))))) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (Rewrite<= sub0-neg_binary64 (-.f64 0 (-.f64 b (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))))) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (Rewrite<= associate-+l-_binary64 (+.f64 (-.f64 0 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c))))) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
      (/.f64 (+.f64 (Rewrite<= neg-sub0_binary64 (neg.f64 b)) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (*.f64 3 a)): 0 points increase in error, 0 points decrease in error
    3. Applied egg-rr9.9

      \[\leadsto \frac{\color{blue}{\mathsf{fma}\left({\left(\mathsf{fma}\left(c, a \cdot -3, b \cdot b\right)\right)}^{0.25}, {\left(\mathsf{fma}\left(c, a \cdot -3, b \cdot b\right)\right)}^{0.25}, -b\right)}}{3 \cdot a} \]
    4. Applied egg-rr9.6

      \[\leadsto \frac{\mathsf{fma}\left({\left(\mathsf{fma}\left(c, a \cdot -3, b \cdot b\right)\right)}^{0.25}, {\color{blue}{\left(\frac{\mathsf{fma}\left(c \cdot \left(a \cdot -3\right), c \cdot \left(a \cdot -3\right), -{b}^{4}\right)}{c \cdot \left(a \cdot -3\right) - b \cdot b}\right)}}^{0.25}, -b\right)}{3 \cdot a} \]
    5. Simplified9.6

      \[\leadsto \frac{\mathsf{fma}\left({\left(\mathsf{fma}\left(c, a \cdot -3, b \cdot b\right)\right)}^{0.25}, {\color{blue}{\left(\frac{\left(c \cdot c\right) \cdot \left(a \cdot \left(a \cdot 9\right)\right) - {b}^{4}}{\left(c \cdot -3\right) \cdot a - b \cdot b}\right)}}^{0.25}, -b\right)}{3 \cdot a} \]
      Proof
      (/.f64 (-.f64 (*.f64 (*.f64 c c) (*.f64 a (*.f64 a 9))) (pow.f64 b 4)) (-.f64 (*.f64 (*.f64 c -3) a) (*.f64 b b))): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (*.f64 (*.f64 c c) (Rewrite<= associate-*l*_binary64 (*.f64 (*.f64 a a) 9))) (pow.f64 b 4)) (-.f64 (*.f64 (*.f64 c -3) a) (*.f64 b b))): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (*.f64 (*.f64 c c) (*.f64 (*.f64 a a) (Rewrite<= metadata-eval (*.f64 -3 -3)))) (pow.f64 b 4)) (-.f64 (*.f64 (*.f64 c -3) a) (*.f64 b b))): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (*.f64 (*.f64 c c) (Rewrite<= swap-sqr_binary64 (*.f64 (*.f64 a -3) (*.f64 a -3)))) (pow.f64 b 4)) (-.f64 (*.f64 (*.f64 c -3) a) (*.f64 b b))): 0 points increase in error, 0 points decrease in error
      (/.f64 (-.f64 (Rewrite<= swap-sqr_binary64 (*.f64 (*.f64 c (*.f64 a -3)) (*.f64 c (*.f64 a -3)))) (pow.f64 b 4)) (-.f64 (*.f64 (*.f64 c -3) a) (*.f64 b b))): 1 points increase in error, 2 points decrease in error
      (/.f64 (Rewrite<= unsub-neg_binary64 (+.f64 (*.f64 (*.f64 c (*.f64 a -3)) (*.f64 c (*.f64 a -3))) (neg.f64 (pow.f64 b 4)))) (-.f64 (*.f64 (*.f64 c -3) a) (*.f64 b b))): 0 points increase in error, 0 points decrease in error
      (/.f64 (Rewrite<= fma-udef_binary64 (fma.f64 (*.f64 c (*.f64 a -3)) (*.f64 c (*.f64 a -3)) (neg.f64 (pow.f64 b 4)))) (-.f64 (*.f64 (*.f64 c -3) a) (*.f64 b b))): 1 points increase in error, 1 points decrease in error
      (/.f64 (fma.f64 (*.f64 c (*.f64 a -3)) (*.f64 c (*.f64 a -3)) (neg.f64 (pow.f64 b 4))) (-.f64 (*.f64 (Rewrite<= *-commutative_binary64 (*.f64 -3 c)) a) (*.f64 b b))): 0 points increase in error, 0 points decrease in error
      (/.f64 (fma.f64 (*.f64 c (*.f64 a -3)) (*.f64 c (*.f64 a -3)) (neg.f64 (pow.f64 b 4))) (-.f64 (Rewrite<= associate-*r*_binary64 (*.f64 -3 (*.f64 c a))) (*.f64 b b))): 1 points increase in error, 1 points decrease in error
      (/.f64 (fma.f64 (*.f64 c (*.f64 a -3)) (*.f64 c (*.f64 a -3)) (neg.f64 (pow.f64 b 4))) (-.f64 (Rewrite=> *-commutative_binary64 (*.f64 (*.f64 c a) -3)) (*.f64 b b))): 0 points increase in error, 0 points decrease in error
      (/.f64 (fma.f64 (*.f64 c (*.f64 a -3)) (*.f64 c (*.f64 a -3)) (neg.f64 (pow.f64 b 4))) (-.f64 (Rewrite<= associate-*r*_binary64 (*.f64 c (*.f64 a -3))) (*.f64 b b))): 1 points increase in error, 2 points decrease in error

    if 0.044999999999999998 < b

    1. Initial program 30.3

      \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(3 \cdot a\right) \cdot c}}{3 \cdot a} \]
    2. Simplified30.3

      \[\leadsto \color{blue}{\frac{b - \sqrt{\mathsf{fma}\left(b, b, a \cdot \left(c \cdot -3\right)\right)}}{a} \cdot -0.3333333333333333} \]
      Proof
      (*.f64 (/.f64 (-.f64 b (sqrt.f64 (fma.f64 b b (*.f64 a (*.f64 c -3))))) a) -1/3): 0 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (-.f64 b (sqrt.f64 (fma.f64 b b (*.f64 a (*.f64 c (Rewrite<= metadata-eval (neg.f64 3))))))) a) -1/3): 0 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (-.f64 b (sqrt.f64 (fma.f64 b b (Rewrite<= associate-*l*_binary64 (*.f64 (*.f64 a c) (neg.f64 3)))))) a) -1/3): 0 points increase in error, 4 points decrease in error
      (*.f64 (/.f64 (-.f64 b (sqrt.f64 (fma.f64 b b (Rewrite<= distribute-rgt-neg-in_binary64 (neg.f64 (*.f64 (*.f64 a c) 3)))))) a) -1/3): 0 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (-.f64 b (sqrt.f64 (fma.f64 b b (neg.f64 (Rewrite<= *-commutative_binary64 (*.f64 3 (*.f64 a c))))))) a) -1/3): 0 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (-.f64 b (sqrt.f64 (fma.f64 b b (neg.f64 (Rewrite<= associate-*l*_binary64 (*.f64 (*.f64 3 a) c)))))) a) -1/3): 2 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (-.f64 b (sqrt.f64 (Rewrite<= fma-neg_binary64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c))))) a) -1/3): 22 points increase in error, 14 points decrease in error
      (*.f64 (/.f64 (Rewrite<= /-rgt-identity_binary64 (/.f64 (-.f64 b (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) 1)) a) -1/3): 0 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (/.f64 (-.f64 b (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (Rewrite<= metadata-eval (/.f64 -1 -1))) a) -1/3): 0 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (Rewrite<= associate-/l*_binary64 (/.f64 (*.f64 (-.f64 b (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) -1) -1)) a) -1/3): 0 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (/.f64 (Rewrite<= *-commutative_binary64 (*.f64 -1 (-.f64 b (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))))) -1) a) -1/3): 0 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (/.f64 (Rewrite<= neg-mul-1_binary64 (neg.f64 (-.f64 b (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))))) -1) a) -1/3): 0 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (/.f64 (Rewrite<= sub0-neg_binary64 (-.f64 0 (-.f64 b (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))))) -1) a) -1/3): 0 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (/.f64 (Rewrite<= associate-+l-_binary64 (+.f64 (-.f64 0 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c))))) -1) a) -1/3): 0 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (/.f64 (+.f64 (Rewrite<= neg-sub0_binary64 (neg.f64 b)) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) -1) a) -1/3): 0 points increase in error, 0 points decrease in error
      (*.f64 (Rewrite<= associate-/r*_binary64 (/.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (*.f64 -1 a))) -1/3): 0 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (Rewrite<= neg-mul-1_binary64 (neg.f64 a))) -1/3): 0 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (neg.f64 a)) (Rewrite<= metadata-eval (/.f64 -1 3))): 0 points increase in error, 0 points decrease in error
      (Rewrite<= times-frac_binary64 (/.f64 (*.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) -1) (*.f64 (neg.f64 a) 3))): 44 points increase in error, 36 points decrease in error
      (/.f64 (*.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) -1) (Rewrite<= distribute-lft-neg-in_binary64 (neg.f64 (*.f64 a 3)))): 0 points increase in error, 0 points decrease in error
      (/.f64 (*.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) -1) (neg.f64 (Rewrite<= *-commutative_binary64 (*.f64 3 a)))): 0 points increase in error, 0 points decrease in error
      (/.f64 (*.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) -1) (Rewrite=> neg-mul-1_binary64 (*.f64 -1 (*.f64 3 a)))): 0 points increase in error, 0 points decrease in error
      (/.f64 (*.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) -1) (Rewrite=> *-commutative_binary64 (*.f64 (*.f64 3 a) -1))): 0 points increase in error, 0 points decrease in error
      (Rewrite=> times-frac_binary64 (*.f64 (/.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (*.f64 3 a)) (/.f64 -1 -1))): 0 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (*.f64 3 a)) (Rewrite=> metadata-eval 1)): 0 points increase in error, 0 points decrease in error
      (*.f64 (/.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (*.f64 3 a)) (Rewrite<= metadata-eval (neg.f64 -1))): 0 points increase in error, 0 points decrease in error
      (Rewrite<= associate-/r/_binary64 (/.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (/.f64 (*.f64 3 a) (neg.f64 -1)))): 0 points increase in error, 0 points decrease in error
      (/.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (/.f64 (*.f64 3 a) (Rewrite=> metadata-eval 1))): 0 points increase in error, 0 points decrease in error
      (/.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 3 a) c)))) (Rewrite=> /-rgt-identity_binary64 (*.f64 3 a))): 0 points increase in error, 0 points decrease in error
    3. Taylor expanded in b around inf 5.0

      \[\leadsto \color{blue}{\left(1.6875 \cdot \frac{{c}^{3} \cdot {a}^{2}}{{b}^{5}} + \left(1.125 \cdot \frac{{c}^{2} \cdot a}{{b}^{3}} + \left(1.5 \cdot \frac{c}{b} + 0.5 \cdot \frac{{\left(-1.125 \cdot \left({c}^{2} \cdot {a}^{2}\right)\right)}^{2} + 5.0625 \cdot \left({c}^{4} \cdot {a}^{4}\right)}{a \cdot {b}^{7}}\right)\right)\right)} \cdot -0.3333333333333333 \]
    4. Simplified5.0

      \[\leadsto \color{blue}{\mathsf{fma}\left(1.6875, \frac{{c}^{3}}{\frac{{b}^{5}}{a \cdot a}}, \mathsf{fma}\left(1.125, \frac{c \cdot c}{\frac{{b}^{3}}{a}}, \mathsf{fma}\left(1.5, \frac{c}{b}, \frac{0.5 \cdot \left({\left(\left(\left(c \cdot c\right) \cdot \left(a \cdot a\right)\right) \cdot -1.125\right)}^{2} + 5.0625 \cdot \left({c}^{4} \cdot {a}^{4}\right)\right)}{a \cdot {b}^{7}}\right)\right)\right)} \cdot -0.3333333333333333 \]
      Proof
      (fma.f64 27/16 (/.f64 (pow.f64 c 3) (/.f64 (pow.f64 b 5) (*.f64 a a))) (fma.f64 9/8 (/.f64 (*.f64 c c) (/.f64 (pow.f64 b 3) a)) (fma.f64 3/2 (/.f64 c b) (/.f64 (*.f64 1/2 (+.f64 (pow.f64 (*.f64 (*.f64 (*.f64 c c) (*.f64 a a)) -9/8) 2) (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))))) (*.f64 a (pow.f64 b 7)))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 27/16 (/.f64 (pow.f64 c 3) (/.f64 (pow.f64 b 5) (Rewrite<= unpow2_binary64 (pow.f64 a 2)))) (fma.f64 9/8 (/.f64 (*.f64 c c) (/.f64 (pow.f64 b 3) a)) (fma.f64 3/2 (/.f64 c b) (/.f64 (*.f64 1/2 (+.f64 (pow.f64 (*.f64 (*.f64 (*.f64 c c) (*.f64 a a)) -9/8) 2) (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))))) (*.f64 a (pow.f64 b 7)))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 27/16 (Rewrite<= associate-/l*_binary64 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (fma.f64 9/8 (/.f64 (*.f64 c c) (/.f64 (pow.f64 b 3) a)) (fma.f64 3/2 (/.f64 c b) (/.f64 (*.f64 1/2 (+.f64 (pow.f64 (*.f64 (*.f64 (*.f64 c c) (*.f64 a a)) -9/8) 2) (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))))) (*.f64 a (pow.f64 b 7)))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 27/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5)) (fma.f64 9/8 (/.f64 (Rewrite<= unpow2_binary64 (pow.f64 c 2)) (/.f64 (pow.f64 b 3) a)) (fma.f64 3/2 (/.f64 c b) (/.f64 (*.f64 1/2 (+.f64 (pow.f64 (*.f64 (*.f64 (*.f64 c c) (*.f64 a a)) -9/8) 2) (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))))) (*.f64 a (pow.f64 b 7)))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 27/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5)) (fma.f64 9/8 (Rewrite<= associate-/l*_binary64 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))) (fma.f64 3/2 (/.f64 c b) (/.f64 (*.f64 1/2 (+.f64 (pow.f64 (*.f64 (*.f64 (*.f64 c c) (*.f64 a a)) -9/8) 2) (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))))) (*.f64 a (pow.f64 b 7)))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 27/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5)) (fma.f64 9/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3)) (fma.f64 3/2 (/.f64 c b) (/.f64 (*.f64 1/2 (+.f64 (pow.f64 (*.f64 (*.f64 (Rewrite<= unpow2_binary64 (pow.f64 c 2)) (*.f64 a a)) -9/8) 2) (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))))) (*.f64 a (pow.f64 b 7)))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 27/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5)) (fma.f64 9/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3)) (fma.f64 3/2 (/.f64 c b) (/.f64 (*.f64 1/2 (+.f64 (pow.f64 (*.f64 (*.f64 (pow.f64 c 2) (Rewrite<= unpow2_binary64 (pow.f64 a 2))) -9/8) 2) (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))))) (*.f64 a (pow.f64 b 7)))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 27/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5)) (fma.f64 9/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3)) (fma.f64 3/2 (/.f64 c b) (/.f64 (*.f64 1/2 (+.f64 (pow.f64 (Rewrite<= *-commutative_binary64 (*.f64 -9/8 (*.f64 (pow.f64 c 2) (pow.f64 a 2)))) 2) (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))))) (*.f64 a (pow.f64 b 7)))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 27/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5)) (fma.f64 9/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3)) (fma.f64 3/2 (/.f64 c b) (Rewrite<= associate-*r/_binary64 (*.f64 1/2 (/.f64 (+.f64 (pow.f64 (*.f64 -9/8 (*.f64 (pow.f64 c 2) (pow.f64 a 2))) 2) (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 27/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5)) (fma.f64 9/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3)) (Rewrite<= fma-def_binary64 (+.f64 (*.f64 3/2 (/.f64 c b)) (*.f64 1/2 (/.f64 (+.f64 (pow.f64 (*.f64 -9/8 (*.f64 (pow.f64 c 2) (pow.f64 a 2))) 2) (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7)))))))): 8 points increase in error, 46 points decrease in error
      (fma.f64 27/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5)) (Rewrite<= fma-def_binary64 (+.f64 (*.f64 9/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))) (+.f64 (*.f64 3/2 (/.f64 c b)) (*.f64 1/2 (/.f64 (+.f64 (pow.f64 (*.f64 -9/8 (*.f64 (pow.f64 c 2) (pow.f64 a 2))) 2) (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7)))))))): 0 points increase in error, 0 points decrease in error
      (Rewrite<= fma-def_binary64 (+.f64 (*.f64 27/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (+.f64 (*.f64 9/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))) (+.f64 (*.f64 3/2 (/.f64 c b)) (*.f64 1/2 (/.f64 (+.f64 (pow.f64 (*.f64 -9/8 (*.f64 (pow.f64 c 2) (pow.f64 a 2))) 2) (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7)))))))): 0 points increase in error, 0 points decrease in error
    5. Taylor expanded in c around 0 4.8

      \[\leadsto \color{blue}{-0.5625 \cdot \frac{{c}^{3} \cdot {a}^{2}}{{b}^{5}} + \left(-0.16666666666666666 \cdot \frac{{c}^{4} \cdot \left(1.265625 \cdot {a}^{4} + 5.0625 \cdot {a}^{4}\right)}{a \cdot {b}^{7}} + \left(-0.5 \cdot \frac{c}{b} + -0.375 \cdot \frac{{c}^{2} \cdot a}{{b}^{3}}\right)\right)} \]
    6. Simplified4.8

      \[\leadsto \color{blue}{\mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.16666666666666666, \frac{{\left(c \cdot a\right)}^{4}}{a} \cdot \frac{6.328125}{{b}^{7}}, a \cdot \left(\frac{c \cdot -0.375}{\frac{{b}^{3}}{c}} + -0.5625 \cdot \left(a \cdot \frac{{c}^{3}}{{b}^{5}}\right)\right)\right)\right)} \]
      Proof
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (pow.f64 (*.f64 c a) 4) a) (/.f64 405/64 (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (pow.f64 (*.f64 c a) (Rewrite<= metadata-eval (*.f64 2 2))) a) (/.f64 405/64 (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (Rewrite<= pow-sqr_binary64 (*.f64 (pow.f64 (*.f64 c a) 2) (pow.f64 (*.f64 c a) 2))) a) (/.f64 405/64 (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (*.f64 (Rewrite=> unpow2_binary64 (*.f64 (*.f64 c a) (*.f64 c a))) (pow.f64 (*.f64 c a) 2)) a) (/.f64 405/64 (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (*.f64 (Rewrite<= unswap-sqr_binary64 (*.f64 (*.f64 c c) (*.f64 a a))) (pow.f64 (*.f64 c a) 2)) a) (/.f64 405/64 (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (*.f64 (*.f64 (*.f64 c c) (*.f64 a a)) (Rewrite=> unpow2_binary64 (*.f64 (*.f64 c a) (*.f64 c a)))) a) (/.f64 405/64 (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (*.f64 (*.f64 (*.f64 c c) (*.f64 a a)) (Rewrite<= unswap-sqr_binary64 (*.f64 (*.f64 c c) (*.f64 a a)))) a) (/.f64 405/64 (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (Rewrite<= unswap-sqr_binary64 (*.f64 (*.f64 (*.f64 c c) (*.f64 c c)) (*.f64 (*.f64 a a) (*.f64 a a)))) a) (/.f64 405/64 (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (*.f64 (*.f64 (Rewrite<= unpow2_binary64 (pow.f64 c 2)) (*.f64 c c)) (*.f64 (*.f64 a a) (*.f64 a a))) a) (/.f64 405/64 (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (*.f64 (*.f64 (pow.f64 c 2) (Rewrite<= unpow2_binary64 (pow.f64 c 2))) (*.f64 (*.f64 a a) (*.f64 a a))) a) (/.f64 405/64 (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (*.f64 (Rewrite=> pow-sqr_binary64 (pow.f64 c (*.f64 2 2))) (*.f64 (*.f64 a a) (*.f64 a a))) a) (/.f64 405/64 (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (*.f64 (pow.f64 c (Rewrite=> metadata-eval 4)) (*.f64 (*.f64 a a) (*.f64 a a))) a) (/.f64 405/64 (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (*.f64 (pow.f64 c 4) (*.f64 (Rewrite<= unpow2_binary64 (pow.f64 a 2)) (*.f64 a a))) a) (/.f64 405/64 (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (*.f64 (pow.f64 c 4) (*.f64 (pow.f64 a 2) (Rewrite<= unpow2_binary64 (pow.f64 a 2)))) a) (/.f64 405/64 (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (*.f64 (pow.f64 c 4) (Rewrite=> pow-sqr_binary64 (pow.f64 a (*.f64 2 2)))) a) (/.f64 405/64 (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (*.f64 (pow.f64 c 4) (pow.f64 a (Rewrite=> metadata-eval 4))) a) (/.f64 405/64 (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (*.f64 (/.f64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)) a) (/.f64 (Rewrite<= metadata-eval (+.f64 81/16 81/64)) (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (Rewrite<= times-frac_binary64 (/.f64 (*.f64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)) (+.f64 81/16 81/64)) (*.f64 a (pow.f64 b 7)))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (/.f64 (Rewrite<= distribute-rgt-out_binary64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4))))) (*.f64 a (pow.f64 b 7))) (*.f64 a (+.f64 (/.f64 (*.f64 c -3/8) (/.f64 (pow.f64 b 3) c)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7))) (*.f64 a (+.f64 (Rewrite<= associate-*l/_binary64 (*.f64 (/.f64 c (/.f64 (pow.f64 b 3) c)) -3/8)) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 1 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7))) (*.f64 a (+.f64 (*.f64 (Rewrite<= associate-/l*_binary64 (/.f64 (*.f64 c c) (pow.f64 b 3))) -3/8) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7))) (*.f64 a (+.f64 (Rewrite=> *-commutative_binary64 (*.f64 -3/8 (/.f64 (*.f64 c c) (pow.f64 b 3)))) (*.f64 -9/16 (*.f64 a (/.f64 (pow.f64 c 3) (pow.f64 b 5)))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7))) (*.f64 a (+.f64 (*.f64 -3/8 (/.f64 (*.f64 c c) (pow.f64 b 3))) (*.f64 -9/16 (Rewrite<= *-commutative_binary64 (*.f64 (/.f64 (pow.f64 c 3) (pow.f64 b 5)) a))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7))) (Rewrite<= distribute-rgt-out_binary64 (+.f64 (*.f64 (*.f64 -3/8 (/.f64 (*.f64 c c) (pow.f64 b 3))) a) (*.f64 (*.f64 -9/16 (*.f64 (/.f64 (pow.f64 c 3) (pow.f64 b 5)) a)) a))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7))) (+.f64 (Rewrite<= associate-*r*_binary64 (*.f64 -3/8 (*.f64 (/.f64 (*.f64 c c) (pow.f64 b 3)) a))) (*.f64 (*.f64 -9/16 (*.f64 (/.f64 (pow.f64 c 3) (pow.f64 b 5)) a)) a)))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7))) (+.f64 (*.f64 -3/8 (Rewrite=> associate-*l/_binary64 (/.f64 (*.f64 (*.f64 c c) a) (pow.f64 b 3)))) (*.f64 (*.f64 -9/16 (*.f64 (/.f64 (pow.f64 c 3) (pow.f64 b 5)) a)) a)))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7))) (+.f64 (*.f64 -3/8 (/.f64 (*.f64 (Rewrite<= unpow2_binary64 (pow.f64 c 2)) a) (pow.f64 b 3))) (*.f64 (*.f64 -9/16 (*.f64 (/.f64 (pow.f64 c 3) (pow.f64 b 5)) a)) a)))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7))) (+.f64 (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))) (Rewrite<= associate-*r*_binary64 (*.f64 -9/16 (*.f64 (*.f64 (/.f64 (pow.f64 c 3) (pow.f64 b 5)) a) a)))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7))) (+.f64 (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))) (*.f64 -9/16 (Rewrite<= associate-*r*_binary64 (*.f64 (/.f64 (pow.f64 c 3) (pow.f64 b 5)) (*.f64 a a))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7))) (+.f64 (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))) (*.f64 -9/16 (Rewrite=> associate-*l/_binary64 (/.f64 (*.f64 (pow.f64 c 3) (*.f64 a a)) (pow.f64 b 5))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7))) (+.f64 (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))) (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (Rewrite<= unpow2_binary64 (pow.f64 a 2))) (pow.f64 b 5)))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (fma.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7))) (Rewrite<= +-commutative_binary64 (+.f64 (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (Rewrite<= fma-def_binary64 (+.f64 (*.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7)))) (+.f64 (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (Rewrite<= associate-+l+_binary64 (+.f64 (+.f64 (*.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7)))) (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5)))) (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3)))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (+.f64 (Rewrite<= +-commutative_binary64 (+.f64 (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (*.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7)))))) (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))))): 0 points increase in error, 0 points decrease in error
      (fma.f64 -1/2 (/.f64 c b) (Rewrite<= associate-+r+_binary64 (+.f64 (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (+.f64 (*.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7)))) (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))))))): 0 points increase in error, 0 points decrease in error
      (Rewrite<= fma-def_binary64 (+.f64 (*.f64 -1/2 (/.f64 c b)) (+.f64 (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (+.f64 (*.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7)))) (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))))))): 0 points increase in error, 0 points decrease in error
      (Rewrite<= associate-+l+_binary64 (+.f64 (+.f64 (*.f64 -1/2 (/.f64 c b)) (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5)))) (+.f64 (*.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7)))) (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3)))))): 15 points increase in error, 12 points decrease in error
      (+.f64 (Rewrite<= +-commutative_binary64 (+.f64 (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (*.f64 -1/2 (/.f64 c b)))) (+.f64 (*.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7)))) (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))))): 0 points increase in error, 0 points decrease in error
      (+.f64 (+.f64 (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (*.f64 -1/2 (/.f64 c b))) (Rewrite=> +-commutative_binary64 (+.f64 (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))) (*.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7))))))): 0 points increase in error, 0 points decrease in error
      (Rewrite=> associate-+r+_binary64 (+.f64 (+.f64 (+.f64 (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (*.f64 -1/2 (/.f64 c b))) (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3)))) (*.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7)))))): 18 points increase in error, 10 points decrease in error
      (+.f64 (Rewrite<= associate-+r+_binary64 (+.f64 (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (+.f64 (*.f64 -1/2 (/.f64 c b)) (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3)))))) (*.f64 -1/6 (/.f64 (+.f64 (*.f64 81/16 (*.f64 (pow.f64 c 4) (pow.f64 a 4))) (*.f64 81/64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7))))): 0 points increase in error, 0 points decrease in error
      (+.f64 (+.f64 (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (+.f64 (*.f64 -1/2 (/.f64 c b)) (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))))) (*.f64 -1/6 (/.f64 (Rewrite=> distribute-rgt-out_binary64 (*.f64 (*.f64 (pow.f64 c 4) (pow.f64 a 4)) (+.f64 81/16 81/64))) (*.f64 a (pow.f64 b 7))))): 0 points increase in error, 0 points decrease in error
      (+.f64 (+.f64 (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (+.f64 (*.f64 -1/2 (/.f64 c b)) (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))))) (*.f64 -1/6 (/.f64 (Rewrite=> associate-*l*_binary64 (*.f64 (pow.f64 c 4) (*.f64 (pow.f64 a 4) (+.f64 81/16 81/64)))) (*.f64 a (pow.f64 b 7))))): 0 points increase in error, 0 points decrease in error
      (+.f64 (+.f64 (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (+.f64 (*.f64 -1/2 (/.f64 c b)) (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))))) (*.f64 -1/6 (/.f64 (*.f64 (pow.f64 c 4) (Rewrite<= distribute-rgt-out_binary64 (+.f64 (*.f64 81/16 (pow.f64 a 4)) (*.f64 81/64 (pow.f64 a 4))))) (*.f64 a (pow.f64 b 7))))): 0 points increase in error, 0 points decrease in error
      (+.f64 (+.f64 (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (+.f64 (*.f64 -1/2 (/.f64 c b)) (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))))) (*.f64 -1/6 (/.f64 (*.f64 (pow.f64 c 4) (Rewrite<= +-commutative_binary64 (+.f64 (*.f64 81/64 (pow.f64 a 4)) (*.f64 81/16 (pow.f64 a 4))))) (*.f64 a (pow.f64 b 7))))): 0 points increase in error, 0 points decrease in error
      (Rewrite<= associate-+r+_binary64 (+.f64 (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (+.f64 (+.f64 (*.f64 -1/2 (/.f64 c b)) (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3)))) (*.f64 -1/6 (/.f64 (*.f64 (pow.f64 c 4) (+.f64 (*.f64 81/64 (pow.f64 a 4)) (*.f64 81/16 (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7))))))): 0 points increase in error, 0 points decrease in error
      (+.f64 (*.f64 -9/16 (/.f64 (*.f64 (pow.f64 c 3) (pow.f64 a 2)) (pow.f64 b 5))) (Rewrite<= +-commutative_binary64 (+.f64 (*.f64 -1/6 (/.f64 (*.f64 (pow.f64 c 4) (+.f64 (*.f64 81/64 (pow.f64 a 4)) (*.f64 81/16 (pow.f64 a 4)))) (*.f64 a (pow.f64 b 7)))) (+.f64 (*.f64 -1/2 (/.f64 c b)) (*.f64 -3/8 (/.f64 (*.f64 (pow.f64 c 2) a) (pow.f64 b 3))))))): 0 points increase in error, 0 points decrease in error
  3. Recombined 2 regimes into one program.
  4. Final simplification5.2

    \[\leadsto \begin{array}{l} \mathbf{if}\;b \leq 0.045:\\ \;\;\;\;\frac{\mathsf{fma}\left({\left(\mathsf{fma}\left(c, a \cdot -3, b \cdot b\right)\right)}^{0.25}, {\left(\frac{\left(c \cdot c\right) \cdot \left(a \cdot \left(a \cdot 9\right)\right) - {b}^{4}}{a \cdot \left(c \cdot -3\right) - b \cdot b}\right)}^{0.25}, -b\right)}{a \cdot 3}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(-0.5, \frac{c}{b}, \mathsf{fma}\left(-0.16666666666666666, \frac{{\left(c \cdot a\right)}^{4}}{a} \cdot \frac{6.328125}{{b}^{7}}, a \cdot \left(\frac{c \cdot -0.375}{\frac{{b}^{3}}{c}} + -0.5625 \cdot \left(a \cdot \frac{{c}^{3}}{{b}^{5}}\right)\right)\right)\right)\\ \end{array} \]

Alternatives

Alternative 1
Error6.9
Cost34500
\[\begin{array}{l} \mathbf{if}\;b \leq 0.034:\\ \;\;\;\;\frac{\mathsf{fma}\left({\left(\mathsf{fma}\left(c, a \cdot -3, b \cdot b\right)\right)}^{0.25}, {\left(\frac{\left(c \cdot c\right) \cdot \left(a \cdot \left(a \cdot 9\right)\right) - {b}^{4}}{a \cdot \left(c \cdot -3\right) - b \cdot b}\right)}^{0.25}, -b\right)}{a \cdot 3}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(-0.5, \frac{c}{b}, a \cdot \left(\frac{c \cdot -0.375}{\frac{{b}^{3}}{c}} + -0.5625 \cdot \left(a \cdot \frac{{c}^{3}}{{b}^{5}}\right)\right)\right)\\ \end{array} \]
Alternative 2
Error6.9
Cost27268
\[\begin{array}{l} \mathbf{if}\;b \leq 0.03:\\ \;\;\;\;\frac{b - \sqrt{\mathsf{fma}\left(b, b, -3 \cdot \left(c \cdot a\right)\right)}}{a} \cdot -0.3333333333333333\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(-0.5, \frac{c}{b}, a \cdot \left(\frac{c \cdot -0.375}{\frac{{b}^{3}}{c}} + -0.5625 \cdot \left(a \cdot \frac{{c}^{3}}{{b}^{5}}\right)\right)\right)\\ \end{array} \]
Alternative 3
Error9.7
Cost13764
\[\begin{array}{l} \mathbf{if}\;b \leq 0.79:\\ \;\;\;\;\left(\sqrt{\mathsf{fma}\left(b, b, c \cdot \left(a \cdot -3\right)\right)} - b\right) \cdot \frac{0.3333333333333333}{a}\\ \mathbf{else}:\\ \;\;\;\;-0.5 \cdot \frac{c}{b} + -0.375 \cdot \left(a \cdot \frac{c \cdot c}{{b}^{3}}\right)\\ \end{array} \]
Alternative 4
Error9.7
Cost13764
\[\begin{array}{l} \mathbf{if}\;b \leq 0.82:\\ \;\;\;\;\frac{b - \sqrt{\mathsf{fma}\left(b, b, -3 \cdot \left(c \cdot a\right)\right)}}{a} \cdot -0.3333333333333333\\ \mathbf{else}:\\ \;\;\;\;-0.5 \cdot \frac{c}{b} + -0.375 \cdot \left(a \cdot \frac{c \cdot c}{{b}^{3}}\right)\\ \end{array} \]
Alternative 5
Error9.7
Cost7556
\[\begin{array}{l} \mathbf{if}\;b \leq 0.78:\\ \;\;\;\;\frac{\sqrt{b \cdot b + c \cdot \left(a \cdot -3\right)} - b}{a \cdot 3}\\ \mathbf{else}:\\ \;\;\;\;-0.5 \cdot \frac{c}{b} + -0.375 \cdot \left(a \cdot \frac{c \cdot c}{{b}^{3}}\right)\\ \end{array} \]
Alternative 6
Error12.1
Cost7424
\[-0.5 \cdot \frac{c}{b} + -0.375 \cdot \left(a \cdot \frac{c \cdot c}{{b}^{3}}\right) \]
Alternative 7
Error23.0
Cost320
\[-0.5 \cdot \frac{c}{b} \]

Error

Reproduce

herbie shell --seed 2022337 
(FPCore (a b c)
  :name "Cubic critical, narrow range"
  :precision binary64
  :pre (and (and (and (< 1.0536712127723509e-8 a) (< a 94906265.62425156)) (and (< 1.0536712127723509e-8 b) (< b 94906265.62425156))) (and (< 1.0536712127723509e-8 c) (< c 94906265.62425156)))
  (/ (+ (- b) (sqrt (- (* b b) (* (* 3.0 a) c)))) (* 3.0 a)))