Average Error: 44.1 → 2.8
Time: 15.5s
Precision: binary64
Cost: 61696
\[\left(\left(1.1102230246251565 \cdot 10^{-16} < a \land a < 9007199254740992\right) \land \left(1.1102230246251565 \cdot 10^{-16} < b \land b < 9007199254740992\right)\right) \land \left(1.1102230246251565 \cdot 10^{-16} < c \land c < 9007199254740992\right)\]
\[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
\[0.5 \cdot \left(\left(\frac{-4 \cdot \left(a \cdot \left({c}^{3} \cdot a\right)\right)}{{b}^{5}} + \left(c \cdot c\right) \cdot \left(\frac{a}{{b}^{3}} + 2 \cdot \frac{\frac{a}{\frac{{b}^{4}}{a}}}{\frac{\frac{a}{b}}{-1.5}}\right)\right) + {c}^{4} \cdot \left(b \cdot \frac{\frac{{a}^{4}}{{b}^{8}} \cdot 2.25}{a} + -12.25 \cdot \frac{{a}^{3}}{{b}^{7}}\right)\right) - \frac{c}{b} \]
(FPCore (a b c)
 :precision binary64
 (/ (+ (- b) (sqrt (- (* b b) (* (* 4.0 a) c)))) (* 2.0 a)))
(FPCore (a b c)
 :precision binary64
 (-
  (*
   0.5
   (+
    (+
     (/ (* -4.0 (* a (* (pow c 3.0) a))) (pow b 5.0))
     (*
      (* c c)
      (+
       (/ a (pow b 3.0))
       (* 2.0 (/ (/ a (/ (pow b 4.0) a)) (/ (/ a b) -1.5))))))
    (*
     (pow c 4.0)
     (+
      (* b (/ (* (/ (pow a 4.0) (pow b 8.0)) 2.25) a))
      (* -12.25 (/ (pow a 3.0) (pow b 7.0)))))))
  (/ c b)))
double code(double a, double b, double c) {
	return (-b + sqrt(((b * b) - ((4.0 * a) * c)))) / (2.0 * a);
}
double code(double a, double b, double c) {
	return (0.5 * ((((-4.0 * (a * (pow(c, 3.0) * a))) / pow(b, 5.0)) + ((c * c) * ((a / pow(b, 3.0)) + (2.0 * ((a / (pow(b, 4.0) / a)) / ((a / b) / -1.5)))))) + (pow(c, 4.0) * ((b * (((pow(a, 4.0) / pow(b, 8.0)) * 2.25) / a)) + (-12.25 * (pow(a, 3.0) / pow(b, 7.0))))))) - (c / b);
}
real(8) function code(a, b, c)
    real(8), intent (in) :: a
    real(8), intent (in) :: b
    real(8), intent (in) :: c
    code = (-b + sqrt(((b * b) - ((4.0d0 * a) * c)))) / (2.0d0 * a)
end function
real(8) function code(a, b, c)
    real(8), intent (in) :: a
    real(8), intent (in) :: b
    real(8), intent (in) :: c
    code = (0.5d0 * (((((-4.0d0) * (a * ((c ** 3.0d0) * a))) / (b ** 5.0d0)) + ((c * c) * ((a / (b ** 3.0d0)) + (2.0d0 * ((a / ((b ** 4.0d0) / a)) / ((a / b) / (-1.5d0))))))) + ((c ** 4.0d0) * ((b * ((((a ** 4.0d0) / (b ** 8.0d0)) * 2.25d0) / a)) + ((-12.25d0) * ((a ** 3.0d0) / (b ** 7.0d0))))))) - (c / b)
end function
public static double code(double a, double b, double c) {
	return (-b + Math.sqrt(((b * b) - ((4.0 * a) * c)))) / (2.0 * a);
}
public static double code(double a, double b, double c) {
	return (0.5 * ((((-4.0 * (a * (Math.pow(c, 3.0) * a))) / Math.pow(b, 5.0)) + ((c * c) * ((a / Math.pow(b, 3.0)) + (2.0 * ((a / (Math.pow(b, 4.0) / a)) / ((a / b) / -1.5)))))) + (Math.pow(c, 4.0) * ((b * (((Math.pow(a, 4.0) / Math.pow(b, 8.0)) * 2.25) / a)) + (-12.25 * (Math.pow(a, 3.0) / Math.pow(b, 7.0))))))) - (c / b);
}
def code(a, b, c):
	return (-b + math.sqrt(((b * b) - ((4.0 * a) * c)))) / (2.0 * a)
def code(a, b, c):
	return (0.5 * ((((-4.0 * (a * (math.pow(c, 3.0) * a))) / math.pow(b, 5.0)) + ((c * c) * ((a / math.pow(b, 3.0)) + (2.0 * ((a / (math.pow(b, 4.0) / a)) / ((a / b) / -1.5)))))) + (math.pow(c, 4.0) * ((b * (((math.pow(a, 4.0) / math.pow(b, 8.0)) * 2.25) / a)) + (-12.25 * (math.pow(a, 3.0) / math.pow(b, 7.0))))))) - (c / b)
function code(a, b, c)
	return Float64(Float64(Float64(-b) + sqrt(Float64(Float64(b * b) - Float64(Float64(4.0 * a) * c)))) / Float64(2.0 * a))
end
function code(a, b, c)
	return Float64(Float64(0.5 * Float64(Float64(Float64(Float64(-4.0 * Float64(a * Float64((c ^ 3.0) * a))) / (b ^ 5.0)) + Float64(Float64(c * c) * Float64(Float64(a / (b ^ 3.0)) + Float64(2.0 * Float64(Float64(a / Float64((b ^ 4.0) / a)) / Float64(Float64(a / b) / -1.5)))))) + Float64((c ^ 4.0) * Float64(Float64(b * Float64(Float64(Float64((a ^ 4.0) / (b ^ 8.0)) * 2.25) / a)) + Float64(-12.25 * Float64((a ^ 3.0) / (b ^ 7.0))))))) - Float64(c / b))
end
function tmp = code(a, b, c)
	tmp = (-b + sqrt(((b * b) - ((4.0 * a) * c)))) / (2.0 * a);
end
function tmp = code(a, b, c)
	tmp = (0.5 * ((((-4.0 * (a * ((c ^ 3.0) * a))) / (b ^ 5.0)) + ((c * c) * ((a / (b ^ 3.0)) + (2.0 * ((a / ((b ^ 4.0) / a)) / ((a / b) / -1.5)))))) + ((c ^ 4.0) * ((b * ((((a ^ 4.0) / (b ^ 8.0)) * 2.25) / a)) + (-12.25 * ((a ^ 3.0) / (b ^ 7.0))))))) - (c / b);
end
code[a_, b_, c_] := N[(N[((-b) + N[Sqrt[N[(N[(b * b), $MachinePrecision] - N[(N[(4.0 * a), $MachinePrecision] * c), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]
code[a_, b_, c_] := N[(N[(0.5 * N[(N[(N[(N[(-4.0 * N[(a * N[(N[Power[c, 3.0], $MachinePrecision] * a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[Power[b, 5.0], $MachinePrecision]), $MachinePrecision] + N[(N[(c * c), $MachinePrecision] * N[(N[(a / N[Power[b, 3.0], $MachinePrecision]), $MachinePrecision] + N[(2.0 * N[(N[(a / N[(N[Power[b, 4.0], $MachinePrecision] / a), $MachinePrecision]), $MachinePrecision] / N[(N[(a / b), $MachinePrecision] / -1.5), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[Power[c, 4.0], $MachinePrecision] * N[(N[(b * N[(N[(N[(N[Power[a, 4.0], $MachinePrecision] / N[Power[b, 8.0], $MachinePrecision]), $MachinePrecision] * 2.25), $MachinePrecision] / a), $MachinePrecision]), $MachinePrecision] + N[(-12.25 * N[(N[Power[a, 3.0], $MachinePrecision] / N[Power[b, 7.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(c / b), $MachinePrecision]), $MachinePrecision]
\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a}
0.5 \cdot \left(\left(\frac{-4 \cdot \left(a \cdot \left({c}^{3} \cdot a\right)\right)}{{b}^{5}} + \left(c \cdot c\right) \cdot \left(\frac{a}{{b}^{3}} + 2 \cdot \frac{\frac{a}{\frac{{b}^{4}}{a}}}{\frac{\frac{a}{b}}{-1.5}}\right)\right) + {c}^{4} \cdot \left(b \cdot \frac{\frac{{a}^{4}}{{b}^{8}} \cdot 2.25}{a} + -12.25 \cdot \frac{{a}^{3}}{{b}^{7}}\right)\right) - \frac{c}{b}

Error

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 44.1

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

    \[\leadsto \color{blue}{\left(\sqrt{\mathsf{fma}\left(a, c \cdot -4, b \cdot b\right)} - b\right) \cdot \frac{0.5}{a}} \]
    Proof
    (*.f64 (-.f64 (sqrt.f64 (fma.f64 a (*.f64 c -4) (*.f64 b b))) b) (/.f64 1/2 a)): 0 points increase in error, 0 points decrease in error
    (*.f64 (-.f64 (sqrt.f64 (fma.f64 a (*.f64 c (Rewrite<= metadata-eval (neg.f64 4))) (*.f64 b b))) b) (/.f64 1/2 a)): 0 points increase in error, 0 points decrease in error
    (*.f64 (-.f64 (sqrt.f64 (fma.f64 a (Rewrite<= distribute-rgt-neg-in_binary64 (neg.f64 (*.f64 c 4))) (*.f64 b b))) b) (/.f64 1/2 a)): 0 points increase in error, 0 points decrease in error
    (*.f64 (-.f64 (sqrt.f64 (fma.f64 a (neg.f64 (Rewrite=> *-commutative_binary64 (*.f64 4 c))) (*.f64 b b))) b) (/.f64 1/2 a)): 0 points increase in error, 0 points decrease in error
    (*.f64 (-.f64 (sqrt.f64 (fma.f64 a (Rewrite=> distribute-lft-neg-in_binary64 (*.f64 (neg.f64 4) c)) (*.f64 b b))) b) (/.f64 1/2 a)): 0 points increase in error, 0 points decrease in error
    (*.f64 (-.f64 (sqrt.f64 (Rewrite<= fma-def_binary64 (+.f64 (*.f64 a (*.f64 (neg.f64 4) c)) (*.f64 b b)))) b) (/.f64 1/2 a)): 1 points increase in error, 1 points decrease in error
    (*.f64 (-.f64 (sqrt.f64 (+.f64 (Rewrite<= associate-*l*_binary64 (*.f64 (*.f64 a (neg.f64 4)) c)) (*.f64 b b))) b) (/.f64 1/2 a)): 0 points increase in error, 0 points decrease in error
    (*.f64 (-.f64 (sqrt.f64 (+.f64 (*.f64 (Rewrite<= distribute-rgt-neg-in_binary64 (neg.f64 (*.f64 a 4))) c) (*.f64 b b))) b) (/.f64 1/2 a)): 0 points increase in error, 0 points decrease in error
    (*.f64 (-.f64 (sqrt.f64 (+.f64 (*.f64 (neg.f64 (Rewrite<= *-commutative_binary64 (*.f64 4 a))) c) (*.f64 b b))) b) (/.f64 1/2 a)): 0 points increase in error, 0 points decrease in error
    (*.f64 (-.f64 (sqrt.f64 (Rewrite<= +-commutative_binary64 (+.f64 (*.f64 b b) (*.f64 (neg.f64 (*.f64 4 a)) c)))) b) (/.f64 1/2 a)): 0 points increase in error, 0 points decrease in error
    (*.f64 (-.f64 (sqrt.f64 (Rewrite<= cancel-sign-sub-inv_binary64 (-.f64 (*.f64 b b) (*.f64 (*.f64 4 a) c)))) b) (/.f64 1/2 a)): 0 points increase in error, 0 points decrease in error
    (*.f64 (Rewrite<= unsub-neg_binary64 (+.f64 (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 4 a) c))) (neg.f64 b))) (/.f64 1/2 a)): 0 points increase in error, 0 points decrease in error
    (*.f64 (Rewrite<= +-commutative_binary64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 4 a) c))))) (/.f64 1/2 a)): 0 points increase in error, 0 points decrease in error
    (*.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 4 a) c)))) (/.f64 (Rewrite<= metadata-eval (/.f64 1 2)) a)): 0 points increase in error, 0 points decrease in error
    (*.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 4 a) c)))) (/.f64 (/.f64 (Rewrite<= metadata-eval (neg.f64 -1)) 2) a)): 0 points increase in error, 0 points decrease in error
    (*.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 4 a) c)))) (Rewrite<= associate-/r*_binary64 (/.f64 (neg.f64 -1) (*.f64 2 a)))): 0 points increase in error, 0 points decrease in error
    (Rewrite=> associate-*r/_binary64 (/.f64 (*.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 4 a) c)))) (neg.f64 -1)) (*.f64 2 a))): 19 points increase in error, 17 points decrease in error
    (Rewrite=> associate-/l*_binary64 (/.f64 (+.f64 (neg.f64 b) (sqrt.f64 (-.f64 (*.f64 b b) (*.f64 (*.f64 4 a) c)))) (/.f64 (*.f64 2 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 4 a) c)))) (/.f64 (*.f64 2 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 4 a) c)))) (Rewrite=> /-rgt-identity_binary64 (*.f64 2 a))): 0 points increase in error, 0 points decrease in error
  3. Applied egg-rr44.0

    \[\leadsto \left(\color{blue}{{\left({\left(\mathsf{fma}\left(b, b, \left(a \cdot c\right) \cdot -4\right)\right)}^{0.25}\right)}^{2}} - b\right) \cdot \frac{0.5}{a} \]
  4. Taylor expanded in c around 0 2.8

    \[\leadsto \color{blue}{-1 \cdot \frac{c}{b} + \left(0.5 \cdot \left({c}^{4} \cdot \left(\frac{{\left(0.5 \cdot \frac{{a}^{2}}{{b}^{4}} + -2 \cdot \frac{{a}^{2}}{{b}^{4}}\right)}^{2} \cdot b}{a} + \left(-2 \cdot \frac{-0.16666666666666666 \cdot \frac{{a}^{3}}{{b}^{6}} + \left(2 \cdot \frac{{a}^{3}}{{b}^{6}} + -5.333333333333333 \cdot \frac{{a}^{3}}{{b}^{6}}\right)}{b} + 2 \cdot \frac{b \cdot \left(2 \cdot \frac{{a}^{4}}{{b}^{8}} + \left(-1 \cdot \frac{{a}^{4}}{{b}^{8}} + \left(5.333333333333333 \cdot \frac{{a}^{4}}{{b}^{8}} + \left(-16 \cdot \frac{{a}^{4}}{{b}^{8}} + 0.041666666666666664 \cdot \frac{{a}^{4}}{{b}^{8}}\right)\right)\right)\right)}{a}\right)\right)\right) + \left(0.5 \cdot \left({c}^{3} \cdot \left(-2 \cdot \frac{0.5 \cdot \frac{{a}^{2}}{{b}^{4}} + -2 \cdot \frac{{a}^{2}}{{b}^{4}}}{b} + 2 \cdot \frac{\left(-0.16666666666666666 \cdot \frac{{a}^{3}}{{b}^{6}} + \left(2 \cdot \frac{{a}^{3}}{{b}^{6}} + -5.333333333333333 \cdot \frac{{a}^{3}}{{b}^{6}}\right)\right) \cdot b}{a}\right)\right) + 0.5 \cdot \left({c}^{2} \cdot \left(\frac{a}{{b}^{3}} + 2 \cdot \frac{\left(0.5 \cdot \frac{{a}^{2}}{{b}^{4}} + -2 \cdot \frac{{a}^{2}}{{b}^{4}}\right) \cdot b}{a}\right)\right)\right)\right)} \]
  5. Simplified2.8

    \[\leadsto \color{blue}{0.5 \cdot \left(\left({c}^{3} \cdot \mathsf{fma}\left(-2, \frac{\frac{a}{\frac{{b}^{4}}{a}}}{\frac{b}{-1.5}}, 2 \cdot \left(\frac{\frac{{a}^{3}}{{b}^{6}} \cdot -3.5}{a} \cdot b\right)\right) + \left(c \cdot c\right) \cdot \left(\frac{a}{{b}^{3}} + 2 \cdot \frac{\frac{a}{\frac{{b}^{4}}{a}}}{\frac{\frac{a}{b}}{-1.5}}\right)\right) + {c}^{4} \cdot \left(\frac{\frac{{a}^{4}}{{b}^{8}} \cdot 2.25}{a} \cdot b + \mathsf{fma}\left(-2, \frac{\frac{{a}^{3}}{{b}^{6}} \cdot -3.5}{b}, \frac{\left(2 \cdot b\right) \cdot \left(\frac{{a}^{4}}{{b}^{8}} \cdot 1 + \frac{{a}^{4}}{{b}^{8}} \cdot -10.625\right)}{a}\right)\right)\right) - \frac{c}{b}} \]
    Proof
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (fma.f64 -2 (/.f64 (/.f64 a (/.f64 (pow.f64 b 4) a)) (/.f64 b -3/2)) (*.f64 2 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) a) b)))) (*.f64 (*.f64 c c) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 a (/.f64 (pow.f64 b 4) a)) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (fma.f64 -2 (/.f64 (Rewrite<= associate-/l*_binary64 (/.f64 (*.f64 a a) (pow.f64 b 4))) (/.f64 b -3/2)) (*.f64 2 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) a) b)))) (*.f64 (*.f64 c c) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 a (/.f64 (pow.f64 b 4) a)) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (fma.f64 -2 (/.f64 (/.f64 (Rewrite<= unpow2_binary64 (pow.f64 a 2)) (pow.f64 b 4)) (/.f64 b -3/2)) (*.f64 2 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) a) b)))) (*.f64 (*.f64 c c) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 a (/.f64 (pow.f64 b 4) a)) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (fma.f64 -2 (/.f64 (/.f64 (pow.f64 a 2) (pow.f64 b 4)) (/.f64 b (Rewrite<= metadata-eval (+.f64 1/2 -2)))) (*.f64 2 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) a) b)))) (*.f64 (*.f64 c c) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 a (/.f64 (pow.f64 b 4) a)) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (fma.f64 -2 (Rewrite<= associate-/l*_binary64 (/.f64 (*.f64 (/.f64 (pow.f64 a 2) (pow.f64 b 4)) (+.f64 1/2 -2)) b)) (*.f64 2 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) a) b)))) (*.f64 (*.f64 c c) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 a (/.f64 (pow.f64 b 4) a)) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (fma.f64 -2 (/.f64 (Rewrite<= distribute-rgt-out_binary64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))))) b) (*.f64 2 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) a) b)))) (*.f64 (*.f64 c c) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 a (/.f64 (pow.f64 b 4) a)) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (fma.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) (*.f64 2 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) (Rewrite<= metadata-eval (+.f64 -1/6 -10/3))) a) b)))) (*.f64 (*.f64 c c) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 a (/.f64 (pow.f64 b 4) a)) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (fma.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) (*.f64 2 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) (+.f64 -1/6 (Rewrite<= metadata-eval (+.f64 2 -16/3)))) a) b)))) (*.f64 (*.f64 c c) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 a (/.f64 (pow.f64 b 4) a)) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (fma.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) (*.f64 2 (*.f64 (/.f64 (Rewrite<= distribute-lft-out_binary64 (+.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -1/6) (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) (+.f64 2 -16/3)))) a) b)))) (*.f64 (*.f64 c c) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 a (/.f64 (pow.f64 b 4) a)) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (fma.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) (*.f64 2 (*.f64 (/.f64 (+.f64 (Rewrite<= *-commutative_binary64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6)))) (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) (+.f64 2 -16/3))) a) b)))) (*.f64 (*.f64 c c) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 a (/.f64 (pow.f64 b 4) a)) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (fma.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) (*.f64 2 (*.f64 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (Rewrite<= distribute-rgt-out_binary64 (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6)))))) a) b)))) (*.f64 (*.f64 c c) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 a (/.f64 (pow.f64 b 4) a)) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (fma.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) (*.f64 2 (Rewrite<= associate-/r/_binary64 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) (/.f64 a b)))))) (*.f64 (*.f64 c c) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 a (/.f64 (pow.f64 b 4) a)) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (fma.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) (*.f64 2 (Rewrite<= associate-/l*_binary64 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a))))) (*.f64 (*.f64 c c) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 a (/.f64 (pow.f64 b 4) a)) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (Rewrite<= fma-def_binary64 (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a))))) (*.f64 (*.f64 c c) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 a (/.f64 (pow.f64 b 4) a)) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (Rewrite<= unpow2_binary64 (pow.f64 c 2)) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 a (/.f64 (pow.f64 b 4) a)) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (Rewrite<= associate-/l*_binary64 (/.f64 (*.f64 a a) (pow.f64 b 4))) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 2 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 (Rewrite<= unpow2_binary64 (pow.f64 a 2)) (pow.f64 b 4)) (/.f64 (/.f64 a b) -3/2)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (/.f64 (pow.f64 a 2) (pow.f64 b 4)) (/.f64 (/.f64 a b) (Rewrite<= metadata-eval (+.f64 1/2 -2)))))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (Rewrite<= associate-/l*_binary64 (/.f64 (*.f64 (/.f64 (pow.f64 a 2) (pow.f64 b 4)) (+.f64 1/2 -2)) (/.f64 a b))))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 1 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (Rewrite<= distribute-rgt-out_binary64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))))) (/.f64 a b)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (Rewrite<= associate-/l*_binary64 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a)))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (pow.f64 a (Rewrite<= metadata-eval (*.f64 2 2))) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (Rewrite<= pow-sqr_binary64 (*.f64 (pow.f64 a 2) (pow.f64 a 2))) (pow.f64 b 8)) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (*.f64 (pow.f64 a 2) (pow.f64 a 2)) (pow.f64 b (Rewrite<= metadata-eval (*.f64 2 4)))) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (/.f64 (*.f64 (pow.f64 a 2) (pow.f64 a 2)) (Rewrite<= pow-sqr_binary64 (*.f64 (pow.f64 b 4) (pow.f64 b 4)))) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (Rewrite=> times-frac_binary64 (*.f64 (/.f64 (pow.f64 a 2) (pow.f64 b 4)) (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 9/4) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (*.f64 (/.f64 (pow.f64 a 2) (pow.f64 b 4)) (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (Rewrite<= metadata-eval (*.f64 -3/2 -3/2))) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (*.f64 (/.f64 (pow.f64 a 2) (pow.f64 b 4)) (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 (Rewrite<= metadata-eval (+.f64 1/2 -2)) -3/2)) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (*.f64 (/.f64 (pow.f64 a 2) (pow.f64 b 4)) (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 (+.f64 1/2 -2) (Rewrite<= metadata-eval (+.f64 1/2 -2)))) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (Rewrite<= swap-sqr_binary64 (*.f64 (*.f64 (/.f64 (pow.f64 a 2) (pow.f64 b 4)) (+.f64 1/2 -2)) (*.f64 (/.f64 (pow.f64 a 2) (pow.f64 b 4)) (+.f64 1/2 -2)))) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (Rewrite<= distribute-rgt-out_binary64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))))) (*.f64 (/.f64 (pow.f64 a 2) (pow.f64 b 4)) (+.f64 1/2 -2))) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) (Rewrite<= distribute-rgt-out_binary64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))))) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (*.f64 (/.f64 (Rewrite<= unpow2_binary64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2)) a) b) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (Rewrite<= associate-/r/_binary64 (/.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) (/.f64 a b))) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (Rewrite<= associate-/l*_binary64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a)) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -7/2) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) (Rewrite<= metadata-eval (+.f64 -1/6 -10/3))) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (fma.f64 -2 (/.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) (+.f64 -1/6 (Rewrite<= metadata-eval (+.f64 2 -16/3)))) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (fma.f64 -2 (/.f64 (Rewrite<= distribute-lft-out_binary64 (+.f64 (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) -1/6) (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) (+.f64 2 -16/3)))) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (fma.f64 -2 (/.f64 (+.f64 (Rewrite<= *-commutative_binary64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6)))) (*.f64 (/.f64 (pow.f64 a 3) (pow.f64 b 6)) (+.f64 2 -16/3))) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (fma.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (Rewrite<= distribute-rgt-out_binary64 (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6)))))) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 1) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (fma.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) (Rewrite<= metadata-eval (+.f64 2 -1))) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (fma.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (Rewrite<= distribute-rgt-out_binary64 (+.f64 (*.f64 2 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 -1 (/.f64 (pow.f64 a 4) (pow.f64 b 8))))) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) -85/8))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (fma.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (+.f64 (*.f64 2 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 -1 (/.f64 (pow.f64 a 4) (pow.f64 b 8)))) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) (Rewrite<= metadata-eval (+.f64 16/3 -383/24))))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (fma.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (+.f64 (*.f64 2 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 -1 (/.f64 (pow.f64 a 4) (pow.f64 b 8)))) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) (+.f64 16/3 (Rewrite<= metadata-eval (+.f64 -16 1/24)))))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (fma.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (+.f64 (*.f64 2 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 -1 (/.f64 (pow.f64 a 4) (pow.f64 b 8)))) (Rewrite<= distribute-lft-out_binary64 (+.f64 (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) 16/3) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) (+.f64 -16 1/24)))))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (fma.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (+.f64 (*.f64 2 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 -1 (/.f64 (pow.f64 a 4) (pow.f64 b 8)))) (+.f64 (Rewrite<= *-commutative_binary64 (*.f64 16/3 (/.f64 (pow.f64 a 4) (pow.f64 b 8)))) (*.f64 (/.f64 (pow.f64 a 4) (pow.f64 b 8)) (+.f64 -16 1/24))))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (fma.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) (/.f64 (*.f64 (*.f64 2 b) (+.f64 (+.f64 (*.f64 2 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 -1 (/.f64 (pow.f64 a 4) (pow.f64 b 8)))) (+.f64 (*.f64 16/3 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (Rewrite<= distribute-rgt-out_binary64 (+.f64 (*.f64 -16 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 1/24 (/.f64 (pow.f64 a 4) (pow.f64 b 8)))))))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (fma.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) (/.f64 (*.f64 (*.f64 2 b) (Rewrite<= associate-+r+_binary64 (+.f64 (*.f64 2 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -1 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 16/3 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -16 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 1/24 (/.f64 (pow.f64 a 4) (pow.f64 b 8))))))))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (fma.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) (/.f64 (Rewrite<= associate-*r*_binary64 (*.f64 2 (*.f64 b (+.f64 (*.f64 2 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -1 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 16/3 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -16 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 1/24 (/.f64 (pow.f64 a 4) (pow.f64 b 8)))))))))) a)))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (fma.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) (Rewrite<= associate-*r/_binary64 (*.f64 2 (/.f64 (*.f64 b (+.f64 (*.f64 2 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -1 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 16/3 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -16 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 1/24 (/.f64 (pow.f64 a 4) (pow.f64 b 8)))))))) a)))))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (*.f64 1/2 (+.f64 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))) (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (Rewrite<= fma-def_binary64 (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b)) (*.f64 2 (/.f64 (*.f64 b (+.f64 (*.f64 2 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -1 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 16/3 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -16 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 1/24 (/.f64 (pow.f64 a 4) (pow.f64 b 8)))))))) a)))))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (Rewrite<= distribute-lft-out_binary64 (+.f64 (*.f64 1/2 (+.f64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a)))) (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a)))))) (*.f64 1/2 (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b)) (*.f64 2 (/.f64 (*.f64 b (+.f64 (*.f64 2 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -1 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 16/3 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -16 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 1/24 (/.f64 (pow.f64 a 4) (pow.f64 b 8)))))))) a)))))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (+.f64 (Rewrite<= distribute-lft-out_binary64 (+.f64 (*.f64 1/2 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a))))) (*.f64 1/2 (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))))) (*.f64 1/2 (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b)) (*.f64 2 (/.f64 (*.f64 b (+.f64 (*.f64 2 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -1 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 16/3 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -16 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 1/24 (/.f64 (pow.f64 a 4) (pow.f64 b 8)))))))) a))))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (-.f64 (Rewrite<= +-commutative_binary64 (+.f64 (*.f64 1/2 (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b)) (*.f64 2 (/.f64 (*.f64 b (+.f64 (*.f64 2 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -1 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 16/3 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -16 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 1/24 (/.f64 (pow.f64 a 4) (pow.f64 b 8)))))))) a)))))) (+.f64 (*.f64 1/2 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a))))) (*.f64 1/2 (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a)))))))) (/.f64 c b)): 0 points increase in error, 0 points decrease in error
    (Rewrite<= unsub-neg_binary64 (+.f64 (+.f64 (*.f64 1/2 (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b)) (*.f64 2 (/.f64 (*.f64 b (+.f64 (*.f64 2 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -1 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 16/3 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -16 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 1/24 (/.f64 (pow.f64 a 4) (pow.f64 b 8)))))))) a)))))) (+.f64 (*.f64 1/2 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a))))) (*.f64 1/2 (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))))) (neg.f64 (/.f64 c b)))): 0 points increase in error, 0 points decrease in error
    (+.f64 (+.f64 (*.f64 1/2 (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b)) (*.f64 2 (/.f64 (*.f64 b (+.f64 (*.f64 2 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -1 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 16/3 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -16 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 1/24 (/.f64 (pow.f64 a 4) (pow.f64 b 8)))))))) a)))))) (+.f64 (*.f64 1/2 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a))))) (*.f64 1/2 (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))))) (Rewrite<= mul-1-neg_binary64 (*.f64 -1 (/.f64 c b)))): 0 points increase in error, 0 points decrease in error
    (Rewrite<= +-commutative_binary64 (+.f64 (*.f64 -1 (/.f64 c b)) (+.f64 (*.f64 1/2 (*.f64 (pow.f64 c 4) (+.f64 (/.f64 (*.f64 (pow.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) 2) b) a) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b)) (*.f64 2 (/.f64 (*.f64 b (+.f64 (*.f64 2 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -1 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 16/3 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (+.f64 (*.f64 -16 (/.f64 (pow.f64 a 4) (pow.f64 b 8))) (*.f64 1/24 (/.f64 (pow.f64 a 4) (pow.f64 b 8)))))))) a)))))) (+.f64 (*.f64 1/2 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 -2 (/.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 -1/6 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (+.f64 (*.f64 2 (/.f64 (pow.f64 a 3) (pow.f64 b 6))) (*.f64 -16/3 (/.f64 (pow.f64 a 3) (pow.f64 b 6))))) b) a))))) (*.f64 1/2 (*.f64 (pow.f64 c 2) (+.f64 (/.f64 a (pow.f64 b 3)) (*.f64 2 (/.f64 (*.f64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 a 2) (pow.f64 b 4))) (*.f64 -2 (/.f64 (pow.f64 a 2) (pow.f64 b 4)))) b) a))))))))): 0 points increase in error, 0 points decrease in error
  6. Taylor expanded in a around 0 2.8

    \[\leadsto 0.5 \cdot \left(\left({c}^{3} \cdot \mathsf{fma}\left(-2, \frac{\frac{a}{\frac{{b}^{4}}{a}}}{\frac{b}{-1.5}}, 2 \cdot \left(\frac{\frac{{a}^{3}}{{b}^{6}} \cdot -3.5}{a} \cdot b\right)\right) + \left(c \cdot c\right) \cdot \left(\frac{a}{{b}^{3}} + 2 \cdot \frac{\frac{a}{\frac{{b}^{4}}{a}}}{\frac{\frac{a}{b}}{-1.5}}\right)\right) + {c}^{4} \cdot \left(\frac{\frac{{a}^{4}}{{b}^{8}} \cdot 2.25}{a} \cdot b + \color{blue}{-12.25 \cdot \frac{{a}^{3}}{{b}^{7}}}\right)\right) - \frac{c}{b} \]
  7. Taylor expanded in c around 0 2.8

    \[\leadsto 0.5 \cdot \left(\left(\color{blue}{{c}^{3} \cdot \left(3 \cdot \frac{{a}^{2}}{{b}^{5}} + -7 \cdot \frac{{a}^{2}}{{b}^{5}}\right)} + \left(c \cdot c\right) \cdot \left(\frac{a}{{b}^{3}} + 2 \cdot \frac{\frac{a}{\frac{{b}^{4}}{a}}}{\frac{\frac{a}{b}}{-1.5}}\right)\right) + {c}^{4} \cdot \left(\frac{\frac{{a}^{4}}{{b}^{8}} \cdot 2.25}{a} \cdot b + -12.25 \cdot \frac{{a}^{3}}{{b}^{7}}\right)\right) - \frac{c}{b} \]
  8. Simplified2.8

    \[\leadsto 0.5 \cdot \left(\left(\color{blue}{\frac{-4 \cdot \left(\left({c}^{3} \cdot a\right) \cdot a\right)}{{b}^{5}}} + \left(c \cdot c\right) \cdot \left(\frac{a}{{b}^{3}} + 2 \cdot \frac{\frac{a}{\frac{{b}^{4}}{a}}}{\frac{\frac{a}{b}}{-1.5}}\right)\right) + {c}^{4} \cdot \left(\frac{\frac{{a}^{4}}{{b}^{8}} \cdot 2.25}{a} \cdot b + -12.25 \cdot \frac{{a}^{3}}{{b}^{7}}\right)\right) - \frac{c}{b} \]
    Proof
    (/.f64 (*.f64 -4 (*.f64 (*.f64 (pow.f64 c 3) a) a)) (pow.f64 b 5)): 0 points increase in error, 0 points decrease in error
    (/.f64 (*.f64 -4 (Rewrite<= associate-*r*_binary64 (*.f64 (pow.f64 c 3) (*.f64 a a)))) (pow.f64 b 5)): 41 points increase in error, 37 points decrease in error
    (/.f64 (*.f64 -4 (*.f64 (pow.f64 c 3) (Rewrite<= unpow2_binary64 (pow.f64 a 2)))) (pow.f64 b 5)): 0 points increase in error, 1 points decrease in error
    (/.f64 (*.f64 -4 (Rewrite=> *-commutative_binary64 (*.f64 (pow.f64 a 2) (pow.f64 c 3)))) (pow.f64 b 5)): 0 points increase in error, 0 points decrease in error
    (/.f64 (Rewrite=> associate-*r*_binary64 (*.f64 (*.f64 -4 (pow.f64 a 2)) (pow.f64 c 3))) (pow.f64 b 5)): 0 points increase in error, 0 points decrease in error
    (Rewrite<= associate-*l/_binary64 (*.f64 (/.f64 (*.f64 -4 (pow.f64 a 2)) (pow.f64 b 5)) (pow.f64 c 3))): 51 points increase in error, 50 points decrease in error
    (*.f64 (Rewrite<= associate-*r/_binary64 (*.f64 -4 (/.f64 (pow.f64 a 2) (pow.f64 b 5)))) (pow.f64 c 3)): 0 points increase in error, 0 points decrease in error
    (*.f64 (Rewrite=> *-commutative_binary64 (*.f64 (/.f64 (pow.f64 a 2) (pow.f64 b 5)) -4)) (pow.f64 c 3)): 0 points increase in error, 0 points decrease in error
    (*.f64 (*.f64 (/.f64 (pow.f64 a 2) (pow.f64 b 5)) (Rewrite<= metadata-eval (+.f64 3 -7))) (pow.f64 c 3)): 0 points increase in error, 0 points decrease in error
    (*.f64 (Rewrite<= distribute-rgt-out_binary64 (+.f64 (*.f64 3 (/.f64 (pow.f64 a 2) (pow.f64 b 5))) (*.f64 -7 (/.f64 (pow.f64 a 2) (pow.f64 b 5))))) (pow.f64 c 3)): 30 points increase in error, 40 points decrease in error
    (Rewrite<= *-commutative_binary64 (*.f64 (pow.f64 c 3) (+.f64 (*.f64 3 (/.f64 (pow.f64 a 2) (pow.f64 b 5))) (*.f64 -7 (/.f64 (pow.f64 a 2) (pow.f64 b 5)))))): 0 points increase in error, 0 points decrease in error
  9. Final simplification2.8

    \[\leadsto 0.5 \cdot \left(\left(\frac{-4 \cdot \left(a \cdot \left({c}^{3} \cdot a\right)\right)}{{b}^{5}} + \left(c \cdot c\right) \cdot \left(\frac{a}{{b}^{3}} + 2 \cdot \frac{\frac{a}{\frac{{b}^{4}}{a}}}{\frac{\frac{a}{b}}{-1.5}}\right)\right) + {c}^{4} \cdot \left(b \cdot \frac{\frac{{a}^{4}}{{b}^{8}} \cdot 2.25}{a} + -12.25 \cdot \frac{{a}^{3}}{{b}^{7}}\right)\right) - \frac{c}{b} \]

Alternatives

Alternative 1
Error2.8
Cost46976
\[\mathsf{fma}\left(\frac{-0.25}{a}, {\left(c \cdot a\right)}^{4} \cdot \frac{20}{{b}^{7}}, -2 \cdot \frac{{c}^{3}}{\frac{{b}^{5}}{a \cdot a}} - \mathsf{fma}\left(\frac{c \cdot c}{{b}^{3}}, a, \frac{c}{b}\right)\right) \]
Alternative 2
Error3.8
Cost20736
\[\left(\frac{-2 \cdot \left({c}^{3} \cdot \left(a \cdot a\right)\right)}{{b}^{5}} - \frac{c}{b}\right) - a \cdot \frac{c \cdot c}{{b}^{3}} \]
Alternative 3
Error5.7
Cost576
\[\frac{1}{\frac{a}{b} - \frac{b}{c}} \]
Alternative 4
Error11.8
Cost256
\[\frac{-c}{b} \]
Alternative 5
Error63.0
Cost192
\[\frac{c}{b} \]

Error

Reproduce

herbie shell --seed 2022332 
(FPCore (a b c)
  :name "Quadratic roots, medium range"
  :precision binary64
  :pre (and (and (and (< 1.1102230246251565e-16 a) (< a 9007199254740992.0)) (and (< 1.1102230246251565e-16 b) (< b 9007199254740992.0))) (and (< 1.1102230246251565e-16 c) (< c 9007199254740992.0)))
  (/ (+ (- b) (sqrt (- (* b b) (* (* 4.0 a) c)))) (* 2.0 a)))