Quadratic roots, full range

Percentage Accurate: 52.4% → 86.0%
Time: 8.2s
Alternatives: 9
Speedup: 2.5×

Specification

?
\[\begin{array}{l} \\ \frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \end{array} \]
(FPCore (a b c)
 :precision binary64
 (/ (+ (- b) (sqrt (- (* b b) (* (* 4.0 a) c)))) (* 2.0 a)))
double code(double a, double b, double c) {
	return (-b + sqrt(((b * b) - ((4.0 * a) * c)))) / (2.0 * a);
}
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
public static double code(double a, double b, double c) {
	return (-b + Math.sqrt(((b * b) - ((4.0 * a) * c)))) / (2.0 * a);
}
def code(a, b, c):
	return (-b + math.sqrt(((b * b) - ((4.0 * a) * c)))) / (2.0 * a)
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 tmp = code(a, b, c)
	tmp = (-b + sqrt(((b * b) - ((4.0 * a) * c)))) / (2.0 * a);
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]
\begin{array}{l}

\\
\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a}
\end{array}

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

The average percentage accuracy by input value. Horizontal axis shows value of an input variable; the variable is choosen in the title. Vertical axis is accuracy; higher is better. Red represent the original program, while blue represents Herbie's suggestion. These can be toggled with buttons below the plot. The line is an average while dots represent individual samples.

Accuracy vs Speed?

Herbie found 9 alternatives:

AlternativeAccuracySpeedup
The accuracy (vertical axis) and speed (horizontal axis) of each alternatives. Up and to the right is better. The red square shows the initial program, and each blue circle shows an alternative.The line shows the best available speed-accuracy tradeoffs.

Initial Program: 52.4% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \end{array} \]
(FPCore (a b c)
 :precision binary64
 (/ (+ (- b) (sqrt (- (* b b) (* (* 4.0 a) c)))) (* 2.0 a)))
double code(double a, double b, double c) {
	return (-b + sqrt(((b * b) - ((4.0 * a) * c)))) / (2.0 * a);
}
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
public static double code(double a, double b, double c) {
	return (-b + Math.sqrt(((b * b) - ((4.0 * a) * c)))) / (2.0 * a);
}
def code(a, b, c):
	return (-b + math.sqrt(((b * b) - ((4.0 * a) * c)))) / (2.0 * a)
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 tmp = code(a, b, c)
	tmp = (-b + sqrt(((b * b) - ((4.0 * a) * c)))) / (2.0 * a);
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]
\begin{array}{l}

\\
\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a}
\end{array}

Alternative 1: 86.0% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;b \leq -2.5 \cdot 10^{+153}:\\ \;\;\;\;\frac{c}{b} - \frac{b}{a}\\ \mathbf{elif}\;b \leq 1.8 \cdot 10^{-80}:\\ \;\;\;\;\mathsf{fma}\left(\frac{\sqrt{\mathsf{fma}\left(-4 \cdot a, c, b \cdot b\right)}}{a}, 0.5, \frac{b}{-2 \cdot a}\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{-c}{b}\\ \end{array} \end{array} \]
(FPCore (a b c)
 :precision binary64
 (if (<= b -2.5e+153)
   (- (/ c b) (/ b a))
   (if (<= b 1.8e-80)
     (fma (/ (sqrt (fma (* -4.0 a) c (* b b))) a) 0.5 (/ b (* -2.0 a)))
     (/ (- c) b))))
double code(double a, double b, double c) {
	double tmp;
	if (b <= -2.5e+153) {
		tmp = (c / b) - (b / a);
	} else if (b <= 1.8e-80) {
		tmp = fma((sqrt(fma((-4.0 * a), c, (b * b))) / a), 0.5, (b / (-2.0 * a)));
	} else {
		tmp = -c / b;
	}
	return tmp;
}
function code(a, b, c)
	tmp = 0.0
	if (b <= -2.5e+153)
		tmp = Float64(Float64(c / b) - Float64(b / a));
	elseif (b <= 1.8e-80)
		tmp = fma(Float64(sqrt(fma(Float64(-4.0 * a), c, Float64(b * b))) / a), 0.5, Float64(b / Float64(-2.0 * a)));
	else
		tmp = Float64(Float64(-c) / b);
	end
	return tmp
end
code[a_, b_, c_] := If[LessEqual[b, -2.5e+153], N[(N[(c / b), $MachinePrecision] - N[(b / a), $MachinePrecision]), $MachinePrecision], If[LessEqual[b, 1.8e-80], N[(N[(N[Sqrt[N[(N[(-4.0 * a), $MachinePrecision] * c + N[(b * b), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] / a), $MachinePrecision] * 0.5 + N[(b / N[(-2.0 * a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[((-c) / b), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;b \leq -2.5 \cdot 10^{+153}:\\
\;\;\;\;\frac{c}{b} - \frac{b}{a}\\

\mathbf{elif}\;b \leq 1.8 \cdot 10^{-80}:\\
\;\;\;\;\mathsf{fma}\left(\frac{\sqrt{\mathsf{fma}\left(-4 \cdot a, c, b \cdot b\right)}}{a}, 0.5, \frac{b}{-2 \cdot a}\right)\\

\mathbf{else}:\\
\;\;\;\;\frac{-c}{b}\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if b < -2.50000000000000009e153

    1. Initial program 35.2%

      \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
    2. Add Preprocessing
    3. Taylor expanded in b around -inf

      \[\leadsto \color{blue}{-1 \cdot \left(b \cdot \left(-1 \cdot \frac{c}{{b}^{2}} + \frac{1}{a}\right)\right)} \]
    4. Step-by-step derivation
      1. mul-1-negN/A

        \[\leadsto \color{blue}{\mathsf{neg}\left(b \cdot \left(-1 \cdot \frac{c}{{b}^{2}} + \frac{1}{a}\right)\right)} \]
      2. distribute-rgt-inN/A

        \[\leadsto \mathsf{neg}\left(\color{blue}{\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b + \frac{1}{a} \cdot b\right)}\right) \]
      3. distribute-neg-inN/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{1}{a} \cdot b\right)\right)} \]
      4. associate-*l/N/A

        \[\leadsto \left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\color{blue}{\frac{1 \cdot b}{a}}\right)\right) \]
      5. *-lft-identityN/A

        \[\leadsto \left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{\color{blue}{b}}{a}\right)\right) \]
      6. mul-1-negN/A

        \[\leadsto \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{c}{{b}^{2}}\right)\right)} \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
      7. distribute-lft-neg-outN/A

        \[\leadsto \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{c}{{b}^{2}} \cdot b\right)\right)}\right)\right) + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
      8. remove-double-negN/A

        \[\leadsto \color{blue}{\frac{c}{{b}^{2}} \cdot b} + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
      9. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{c}{{b}^{2}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right)} \]
      10. unpow2N/A

        \[\leadsto \mathsf{fma}\left(\frac{c}{\color{blue}{b \cdot b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
      11. associate-/r*N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{\frac{c}{b}}{b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
      12. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{\frac{c}{b}}{b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
      13. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{\frac{c}{b}}}{b}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
      14. distribute-frac-negN/A

        \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \color{blue}{\frac{\mathsf{neg}\left(b\right)}{a}}\right) \]
      15. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \color{blue}{\frac{\mathsf{neg}\left(b\right)}{a}}\right) \]
      16. lower-neg.f6496.1

        \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \frac{\color{blue}{-b}}{a}\right) \]
    5. Applied rewrites96.1%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \frac{-b}{a}\right)} \]
    6. Step-by-step derivation
      1. Applied rewrites96.1%

        \[\leadsto \frac{c}{b} - \color{blue}{\frac{b}{a}} \]

      if -2.50000000000000009e153 < b < 1.8e-80

      1. Initial program 83.7%

        \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. lift-/.f64N/A

          \[\leadsto \color{blue}{\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a}} \]
        2. clear-numN/A

          \[\leadsto \color{blue}{\frac{1}{\frac{2 \cdot a}{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}}} \]
        3. associate-/r/N/A

          \[\leadsto \color{blue}{\frac{1}{2 \cdot a} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right)} \]
        4. lower-*.f64N/A

          \[\leadsto \color{blue}{\frac{1}{2 \cdot a} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right)} \]
        5. lift-*.f64N/A

          \[\leadsto \frac{1}{\color{blue}{2 \cdot a}} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right) \]
        6. associate-/r*N/A

          \[\leadsto \color{blue}{\frac{\frac{1}{2}}{a}} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right) \]
        7. metadata-evalN/A

          \[\leadsto \frac{\color{blue}{\frac{1}{2}}}{a} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right) \]
        8. lower-/.f6483.5

          \[\leadsto \color{blue}{\frac{0.5}{a}} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right) \]
        9. lift-+.f64N/A

          \[\leadsto \frac{\frac{1}{2}}{a} \cdot \color{blue}{\left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right)} \]
        10. +-commutativeN/A

          \[\leadsto \frac{\frac{1}{2}}{a} \cdot \color{blue}{\left(\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} + \left(-b\right)\right)} \]
        11. lift-neg.f64N/A

          \[\leadsto \frac{\frac{1}{2}}{a} \cdot \left(\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} + \color{blue}{\left(\mathsf{neg}\left(b\right)\right)}\right) \]
        12. unsub-negN/A

          \[\leadsto \frac{\frac{1}{2}}{a} \cdot \color{blue}{\left(\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} - b\right)} \]
        13. lower--.f6483.5

          \[\leadsto \frac{0.5}{a} \cdot \color{blue}{\left(\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} - b\right)} \]
      4. Applied rewrites83.5%

        \[\leadsto \color{blue}{\frac{0.5}{a} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right)} \]
      5. Step-by-step derivation
        1. lift-*.f64N/A

          \[\leadsto \color{blue}{\frac{\frac{1}{2}}{a} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right)} \]
        2. lift-/.f64N/A

          \[\leadsto \color{blue}{\frac{\frac{1}{2}}{a}} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right) \]
        3. metadata-evalN/A

          \[\leadsto \frac{\color{blue}{\frac{1}{2}}}{a} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right) \]
        4. associate-/r*N/A

          \[\leadsto \color{blue}{\frac{1}{2 \cdot a}} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right) \]
        5. lift-*.f64N/A

          \[\leadsto \frac{1}{\color{blue}{2 \cdot a}} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right) \]
        6. lift--.f64N/A

          \[\leadsto \frac{1}{2 \cdot a} \cdot \color{blue}{\left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right)} \]
        7. distribute-rgt-out--N/A

          \[\leadsto \color{blue}{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} \cdot \frac{1}{2 \cdot a} - b \cdot \frac{1}{2 \cdot a}} \]
        8. div-invN/A

          \[\leadsto \color{blue}{\frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a}} - b \cdot \frac{1}{2 \cdot a} \]
        9. lift-/.f64N/A

          \[\leadsto \color{blue}{\frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a}} - b \cdot \frac{1}{2 \cdot a} \]
        10. div-invN/A

          \[\leadsto \frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a} - \color{blue}{\frac{b}{2 \cdot a}} \]
        11. lift-/.f64N/A

          \[\leadsto \frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a} - \color{blue}{\frac{b}{2 \cdot a}} \]
        12. sub-negN/A

          \[\leadsto \color{blue}{\frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a} + \left(\mathsf{neg}\left(\frac{b}{2 \cdot a}\right)\right)} \]
        13. lift-/.f64N/A

          \[\leadsto \color{blue}{\frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a}} + \left(\mathsf{neg}\left(\frac{b}{2 \cdot a}\right)\right) \]
        14. div-invN/A

          \[\leadsto \color{blue}{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} \cdot \frac{1}{2 \cdot a}} + \left(\mathsf{neg}\left(\frac{b}{2 \cdot a}\right)\right) \]
      6. Applied rewrites83.8%

        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\sqrt{\mathsf{fma}\left(-4 \cdot a, c, b \cdot b\right)}}{a}, 0.5, \frac{b}{-2 \cdot a}\right)} \]

      if 1.8e-80 < b

      1. Initial program 18.6%

        \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
      2. Add Preprocessing
      3. Taylor expanded in a around 0

        \[\leadsto \color{blue}{-1 \cdot \frac{c}{b}} \]
      4. Step-by-step derivation
        1. associate-*r/N/A

          \[\leadsto \color{blue}{\frac{-1 \cdot c}{b}} \]
        2. lower-/.f64N/A

          \[\leadsto \color{blue}{\frac{-1 \cdot c}{b}} \]
        3. mul-1-negN/A

          \[\leadsto \frac{\color{blue}{\mathsf{neg}\left(c\right)}}{b} \]
        4. lower-neg.f6487.4

          \[\leadsto \frac{\color{blue}{-c}}{b} \]
      5. Applied rewrites87.4%

        \[\leadsto \color{blue}{\frac{-c}{b}} \]
    7. Recombined 3 regimes into one program.
    8. Add Preprocessing

    Alternative 2: 86.0% accurate, 0.9× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;b \leq -2.5 \cdot 10^{+153}:\\ \;\;\;\;\frac{c}{b} - \frac{b}{a}\\ \mathbf{elif}\;b \leq 1.8 \cdot 10^{-80}:\\ \;\;\;\;\frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b}{2 \cdot a}\\ \mathbf{else}:\\ \;\;\;\;\frac{-c}{b}\\ \end{array} \end{array} \]
    (FPCore (a b c)
     :precision binary64
     (if (<= b -2.5e+153)
       (- (/ c b) (/ b a))
       (if (<= b 1.8e-80)
         (/ (- (sqrt (fma (* -4.0 c) a (* b b))) b) (* 2.0 a))
         (/ (- c) b))))
    double code(double a, double b, double c) {
    	double tmp;
    	if (b <= -2.5e+153) {
    		tmp = (c / b) - (b / a);
    	} else if (b <= 1.8e-80) {
    		tmp = (sqrt(fma((-4.0 * c), a, (b * b))) - b) / (2.0 * a);
    	} else {
    		tmp = -c / b;
    	}
    	return tmp;
    }
    
    function code(a, b, c)
    	tmp = 0.0
    	if (b <= -2.5e+153)
    		tmp = Float64(Float64(c / b) - Float64(b / a));
    	elseif (b <= 1.8e-80)
    		tmp = Float64(Float64(sqrt(fma(Float64(-4.0 * c), a, Float64(b * b))) - b) / Float64(2.0 * a));
    	else
    		tmp = Float64(Float64(-c) / b);
    	end
    	return tmp
    end
    
    code[a_, b_, c_] := If[LessEqual[b, -2.5e+153], N[(N[(c / b), $MachinePrecision] - N[(b / a), $MachinePrecision]), $MachinePrecision], If[LessEqual[b, 1.8e-80], N[(N[(N[Sqrt[N[(N[(-4.0 * c), $MachinePrecision] * a + N[(b * b), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] - b), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision], N[((-c) / b), $MachinePrecision]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    \mathbf{if}\;b \leq -2.5 \cdot 10^{+153}:\\
    \;\;\;\;\frac{c}{b} - \frac{b}{a}\\
    
    \mathbf{elif}\;b \leq 1.8 \cdot 10^{-80}:\\
    \;\;\;\;\frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b}{2 \cdot a}\\
    
    \mathbf{else}:\\
    \;\;\;\;\frac{-c}{b}\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 3 regimes
    2. if b < -2.50000000000000009e153

      1. Initial program 35.2%

        \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
      2. Add Preprocessing
      3. Taylor expanded in b around -inf

        \[\leadsto \color{blue}{-1 \cdot \left(b \cdot \left(-1 \cdot \frac{c}{{b}^{2}} + \frac{1}{a}\right)\right)} \]
      4. Step-by-step derivation
        1. mul-1-negN/A

          \[\leadsto \color{blue}{\mathsf{neg}\left(b \cdot \left(-1 \cdot \frac{c}{{b}^{2}} + \frac{1}{a}\right)\right)} \]
        2. distribute-rgt-inN/A

          \[\leadsto \mathsf{neg}\left(\color{blue}{\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b + \frac{1}{a} \cdot b\right)}\right) \]
        3. distribute-neg-inN/A

          \[\leadsto \color{blue}{\left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{1}{a} \cdot b\right)\right)} \]
        4. associate-*l/N/A

          \[\leadsto \left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\color{blue}{\frac{1 \cdot b}{a}}\right)\right) \]
        5. *-lft-identityN/A

          \[\leadsto \left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{\color{blue}{b}}{a}\right)\right) \]
        6. mul-1-negN/A

          \[\leadsto \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{c}{{b}^{2}}\right)\right)} \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
        7. distribute-lft-neg-outN/A

          \[\leadsto \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{c}{{b}^{2}} \cdot b\right)\right)}\right)\right) + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
        8. remove-double-negN/A

          \[\leadsto \color{blue}{\frac{c}{{b}^{2}} \cdot b} + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
        9. lower-fma.f64N/A

          \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{c}{{b}^{2}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right)} \]
        10. unpow2N/A

          \[\leadsto \mathsf{fma}\left(\frac{c}{\color{blue}{b \cdot b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
        11. associate-/r*N/A

          \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{\frac{c}{b}}{b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
        12. lower-/.f64N/A

          \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{\frac{c}{b}}{b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
        13. lower-/.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{\frac{c}{b}}}{b}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
        14. distribute-frac-negN/A

          \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \color{blue}{\frac{\mathsf{neg}\left(b\right)}{a}}\right) \]
        15. lower-/.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \color{blue}{\frac{\mathsf{neg}\left(b\right)}{a}}\right) \]
        16. lower-neg.f6496.1

          \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \frac{\color{blue}{-b}}{a}\right) \]
      5. Applied rewrites96.1%

        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \frac{-b}{a}\right)} \]
      6. Step-by-step derivation
        1. Applied rewrites96.1%

          \[\leadsto \frac{c}{b} - \color{blue}{\frac{b}{a}} \]

        if -2.50000000000000009e153 < b < 1.8e-80

        1. Initial program 83.7%

          \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
        2. Add Preprocessing
        3. Step-by-step derivation
          1. lift-+.f64N/A

            \[\leadsto \frac{\color{blue}{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}}{2 \cdot a} \]
          2. +-commutativeN/A

            \[\leadsto \frac{\color{blue}{\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} + \left(-b\right)}}{2 \cdot a} \]
          3. lift-neg.f64N/A

            \[\leadsto \frac{\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} + \color{blue}{\left(\mathsf{neg}\left(b\right)\right)}}{2 \cdot a} \]
          4. unsub-negN/A

            \[\leadsto \frac{\color{blue}{\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} - b}}{2 \cdot a} \]
          5. lower--.f6483.7

            \[\leadsto \frac{\color{blue}{\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} - b}}{2 \cdot a} \]
          6. lift--.f64N/A

            \[\leadsto \frac{\sqrt{\color{blue}{b \cdot b - \left(4 \cdot a\right) \cdot c}} - b}{2 \cdot a} \]
          7. sub-negN/A

            \[\leadsto \frac{\sqrt{\color{blue}{b \cdot b + \left(\mathsf{neg}\left(\left(4 \cdot a\right) \cdot c\right)\right)}} - b}{2 \cdot a} \]
          8. +-commutativeN/A

            \[\leadsto \frac{\sqrt{\color{blue}{\left(\mathsf{neg}\left(\left(4 \cdot a\right) \cdot c\right)\right) + b \cdot b}} - b}{2 \cdot a} \]
          9. lift-*.f64N/A

            \[\leadsto \frac{\sqrt{\left(\mathsf{neg}\left(\color{blue}{\left(4 \cdot a\right) \cdot c}\right)\right) + b \cdot b} - b}{2 \cdot a} \]
          10. lift-*.f64N/A

            \[\leadsto \frac{\sqrt{\left(\mathsf{neg}\left(\color{blue}{\left(4 \cdot a\right)} \cdot c\right)\right) + b \cdot b} - b}{2 \cdot a} \]
          11. associate-*l*N/A

            \[\leadsto \frac{\sqrt{\left(\mathsf{neg}\left(\color{blue}{4 \cdot \left(a \cdot c\right)}\right)\right) + b \cdot b} - b}{2 \cdot a} \]
          12. distribute-lft-neg-inN/A

            \[\leadsto \frac{\sqrt{\color{blue}{\left(\mathsf{neg}\left(4\right)\right) \cdot \left(a \cdot c\right)} + b \cdot b} - b}{2 \cdot a} \]
          13. *-commutativeN/A

            \[\leadsto \frac{\sqrt{\left(\mathsf{neg}\left(4\right)\right) \cdot \color{blue}{\left(c \cdot a\right)} + b \cdot b} - b}{2 \cdot a} \]
          14. associate-*r*N/A

            \[\leadsto \frac{\sqrt{\color{blue}{\left(\left(\mathsf{neg}\left(4\right)\right) \cdot c\right) \cdot a} + b \cdot b} - b}{2 \cdot a} \]
          15. lower-fma.f64N/A

            \[\leadsto \frac{\sqrt{\color{blue}{\mathsf{fma}\left(\left(\mathsf{neg}\left(4\right)\right) \cdot c, a, b \cdot b\right)}} - b}{2 \cdot a} \]
          16. lower-*.f64N/A

            \[\leadsto \frac{\sqrt{\mathsf{fma}\left(\color{blue}{\left(\mathsf{neg}\left(4\right)\right) \cdot c}, a, b \cdot b\right)} - b}{2 \cdot a} \]
          17. metadata-eval83.7

            \[\leadsto \frac{\sqrt{\mathsf{fma}\left(\color{blue}{-4} \cdot c, a, b \cdot b\right)} - b}{2 \cdot a} \]
        4. Applied rewrites83.7%

          \[\leadsto \frac{\color{blue}{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b}}{2 \cdot a} \]

        if 1.8e-80 < b

        1. Initial program 18.6%

          \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
        2. Add Preprocessing
        3. Taylor expanded in a around 0

          \[\leadsto \color{blue}{-1 \cdot \frac{c}{b}} \]
        4. Step-by-step derivation
          1. associate-*r/N/A

            \[\leadsto \color{blue}{\frac{-1 \cdot c}{b}} \]
          2. lower-/.f64N/A

            \[\leadsto \color{blue}{\frac{-1 \cdot c}{b}} \]
          3. mul-1-negN/A

            \[\leadsto \frac{\color{blue}{\mathsf{neg}\left(c\right)}}{b} \]
          4. lower-neg.f6487.4

            \[\leadsto \frac{\color{blue}{-c}}{b} \]
        5. Applied rewrites87.4%

          \[\leadsto \color{blue}{\frac{-c}{b}} \]
      7. Recombined 3 regimes into one program.
      8. Add Preprocessing

      Alternative 3: 85.6% accurate, 0.9× speedup?

      \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;b \leq -8.5 \cdot 10^{+61}:\\ \;\;\;\;\frac{c}{b} - \frac{b}{a}\\ \mathbf{elif}\;b \leq 1.8 \cdot 10^{-80}:\\ \;\;\;\;\frac{0.5}{a} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{-c}{b}\\ \end{array} \end{array} \]
      (FPCore (a b c)
       :precision binary64
       (if (<= b -8.5e+61)
         (- (/ c b) (/ b a))
         (if (<= b 1.8e-80)
           (* (/ 0.5 a) (- (sqrt (fma (* -4.0 c) a (* b b))) b))
           (/ (- c) b))))
      double code(double a, double b, double c) {
      	double tmp;
      	if (b <= -8.5e+61) {
      		tmp = (c / b) - (b / a);
      	} else if (b <= 1.8e-80) {
      		tmp = (0.5 / a) * (sqrt(fma((-4.0 * c), a, (b * b))) - b);
      	} else {
      		tmp = -c / b;
      	}
      	return tmp;
      }
      
      function code(a, b, c)
      	tmp = 0.0
      	if (b <= -8.5e+61)
      		tmp = Float64(Float64(c / b) - Float64(b / a));
      	elseif (b <= 1.8e-80)
      		tmp = Float64(Float64(0.5 / a) * Float64(sqrt(fma(Float64(-4.0 * c), a, Float64(b * b))) - b));
      	else
      		tmp = Float64(Float64(-c) / b);
      	end
      	return tmp
      end
      
      code[a_, b_, c_] := If[LessEqual[b, -8.5e+61], N[(N[(c / b), $MachinePrecision] - N[(b / a), $MachinePrecision]), $MachinePrecision], If[LessEqual[b, 1.8e-80], N[(N[(0.5 / a), $MachinePrecision] * N[(N[Sqrt[N[(N[(-4.0 * c), $MachinePrecision] * a + N[(b * b), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] - b), $MachinePrecision]), $MachinePrecision], N[((-c) / b), $MachinePrecision]]]
      
      \begin{array}{l}
      
      \\
      \begin{array}{l}
      \mathbf{if}\;b \leq -8.5 \cdot 10^{+61}:\\
      \;\;\;\;\frac{c}{b} - \frac{b}{a}\\
      
      \mathbf{elif}\;b \leq 1.8 \cdot 10^{-80}:\\
      \;\;\;\;\frac{0.5}{a} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right)\\
      
      \mathbf{else}:\\
      \;\;\;\;\frac{-c}{b}\\
      
      
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 3 regimes
      2. if b < -8.50000000000000035e61

        1. Initial program 59.3%

          \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
        2. Add Preprocessing
        3. Taylor expanded in b around -inf

          \[\leadsto \color{blue}{-1 \cdot \left(b \cdot \left(-1 \cdot \frac{c}{{b}^{2}} + \frac{1}{a}\right)\right)} \]
        4. Step-by-step derivation
          1. mul-1-negN/A

            \[\leadsto \color{blue}{\mathsf{neg}\left(b \cdot \left(-1 \cdot \frac{c}{{b}^{2}} + \frac{1}{a}\right)\right)} \]
          2. distribute-rgt-inN/A

            \[\leadsto \mathsf{neg}\left(\color{blue}{\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b + \frac{1}{a} \cdot b\right)}\right) \]
          3. distribute-neg-inN/A

            \[\leadsto \color{blue}{\left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{1}{a} \cdot b\right)\right)} \]
          4. associate-*l/N/A

            \[\leadsto \left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\color{blue}{\frac{1 \cdot b}{a}}\right)\right) \]
          5. *-lft-identityN/A

            \[\leadsto \left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{\color{blue}{b}}{a}\right)\right) \]
          6. mul-1-negN/A

            \[\leadsto \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{c}{{b}^{2}}\right)\right)} \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
          7. distribute-lft-neg-outN/A

            \[\leadsto \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{c}{{b}^{2}} \cdot b\right)\right)}\right)\right) + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
          8. remove-double-negN/A

            \[\leadsto \color{blue}{\frac{c}{{b}^{2}} \cdot b} + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
          9. lower-fma.f64N/A

            \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{c}{{b}^{2}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right)} \]
          10. unpow2N/A

            \[\leadsto \mathsf{fma}\left(\frac{c}{\color{blue}{b \cdot b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
          11. associate-/r*N/A

            \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{\frac{c}{b}}{b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
          12. lower-/.f64N/A

            \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{\frac{c}{b}}{b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
          13. lower-/.f64N/A

            \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{\frac{c}{b}}}{b}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
          14. distribute-frac-negN/A

            \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \color{blue}{\frac{\mathsf{neg}\left(b\right)}{a}}\right) \]
          15. lower-/.f64N/A

            \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \color{blue}{\frac{\mathsf{neg}\left(b\right)}{a}}\right) \]
          16. lower-neg.f6497.6

            \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \frac{\color{blue}{-b}}{a}\right) \]
        5. Applied rewrites97.6%

          \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \frac{-b}{a}\right)} \]
        6. Step-by-step derivation
          1. Applied rewrites97.6%

            \[\leadsto \frac{c}{b} - \color{blue}{\frac{b}{a}} \]

          if -8.50000000000000035e61 < b < 1.8e-80

          1. Initial program 79.7%

            \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
          2. Add Preprocessing
          3. Step-by-step derivation
            1. lift-/.f64N/A

              \[\leadsto \color{blue}{\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a}} \]
            2. clear-numN/A

              \[\leadsto \color{blue}{\frac{1}{\frac{2 \cdot a}{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}}} \]
            3. associate-/r/N/A

              \[\leadsto \color{blue}{\frac{1}{2 \cdot a} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right)} \]
            4. lower-*.f64N/A

              \[\leadsto \color{blue}{\frac{1}{2 \cdot a} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right)} \]
            5. lift-*.f64N/A

              \[\leadsto \frac{1}{\color{blue}{2 \cdot a}} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right) \]
            6. associate-/r*N/A

              \[\leadsto \color{blue}{\frac{\frac{1}{2}}{a}} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right) \]
            7. metadata-evalN/A

              \[\leadsto \frac{\color{blue}{\frac{1}{2}}}{a} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right) \]
            8. lower-/.f6479.5

              \[\leadsto \color{blue}{\frac{0.5}{a}} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right) \]
            9. lift-+.f64N/A

              \[\leadsto \frac{\frac{1}{2}}{a} \cdot \color{blue}{\left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right)} \]
            10. +-commutativeN/A

              \[\leadsto \frac{\frac{1}{2}}{a} \cdot \color{blue}{\left(\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} + \left(-b\right)\right)} \]
            11. lift-neg.f64N/A

              \[\leadsto \frac{\frac{1}{2}}{a} \cdot \left(\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} + \color{blue}{\left(\mathsf{neg}\left(b\right)\right)}\right) \]
            12. unsub-negN/A

              \[\leadsto \frac{\frac{1}{2}}{a} \cdot \color{blue}{\left(\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} - b\right)} \]
            13. lower--.f6479.5

              \[\leadsto \frac{0.5}{a} \cdot \color{blue}{\left(\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} - b\right)} \]
          4. Applied rewrites79.5%

            \[\leadsto \color{blue}{\frac{0.5}{a} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right)} \]

          if 1.8e-80 < b

          1. Initial program 18.6%

            \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
          2. Add Preprocessing
          3. Taylor expanded in a around 0

            \[\leadsto \color{blue}{-1 \cdot \frac{c}{b}} \]
          4. Step-by-step derivation
            1. associate-*r/N/A

              \[\leadsto \color{blue}{\frac{-1 \cdot c}{b}} \]
            2. lower-/.f64N/A

              \[\leadsto \color{blue}{\frac{-1 \cdot c}{b}} \]
            3. mul-1-negN/A

              \[\leadsto \frac{\color{blue}{\mathsf{neg}\left(c\right)}}{b} \]
            4. lower-neg.f6487.4

              \[\leadsto \frac{\color{blue}{-c}}{b} \]
          5. Applied rewrites87.4%

            \[\leadsto \color{blue}{\frac{-c}{b}} \]
        7. Recombined 3 regimes into one program.
        8. Add Preprocessing

        Alternative 4: 81.4% accurate, 1.0× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;b \leq -1.35 \cdot 10^{-84}:\\ \;\;\;\;\frac{c}{b} - \frac{b}{a}\\ \mathbf{elif}\;b \leq 1.8 \cdot 10^{-80}:\\ \;\;\;\;\frac{\sqrt{\left(c \cdot a\right) \cdot -4} - b}{2 \cdot a}\\ \mathbf{else}:\\ \;\;\;\;\frac{-c}{b}\\ \end{array} \end{array} \]
        (FPCore (a b c)
         :precision binary64
         (if (<= b -1.35e-84)
           (- (/ c b) (/ b a))
           (if (<= b 1.8e-80)
             (/ (- (sqrt (* (* c a) -4.0)) b) (* 2.0 a))
             (/ (- c) b))))
        double code(double a, double b, double c) {
        	double tmp;
        	if (b <= -1.35e-84) {
        		tmp = (c / b) - (b / a);
        	} else if (b <= 1.8e-80) {
        		tmp = (sqrt(((c * a) * -4.0)) - b) / (2.0 * a);
        	} else {
        		tmp = -c / b;
        	}
        	return tmp;
        }
        
        real(8) function code(a, b, c)
            real(8), intent (in) :: a
            real(8), intent (in) :: b
            real(8), intent (in) :: c
            real(8) :: tmp
            if (b <= (-1.35d-84)) then
                tmp = (c / b) - (b / a)
            else if (b <= 1.8d-80) then
                tmp = (sqrt(((c * a) * (-4.0d0))) - b) / (2.0d0 * a)
            else
                tmp = -c / b
            end if
            code = tmp
        end function
        
        public static double code(double a, double b, double c) {
        	double tmp;
        	if (b <= -1.35e-84) {
        		tmp = (c / b) - (b / a);
        	} else if (b <= 1.8e-80) {
        		tmp = (Math.sqrt(((c * a) * -4.0)) - b) / (2.0 * a);
        	} else {
        		tmp = -c / b;
        	}
        	return tmp;
        }
        
        def code(a, b, c):
        	tmp = 0
        	if b <= -1.35e-84:
        		tmp = (c / b) - (b / a)
        	elif b <= 1.8e-80:
        		tmp = (math.sqrt(((c * a) * -4.0)) - b) / (2.0 * a)
        	else:
        		tmp = -c / b
        	return tmp
        
        function code(a, b, c)
        	tmp = 0.0
        	if (b <= -1.35e-84)
        		tmp = Float64(Float64(c / b) - Float64(b / a));
        	elseif (b <= 1.8e-80)
        		tmp = Float64(Float64(sqrt(Float64(Float64(c * a) * -4.0)) - b) / Float64(2.0 * a));
        	else
        		tmp = Float64(Float64(-c) / b);
        	end
        	return tmp
        end
        
        function tmp_2 = code(a, b, c)
        	tmp = 0.0;
        	if (b <= -1.35e-84)
        		tmp = (c / b) - (b / a);
        	elseif (b <= 1.8e-80)
        		tmp = (sqrt(((c * a) * -4.0)) - b) / (2.0 * a);
        	else
        		tmp = -c / b;
        	end
        	tmp_2 = tmp;
        end
        
        code[a_, b_, c_] := If[LessEqual[b, -1.35e-84], N[(N[(c / b), $MachinePrecision] - N[(b / a), $MachinePrecision]), $MachinePrecision], If[LessEqual[b, 1.8e-80], N[(N[(N[Sqrt[N[(N[(c * a), $MachinePrecision] * -4.0), $MachinePrecision]], $MachinePrecision] - b), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision], N[((-c) / b), $MachinePrecision]]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        \mathbf{if}\;b \leq -1.35 \cdot 10^{-84}:\\
        \;\;\;\;\frac{c}{b} - \frac{b}{a}\\
        
        \mathbf{elif}\;b \leq 1.8 \cdot 10^{-80}:\\
        \;\;\;\;\frac{\sqrt{\left(c \cdot a\right) \cdot -4} - b}{2 \cdot a}\\
        
        \mathbf{else}:\\
        \;\;\;\;\frac{-c}{b}\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 3 regimes
        2. if b < -1.35e-84

          1. Initial program 69.2%

            \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
          2. Add Preprocessing
          3. Taylor expanded in b around -inf

            \[\leadsto \color{blue}{-1 \cdot \left(b \cdot \left(-1 \cdot \frac{c}{{b}^{2}} + \frac{1}{a}\right)\right)} \]
          4. Step-by-step derivation
            1. mul-1-negN/A

              \[\leadsto \color{blue}{\mathsf{neg}\left(b \cdot \left(-1 \cdot \frac{c}{{b}^{2}} + \frac{1}{a}\right)\right)} \]
            2. distribute-rgt-inN/A

              \[\leadsto \mathsf{neg}\left(\color{blue}{\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b + \frac{1}{a} \cdot b\right)}\right) \]
            3. distribute-neg-inN/A

              \[\leadsto \color{blue}{\left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{1}{a} \cdot b\right)\right)} \]
            4. associate-*l/N/A

              \[\leadsto \left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\color{blue}{\frac{1 \cdot b}{a}}\right)\right) \]
            5. *-lft-identityN/A

              \[\leadsto \left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{\color{blue}{b}}{a}\right)\right) \]
            6. mul-1-negN/A

              \[\leadsto \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{c}{{b}^{2}}\right)\right)} \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
            7. distribute-lft-neg-outN/A

              \[\leadsto \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{c}{{b}^{2}} \cdot b\right)\right)}\right)\right) + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
            8. remove-double-negN/A

              \[\leadsto \color{blue}{\frac{c}{{b}^{2}} \cdot b} + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
            9. lower-fma.f64N/A

              \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{c}{{b}^{2}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right)} \]
            10. unpow2N/A

              \[\leadsto \mathsf{fma}\left(\frac{c}{\color{blue}{b \cdot b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
            11. associate-/r*N/A

              \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{\frac{c}{b}}{b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
            12. lower-/.f64N/A

              \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{\frac{c}{b}}{b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
            13. lower-/.f64N/A

              \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{\frac{c}{b}}}{b}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
            14. distribute-frac-negN/A

              \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \color{blue}{\frac{\mathsf{neg}\left(b\right)}{a}}\right) \]
            15. lower-/.f64N/A

              \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \color{blue}{\frac{\mathsf{neg}\left(b\right)}{a}}\right) \]
            16. lower-neg.f6490.0

              \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \frac{\color{blue}{-b}}{a}\right) \]
          5. Applied rewrites90.0%

            \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \frac{-b}{a}\right)} \]
          6. Step-by-step derivation
            1. Applied rewrites90.0%

              \[\leadsto \frac{c}{b} - \color{blue}{\frac{b}{a}} \]

            if -1.35e-84 < b < 1.8e-80

            1. Initial program 74.3%

              \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
            2. Add Preprocessing
            3. Step-by-step derivation
              1. lift-+.f64N/A

                \[\leadsto \frac{\color{blue}{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}}{2 \cdot a} \]
              2. +-commutativeN/A

                \[\leadsto \frac{\color{blue}{\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} + \left(-b\right)}}{2 \cdot a} \]
              3. lift-neg.f64N/A

                \[\leadsto \frac{\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} + \color{blue}{\left(\mathsf{neg}\left(b\right)\right)}}{2 \cdot a} \]
              4. unsub-negN/A

                \[\leadsto \frac{\color{blue}{\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} - b}}{2 \cdot a} \]
              5. lower--.f6474.3

                \[\leadsto \frac{\color{blue}{\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} - b}}{2 \cdot a} \]
              6. lift--.f64N/A

                \[\leadsto \frac{\sqrt{\color{blue}{b \cdot b - \left(4 \cdot a\right) \cdot c}} - b}{2 \cdot a} \]
              7. sub-negN/A

                \[\leadsto \frac{\sqrt{\color{blue}{b \cdot b + \left(\mathsf{neg}\left(\left(4 \cdot a\right) \cdot c\right)\right)}} - b}{2 \cdot a} \]
              8. +-commutativeN/A

                \[\leadsto \frac{\sqrt{\color{blue}{\left(\mathsf{neg}\left(\left(4 \cdot a\right) \cdot c\right)\right) + b \cdot b}} - b}{2 \cdot a} \]
              9. lift-*.f64N/A

                \[\leadsto \frac{\sqrt{\left(\mathsf{neg}\left(\color{blue}{\left(4 \cdot a\right) \cdot c}\right)\right) + b \cdot b} - b}{2 \cdot a} \]
              10. lift-*.f64N/A

                \[\leadsto \frac{\sqrt{\left(\mathsf{neg}\left(\color{blue}{\left(4 \cdot a\right)} \cdot c\right)\right) + b \cdot b} - b}{2 \cdot a} \]
              11. associate-*l*N/A

                \[\leadsto \frac{\sqrt{\left(\mathsf{neg}\left(\color{blue}{4 \cdot \left(a \cdot c\right)}\right)\right) + b \cdot b} - b}{2 \cdot a} \]
              12. distribute-lft-neg-inN/A

                \[\leadsto \frac{\sqrt{\color{blue}{\left(\mathsf{neg}\left(4\right)\right) \cdot \left(a \cdot c\right)} + b \cdot b} - b}{2 \cdot a} \]
              13. *-commutativeN/A

                \[\leadsto \frac{\sqrt{\left(\mathsf{neg}\left(4\right)\right) \cdot \color{blue}{\left(c \cdot a\right)} + b \cdot b} - b}{2 \cdot a} \]
              14. associate-*r*N/A

                \[\leadsto \frac{\sqrt{\color{blue}{\left(\left(\mathsf{neg}\left(4\right)\right) \cdot c\right) \cdot a} + b \cdot b} - b}{2 \cdot a} \]
              15. lower-fma.f64N/A

                \[\leadsto \frac{\sqrt{\color{blue}{\mathsf{fma}\left(\left(\mathsf{neg}\left(4\right)\right) \cdot c, a, b \cdot b\right)}} - b}{2 \cdot a} \]
              16. lower-*.f64N/A

                \[\leadsto \frac{\sqrt{\mathsf{fma}\left(\color{blue}{\left(\mathsf{neg}\left(4\right)\right) \cdot c}, a, b \cdot b\right)} - b}{2 \cdot a} \]
              17. metadata-eval74.3

                \[\leadsto \frac{\sqrt{\mathsf{fma}\left(\color{blue}{-4} \cdot c, a, b \cdot b\right)} - b}{2 \cdot a} \]
            4. Applied rewrites74.3%

              \[\leadsto \frac{\color{blue}{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b}}{2 \cdot a} \]
            5. Taylor expanded in a around inf

              \[\leadsto \frac{\sqrt{\color{blue}{-4 \cdot \left(a \cdot c\right)}} - b}{2 \cdot a} \]
            6. Step-by-step derivation
              1. lower-*.f64N/A

                \[\leadsto \frac{\sqrt{\color{blue}{-4 \cdot \left(a \cdot c\right)}} - b}{2 \cdot a} \]
              2. lower-*.f6468.9

                \[\leadsto \frac{\sqrt{-4 \cdot \color{blue}{\left(a \cdot c\right)}} - b}{2 \cdot a} \]
            7. Applied rewrites68.9%

              \[\leadsto \frac{\sqrt{\color{blue}{-4 \cdot \left(a \cdot c\right)}} - b}{2 \cdot a} \]

            if 1.8e-80 < b

            1. Initial program 18.6%

              \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
            2. Add Preprocessing
            3. Taylor expanded in a around 0

              \[\leadsto \color{blue}{-1 \cdot \frac{c}{b}} \]
            4. Step-by-step derivation
              1. associate-*r/N/A

                \[\leadsto \color{blue}{\frac{-1 \cdot c}{b}} \]
              2. lower-/.f64N/A

                \[\leadsto \color{blue}{\frac{-1 \cdot c}{b}} \]
              3. mul-1-negN/A

                \[\leadsto \frac{\color{blue}{\mathsf{neg}\left(c\right)}}{b} \]
              4. lower-neg.f6487.4

                \[\leadsto \frac{\color{blue}{-c}}{b} \]
            5. Applied rewrites87.4%

              \[\leadsto \color{blue}{\frac{-c}{b}} \]
          7. Recombined 3 regimes into one program.
          8. Final simplification82.7%

            \[\leadsto \begin{array}{l} \mathbf{if}\;b \leq -1.35 \cdot 10^{-84}:\\ \;\;\;\;\frac{c}{b} - \frac{b}{a}\\ \mathbf{elif}\;b \leq 1.8 \cdot 10^{-80}:\\ \;\;\;\;\frac{\sqrt{\left(c \cdot a\right) \cdot -4} - b}{2 \cdot a}\\ \mathbf{else}:\\ \;\;\;\;\frac{-c}{b}\\ \end{array} \]
          9. Add Preprocessing

          Alternative 5: 81.4% accurate, 1.0× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;b \leq -1.35 \cdot 10^{-84}:\\ \;\;\;\;\frac{c}{b} - \frac{b}{a}\\ \mathbf{elif}\;b \leq 1.8 \cdot 10^{-80}:\\ \;\;\;\;\left(\sqrt{\left(-4 \cdot c\right) \cdot a} - b\right) \cdot \frac{0.5}{a}\\ \mathbf{else}:\\ \;\;\;\;\frac{-c}{b}\\ \end{array} \end{array} \]
          (FPCore (a b c)
           :precision binary64
           (if (<= b -1.35e-84)
             (- (/ c b) (/ b a))
             (if (<= b 1.8e-80)
               (* (- (sqrt (* (* -4.0 c) a)) b) (/ 0.5 a))
               (/ (- c) b))))
          double code(double a, double b, double c) {
          	double tmp;
          	if (b <= -1.35e-84) {
          		tmp = (c / b) - (b / a);
          	} else if (b <= 1.8e-80) {
          		tmp = (sqrt(((-4.0 * c) * a)) - b) * (0.5 / a);
          	} else {
          		tmp = -c / b;
          	}
          	return tmp;
          }
          
          real(8) function code(a, b, c)
              real(8), intent (in) :: a
              real(8), intent (in) :: b
              real(8), intent (in) :: c
              real(8) :: tmp
              if (b <= (-1.35d-84)) then
                  tmp = (c / b) - (b / a)
              else if (b <= 1.8d-80) then
                  tmp = (sqrt((((-4.0d0) * c) * a)) - b) * (0.5d0 / a)
              else
                  tmp = -c / b
              end if
              code = tmp
          end function
          
          public static double code(double a, double b, double c) {
          	double tmp;
          	if (b <= -1.35e-84) {
          		tmp = (c / b) - (b / a);
          	} else if (b <= 1.8e-80) {
          		tmp = (Math.sqrt(((-4.0 * c) * a)) - b) * (0.5 / a);
          	} else {
          		tmp = -c / b;
          	}
          	return tmp;
          }
          
          def code(a, b, c):
          	tmp = 0
          	if b <= -1.35e-84:
          		tmp = (c / b) - (b / a)
          	elif b <= 1.8e-80:
          		tmp = (math.sqrt(((-4.0 * c) * a)) - b) * (0.5 / a)
          	else:
          		tmp = -c / b
          	return tmp
          
          function code(a, b, c)
          	tmp = 0.0
          	if (b <= -1.35e-84)
          		tmp = Float64(Float64(c / b) - Float64(b / a));
          	elseif (b <= 1.8e-80)
          		tmp = Float64(Float64(sqrt(Float64(Float64(-4.0 * c) * a)) - b) * Float64(0.5 / a));
          	else
          		tmp = Float64(Float64(-c) / b);
          	end
          	return tmp
          end
          
          function tmp_2 = code(a, b, c)
          	tmp = 0.0;
          	if (b <= -1.35e-84)
          		tmp = (c / b) - (b / a);
          	elseif (b <= 1.8e-80)
          		tmp = (sqrt(((-4.0 * c) * a)) - b) * (0.5 / a);
          	else
          		tmp = -c / b;
          	end
          	tmp_2 = tmp;
          end
          
          code[a_, b_, c_] := If[LessEqual[b, -1.35e-84], N[(N[(c / b), $MachinePrecision] - N[(b / a), $MachinePrecision]), $MachinePrecision], If[LessEqual[b, 1.8e-80], N[(N[(N[Sqrt[N[(N[(-4.0 * c), $MachinePrecision] * a), $MachinePrecision]], $MachinePrecision] - b), $MachinePrecision] * N[(0.5 / a), $MachinePrecision]), $MachinePrecision], N[((-c) / b), $MachinePrecision]]]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          \mathbf{if}\;b \leq -1.35 \cdot 10^{-84}:\\
          \;\;\;\;\frac{c}{b} - \frac{b}{a}\\
          
          \mathbf{elif}\;b \leq 1.8 \cdot 10^{-80}:\\
          \;\;\;\;\left(\sqrt{\left(-4 \cdot c\right) \cdot a} - b\right) \cdot \frac{0.5}{a}\\
          
          \mathbf{else}:\\
          \;\;\;\;\frac{-c}{b}\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 3 regimes
          2. if b < -1.35e-84

            1. Initial program 69.2%

              \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
            2. Add Preprocessing
            3. Taylor expanded in b around -inf

              \[\leadsto \color{blue}{-1 \cdot \left(b \cdot \left(-1 \cdot \frac{c}{{b}^{2}} + \frac{1}{a}\right)\right)} \]
            4. Step-by-step derivation
              1. mul-1-negN/A

                \[\leadsto \color{blue}{\mathsf{neg}\left(b \cdot \left(-1 \cdot \frac{c}{{b}^{2}} + \frac{1}{a}\right)\right)} \]
              2. distribute-rgt-inN/A

                \[\leadsto \mathsf{neg}\left(\color{blue}{\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b + \frac{1}{a} \cdot b\right)}\right) \]
              3. distribute-neg-inN/A

                \[\leadsto \color{blue}{\left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{1}{a} \cdot b\right)\right)} \]
              4. associate-*l/N/A

                \[\leadsto \left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\color{blue}{\frac{1 \cdot b}{a}}\right)\right) \]
              5. *-lft-identityN/A

                \[\leadsto \left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{\color{blue}{b}}{a}\right)\right) \]
              6. mul-1-negN/A

                \[\leadsto \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{c}{{b}^{2}}\right)\right)} \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
              7. distribute-lft-neg-outN/A

                \[\leadsto \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{c}{{b}^{2}} \cdot b\right)\right)}\right)\right) + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
              8. remove-double-negN/A

                \[\leadsto \color{blue}{\frac{c}{{b}^{2}} \cdot b} + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
              9. lower-fma.f64N/A

                \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{c}{{b}^{2}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right)} \]
              10. unpow2N/A

                \[\leadsto \mathsf{fma}\left(\frac{c}{\color{blue}{b \cdot b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
              11. associate-/r*N/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{\frac{c}{b}}{b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
              12. lower-/.f64N/A

                \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{\frac{c}{b}}{b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
              13. lower-/.f64N/A

                \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{\frac{c}{b}}}{b}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
              14. distribute-frac-negN/A

                \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \color{blue}{\frac{\mathsf{neg}\left(b\right)}{a}}\right) \]
              15. lower-/.f64N/A

                \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \color{blue}{\frac{\mathsf{neg}\left(b\right)}{a}}\right) \]
              16. lower-neg.f6490.0

                \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \frac{\color{blue}{-b}}{a}\right) \]
            5. Applied rewrites90.0%

              \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \frac{-b}{a}\right)} \]
            6. Step-by-step derivation
              1. Applied rewrites90.0%

                \[\leadsto \frac{c}{b} - \color{blue}{\frac{b}{a}} \]

              if -1.35e-84 < b < 1.8e-80

              1. Initial program 74.3%

                \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
              2. Add Preprocessing
              3. Step-by-step derivation
                1. lift-+.f64N/A

                  \[\leadsto \frac{\color{blue}{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}}{2 \cdot a} \]
                2. +-commutativeN/A

                  \[\leadsto \frac{\color{blue}{\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} + \left(-b\right)}}{2 \cdot a} \]
                3. lift-neg.f64N/A

                  \[\leadsto \frac{\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} + \color{blue}{\left(\mathsf{neg}\left(b\right)\right)}}{2 \cdot a} \]
                4. unsub-negN/A

                  \[\leadsto \frac{\color{blue}{\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} - b}}{2 \cdot a} \]
                5. lower--.f6474.3

                  \[\leadsto \frac{\color{blue}{\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} - b}}{2 \cdot a} \]
                6. lift--.f64N/A

                  \[\leadsto \frac{\sqrt{\color{blue}{b \cdot b - \left(4 \cdot a\right) \cdot c}} - b}{2 \cdot a} \]
                7. sub-negN/A

                  \[\leadsto \frac{\sqrt{\color{blue}{b \cdot b + \left(\mathsf{neg}\left(\left(4 \cdot a\right) \cdot c\right)\right)}} - b}{2 \cdot a} \]
                8. +-commutativeN/A

                  \[\leadsto \frac{\sqrt{\color{blue}{\left(\mathsf{neg}\left(\left(4 \cdot a\right) \cdot c\right)\right) + b \cdot b}} - b}{2 \cdot a} \]
                9. lift-*.f64N/A

                  \[\leadsto \frac{\sqrt{\left(\mathsf{neg}\left(\color{blue}{\left(4 \cdot a\right) \cdot c}\right)\right) + b \cdot b} - b}{2 \cdot a} \]
                10. lift-*.f64N/A

                  \[\leadsto \frac{\sqrt{\left(\mathsf{neg}\left(\color{blue}{\left(4 \cdot a\right)} \cdot c\right)\right) + b \cdot b} - b}{2 \cdot a} \]
                11. associate-*l*N/A

                  \[\leadsto \frac{\sqrt{\left(\mathsf{neg}\left(\color{blue}{4 \cdot \left(a \cdot c\right)}\right)\right) + b \cdot b} - b}{2 \cdot a} \]
                12. distribute-lft-neg-inN/A

                  \[\leadsto \frac{\sqrt{\color{blue}{\left(\mathsf{neg}\left(4\right)\right) \cdot \left(a \cdot c\right)} + b \cdot b} - b}{2 \cdot a} \]
                13. *-commutativeN/A

                  \[\leadsto \frac{\sqrt{\left(\mathsf{neg}\left(4\right)\right) \cdot \color{blue}{\left(c \cdot a\right)} + b \cdot b} - b}{2 \cdot a} \]
                14. associate-*r*N/A

                  \[\leadsto \frac{\sqrt{\color{blue}{\left(\left(\mathsf{neg}\left(4\right)\right) \cdot c\right) \cdot a} + b \cdot b} - b}{2 \cdot a} \]
                15. lower-fma.f64N/A

                  \[\leadsto \frac{\sqrt{\color{blue}{\mathsf{fma}\left(\left(\mathsf{neg}\left(4\right)\right) \cdot c, a, b \cdot b\right)}} - b}{2 \cdot a} \]
                16. lower-*.f64N/A

                  \[\leadsto \frac{\sqrt{\mathsf{fma}\left(\color{blue}{\left(\mathsf{neg}\left(4\right)\right) \cdot c}, a, b \cdot b\right)} - b}{2 \cdot a} \]
                17. metadata-eval74.3

                  \[\leadsto \frac{\sqrt{\mathsf{fma}\left(\color{blue}{-4} \cdot c, a, b \cdot b\right)} - b}{2 \cdot a} \]
              4. Applied rewrites74.3%

                \[\leadsto \frac{\color{blue}{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b}}{2 \cdot a} \]
              5. Taylor expanded in a around inf

                \[\leadsto \frac{\sqrt{\color{blue}{-4 \cdot \left(a \cdot c\right)}} - b}{2 \cdot a} \]
              6. Step-by-step derivation
                1. lower-*.f64N/A

                  \[\leadsto \frac{\sqrt{\color{blue}{-4 \cdot \left(a \cdot c\right)}} - b}{2 \cdot a} \]
                2. lower-*.f6468.9

                  \[\leadsto \frac{\sqrt{-4 \cdot \color{blue}{\left(a \cdot c\right)}} - b}{2 \cdot a} \]
              7. Applied rewrites68.9%

                \[\leadsto \frac{\sqrt{\color{blue}{-4 \cdot \left(a \cdot c\right)}} - b}{2 \cdot a} \]
              8. Step-by-step derivation
                1. lift-/.f64N/A

                  \[\leadsto \color{blue}{\frac{\sqrt{-4 \cdot \left(a \cdot c\right)} - b}{2 \cdot a}} \]
                2. clear-numN/A

                  \[\leadsto \color{blue}{\frac{1}{\frac{2 \cdot a}{\sqrt{-4 \cdot \left(a \cdot c\right)} - b}}} \]
                3. associate-/r/N/A

                  \[\leadsto \color{blue}{\frac{1}{2 \cdot a} \cdot \left(\sqrt{-4 \cdot \left(a \cdot c\right)} - b\right)} \]
                4. lower-*.f64N/A

                  \[\leadsto \color{blue}{\frac{1}{2 \cdot a} \cdot \left(\sqrt{-4 \cdot \left(a \cdot c\right)} - b\right)} \]
                5. lift-*.f64N/A

                  \[\leadsto \frac{1}{\color{blue}{2 \cdot a}} \cdot \left(\sqrt{-4 \cdot \left(a \cdot c\right)} - b\right) \]
                6. associate-/r*N/A

                  \[\leadsto \color{blue}{\frac{\frac{1}{2}}{a}} \cdot \left(\sqrt{-4 \cdot \left(a \cdot c\right)} - b\right) \]
                7. metadata-evalN/A

                  \[\leadsto \frac{\color{blue}{\frac{1}{2}}}{a} \cdot \left(\sqrt{-4 \cdot \left(a \cdot c\right)} - b\right) \]
                8. lift-/.f6468.8

                  \[\leadsto \color{blue}{\frac{0.5}{a}} \cdot \left(\sqrt{-4 \cdot \left(a \cdot c\right)} - b\right) \]
              9. Applied rewrites68.8%

                \[\leadsto \color{blue}{\frac{0.5}{a} \cdot \left(\sqrt{\left(c \cdot a\right) \cdot -4} - b\right)} \]
              10. Step-by-step derivation
                1. Applied rewrites68.9%

                  \[\leadsto \color{blue}{\frac{0.5}{a} \cdot \left(\sqrt{\left(c \cdot -4\right) \cdot a} - b\right)} \]

                if 1.8e-80 < b

                1. Initial program 18.6%

                  \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
                2. Add Preprocessing
                3. Taylor expanded in a around 0

                  \[\leadsto \color{blue}{-1 \cdot \frac{c}{b}} \]
                4. Step-by-step derivation
                  1. associate-*r/N/A

                    \[\leadsto \color{blue}{\frac{-1 \cdot c}{b}} \]
                  2. lower-/.f64N/A

                    \[\leadsto \color{blue}{\frac{-1 \cdot c}{b}} \]
                  3. mul-1-negN/A

                    \[\leadsto \frac{\color{blue}{\mathsf{neg}\left(c\right)}}{b} \]
                  4. lower-neg.f6487.4

                    \[\leadsto \frac{\color{blue}{-c}}{b} \]
                5. Applied rewrites87.4%

                  \[\leadsto \color{blue}{\frac{-c}{b}} \]
              11. Recombined 3 regimes into one program.
              12. Final simplification82.7%

                \[\leadsto \begin{array}{l} \mathbf{if}\;b \leq -1.35 \cdot 10^{-84}:\\ \;\;\;\;\frac{c}{b} - \frac{b}{a}\\ \mathbf{elif}\;b \leq 1.8 \cdot 10^{-80}:\\ \;\;\;\;\left(\sqrt{\left(-4 \cdot c\right) \cdot a} - b\right) \cdot \frac{0.5}{a}\\ \mathbf{else}:\\ \;\;\;\;\frac{-c}{b}\\ \end{array} \]
              13. Add Preprocessing

              Alternative 6: 68.3% accurate, 1.6× speedup?

              \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;b \leq -2 \cdot 10^{-310}:\\ \;\;\;\;\frac{c}{b} - \frac{b}{a}\\ \mathbf{else}:\\ \;\;\;\;\frac{-c}{b}\\ \end{array} \end{array} \]
              (FPCore (a b c)
               :precision binary64
               (if (<= b -2e-310) (- (/ c b) (/ b a)) (/ (- c) b)))
              double code(double a, double b, double c) {
              	double tmp;
              	if (b <= -2e-310) {
              		tmp = (c / b) - (b / a);
              	} else {
              		tmp = -c / b;
              	}
              	return tmp;
              }
              
              real(8) function code(a, b, c)
                  real(8), intent (in) :: a
                  real(8), intent (in) :: b
                  real(8), intent (in) :: c
                  real(8) :: tmp
                  if (b <= (-2d-310)) then
                      tmp = (c / b) - (b / a)
                  else
                      tmp = -c / b
                  end if
                  code = tmp
              end function
              
              public static double code(double a, double b, double c) {
              	double tmp;
              	if (b <= -2e-310) {
              		tmp = (c / b) - (b / a);
              	} else {
              		tmp = -c / b;
              	}
              	return tmp;
              }
              
              def code(a, b, c):
              	tmp = 0
              	if b <= -2e-310:
              		tmp = (c / b) - (b / a)
              	else:
              		tmp = -c / b
              	return tmp
              
              function code(a, b, c)
              	tmp = 0.0
              	if (b <= -2e-310)
              		tmp = Float64(Float64(c / b) - Float64(b / a));
              	else
              		tmp = Float64(Float64(-c) / b);
              	end
              	return tmp
              end
              
              function tmp_2 = code(a, b, c)
              	tmp = 0.0;
              	if (b <= -2e-310)
              		tmp = (c / b) - (b / a);
              	else
              		tmp = -c / b;
              	end
              	tmp_2 = tmp;
              end
              
              code[a_, b_, c_] := If[LessEqual[b, -2e-310], N[(N[(c / b), $MachinePrecision] - N[(b / a), $MachinePrecision]), $MachinePrecision], N[((-c) / b), $MachinePrecision]]
              
              \begin{array}{l}
              
              \\
              \begin{array}{l}
              \mathbf{if}\;b \leq -2 \cdot 10^{-310}:\\
              \;\;\;\;\frac{c}{b} - \frac{b}{a}\\
              
              \mathbf{else}:\\
              \;\;\;\;\frac{-c}{b}\\
              
              
              \end{array}
              \end{array}
              
              Derivation
              1. Split input into 2 regimes
              2. if b < -1.999999999999994e-310

                1. Initial program 69.6%

                  \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
                2. Add Preprocessing
                3. Taylor expanded in b around -inf

                  \[\leadsto \color{blue}{-1 \cdot \left(b \cdot \left(-1 \cdot \frac{c}{{b}^{2}} + \frac{1}{a}\right)\right)} \]
                4. Step-by-step derivation
                  1. mul-1-negN/A

                    \[\leadsto \color{blue}{\mathsf{neg}\left(b \cdot \left(-1 \cdot \frac{c}{{b}^{2}} + \frac{1}{a}\right)\right)} \]
                  2. distribute-rgt-inN/A

                    \[\leadsto \mathsf{neg}\left(\color{blue}{\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b + \frac{1}{a} \cdot b\right)}\right) \]
                  3. distribute-neg-inN/A

                    \[\leadsto \color{blue}{\left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{1}{a} \cdot b\right)\right)} \]
                  4. associate-*l/N/A

                    \[\leadsto \left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\color{blue}{\frac{1 \cdot b}{a}}\right)\right) \]
                  5. *-lft-identityN/A

                    \[\leadsto \left(\mathsf{neg}\left(\left(-1 \cdot \frac{c}{{b}^{2}}\right) \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{\color{blue}{b}}{a}\right)\right) \]
                  6. mul-1-negN/A

                    \[\leadsto \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{c}{{b}^{2}}\right)\right)} \cdot b\right)\right) + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
                  7. distribute-lft-neg-outN/A

                    \[\leadsto \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{c}{{b}^{2}} \cdot b\right)\right)}\right)\right) + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
                  8. remove-double-negN/A

                    \[\leadsto \color{blue}{\frac{c}{{b}^{2}} \cdot b} + \left(\mathsf{neg}\left(\frac{b}{a}\right)\right) \]
                  9. lower-fma.f64N/A

                    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{c}{{b}^{2}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right)} \]
                  10. unpow2N/A

                    \[\leadsto \mathsf{fma}\left(\frac{c}{\color{blue}{b \cdot b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
                  11. associate-/r*N/A

                    \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{\frac{c}{b}}{b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
                  12. lower-/.f64N/A

                    \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{\frac{c}{b}}{b}}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
                  13. lower-/.f64N/A

                    \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{\frac{c}{b}}}{b}, b, \mathsf{neg}\left(\frac{b}{a}\right)\right) \]
                  14. distribute-frac-negN/A

                    \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \color{blue}{\frac{\mathsf{neg}\left(b\right)}{a}}\right) \]
                  15. lower-/.f64N/A

                    \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \color{blue}{\frac{\mathsf{neg}\left(b\right)}{a}}\right) \]
                  16. lower-neg.f6470.8

                    \[\leadsto \mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \frac{\color{blue}{-b}}{a}\right) \]
                5. Applied rewrites70.8%

                  \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\frac{c}{b}}{b}, b, \frac{-b}{a}\right)} \]
                6. Step-by-step derivation
                  1. Applied rewrites70.9%

                    \[\leadsto \frac{c}{b} - \color{blue}{\frac{b}{a}} \]

                  if -1.999999999999994e-310 < b

                  1. Initial program 38.5%

                    \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
                  2. Add Preprocessing
                  3. Taylor expanded in a around 0

                    \[\leadsto \color{blue}{-1 \cdot \frac{c}{b}} \]
                  4. Step-by-step derivation
                    1. associate-*r/N/A

                      \[\leadsto \color{blue}{\frac{-1 \cdot c}{b}} \]
                    2. lower-/.f64N/A

                      \[\leadsto \color{blue}{\frac{-1 \cdot c}{b}} \]
                    3. mul-1-negN/A

                      \[\leadsto \frac{\color{blue}{\mathsf{neg}\left(c\right)}}{b} \]
                    4. lower-neg.f6463.6

                      \[\leadsto \frac{\color{blue}{-c}}{b} \]
                  5. Applied rewrites63.6%

                    \[\leadsto \color{blue}{\frac{-c}{b}} \]
                7. Recombined 2 regimes into one program.
                8. Add Preprocessing

                Alternative 7: 68.0% accurate, 2.5× speedup?

                \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;b \leq 8.5 \cdot 10^{-264}:\\ \;\;\;\;\frac{-b}{a}\\ \mathbf{else}:\\ \;\;\;\;\frac{-c}{b}\\ \end{array} \end{array} \]
                (FPCore (a b c)
                 :precision binary64
                 (if (<= b 8.5e-264) (/ (- b) a) (/ (- c) b)))
                double code(double a, double b, double c) {
                	double tmp;
                	if (b <= 8.5e-264) {
                		tmp = -b / a;
                	} else {
                		tmp = -c / b;
                	}
                	return tmp;
                }
                
                real(8) function code(a, b, c)
                    real(8), intent (in) :: a
                    real(8), intent (in) :: b
                    real(8), intent (in) :: c
                    real(8) :: tmp
                    if (b <= 8.5d-264) then
                        tmp = -b / a
                    else
                        tmp = -c / b
                    end if
                    code = tmp
                end function
                
                public static double code(double a, double b, double c) {
                	double tmp;
                	if (b <= 8.5e-264) {
                		tmp = -b / a;
                	} else {
                		tmp = -c / b;
                	}
                	return tmp;
                }
                
                def code(a, b, c):
                	tmp = 0
                	if b <= 8.5e-264:
                		tmp = -b / a
                	else:
                		tmp = -c / b
                	return tmp
                
                function code(a, b, c)
                	tmp = 0.0
                	if (b <= 8.5e-264)
                		tmp = Float64(Float64(-b) / a);
                	else
                		tmp = Float64(Float64(-c) / b);
                	end
                	return tmp
                end
                
                function tmp_2 = code(a, b, c)
                	tmp = 0.0;
                	if (b <= 8.5e-264)
                		tmp = -b / a;
                	else
                		tmp = -c / b;
                	end
                	tmp_2 = tmp;
                end
                
                code[a_, b_, c_] := If[LessEqual[b, 8.5e-264], N[((-b) / a), $MachinePrecision], N[((-c) / b), $MachinePrecision]]
                
                \begin{array}{l}
                
                \\
                \begin{array}{l}
                \mathbf{if}\;b \leq 8.5 \cdot 10^{-264}:\\
                \;\;\;\;\frac{-b}{a}\\
                
                \mathbf{else}:\\
                \;\;\;\;\frac{-c}{b}\\
                
                
                \end{array}
                \end{array}
                
                Derivation
                1. Split input into 2 regimes
                2. if b < 8.5000000000000001e-264

                  1. Initial program 70.0%

                    \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
                  2. Add Preprocessing
                  3. Taylor expanded in b around -inf

                    \[\leadsto \color{blue}{-1 \cdot \frac{b}{a}} \]
                  4. Step-by-step derivation
                    1. associate-*r/N/A

                      \[\leadsto \color{blue}{\frac{-1 \cdot b}{a}} \]
                    2. mul-1-negN/A

                      \[\leadsto \frac{\color{blue}{\mathsf{neg}\left(b\right)}}{a} \]
                    3. lower-/.f64N/A

                      \[\leadsto \color{blue}{\frac{\mathsf{neg}\left(b\right)}{a}} \]
                    4. lower-neg.f6468.2

                      \[\leadsto \frac{\color{blue}{-b}}{a} \]
                  5. Applied rewrites68.2%

                    \[\leadsto \color{blue}{\frac{-b}{a}} \]

                  if 8.5000000000000001e-264 < b

                  1. Initial program 36.7%

                    \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
                  2. Add Preprocessing
                  3. Taylor expanded in a around 0

                    \[\leadsto \color{blue}{-1 \cdot \frac{c}{b}} \]
                  4. Step-by-step derivation
                    1. associate-*r/N/A

                      \[\leadsto \color{blue}{\frac{-1 \cdot c}{b}} \]
                    2. lower-/.f64N/A

                      \[\leadsto \color{blue}{\frac{-1 \cdot c}{b}} \]
                    3. mul-1-negN/A

                      \[\leadsto \frac{\color{blue}{\mathsf{neg}\left(c\right)}}{b} \]
                    4. lower-neg.f6466.2

                      \[\leadsto \frac{\color{blue}{-c}}{b} \]
                  5. Applied rewrites66.2%

                    \[\leadsto \color{blue}{\frac{-c}{b}} \]
                3. Recombined 2 regimes into one program.
                4. Add Preprocessing

                Alternative 8: 44.1% accurate, 2.5× speedup?

                \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;b \leq 1.6 \cdot 10^{-109}:\\ \;\;\;\;\frac{-b}{a}\\ \mathbf{else}:\\ \;\;\;\;0\\ \end{array} \end{array} \]
                (FPCore (a b c) :precision binary64 (if (<= b 1.6e-109) (/ (- b) a) 0.0))
                double code(double a, double b, double c) {
                	double tmp;
                	if (b <= 1.6e-109) {
                		tmp = -b / a;
                	} else {
                		tmp = 0.0;
                	}
                	return tmp;
                }
                
                real(8) function code(a, b, c)
                    real(8), intent (in) :: a
                    real(8), intent (in) :: b
                    real(8), intent (in) :: c
                    real(8) :: tmp
                    if (b <= 1.6d-109) then
                        tmp = -b / a
                    else
                        tmp = 0.0d0
                    end if
                    code = tmp
                end function
                
                public static double code(double a, double b, double c) {
                	double tmp;
                	if (b <= 1.6e-109) {
                		tmp = -b / a;
                	} else {
                		tmp = 0.0;
                	}
                	return tmp;
                }
                
                def code(a, b, c):
                	tmp = 0
                	if b <= 1.6e-109:
                		tmp = -b / a
                	else:
                		tmp = 0.0
                	return tmp
                
                function code(a, b, c)
                	tmp = 0.0
                	if (b <= 1.6e-109)
                		tmp = Float64(Float64(-b) / a);
                	else
                		tmp = 0.0;
                	end
                	return tmp
                end
                
                function tmp_2 = code(a, b, c)
                	tmp = 0.0;
                	if (b <= 1.6e-109)
                		tmp = -b / a;
                	else
                		tmp = 0.0;
                	end
                	tmp_2 = tmp;
                end
                
                code[a_, b_, c_] := If[LessEqual[b, 1.6e-109], N[((-b) / a), $MachinePrecision], 0.0]
                
                \begin{array}{l}
                
                \\
                \begin{array}{l}
                \mathbf{if}\;b \leq 1.6 \cdot 10^{-109}:\\
                \;\;\;\;\frac{-b}{a}\\
                
                \mathbf{else}:\\
                \;\;\;\;0\\
                
                
                \end{array}
                \end{array}
                
                Derivation
                1. Split input into 2 regimes
                2. if b < 1.6000000000000001e-109

                  1. Initial program 70.5%

                    \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
                  2. Add Preprocessing
                  3. Taylor expanded in b around -inf

                    \[\leadsto \color{blue}{-1 \cdot \frac{b}{a}} \]
                  4. Step-by-step derivation
                    1. associate-*r/N/A

                      \[\leadsto \color{blue}{\frac{-1 \cdot b}{a}} \]
                    2. mul-1-negN/A

                      \[\leadsto \frac{\color{blue}{\mathsf{neg}\left(b\right)}}{a} \]
                    3. lower-/.f64N/A

                      \[\leadsto \color{blue}{\frac{\mathsf{neg}\left(b\right)}{a}} \]
                    4. lower-neg.f6456.7

                      \[\leadsto \frac{\color{blue}{-b}}{a} \]
                  5. Applied rewrites56.7%

                    \[\leadsto \color{blue}{\frac{-b}{a}} \]

                  if 1.6000000000000001e-109 < b

                  1. Initial program 24.3%

                    \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
                  2. Add Preprocessing
                  3. Step-by-step derivation
                    1. lift-/.f64N/A

                      \[\leadsto \color{blue}{\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a}} \]
                    2. clear-numN/A

                      \[\leadsto \color{blue}{\frac{1}{\frac{2 \cdot a}{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}}} \]
                    3. associate-/r/N/A

                      \[\leadsto \color{blue}{\frac{1}{2 \cdot a} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right)} \]
                    4. lower-*.f64N/A

                      \[\leadsto \color{blue}{\frac{1}{2 \cdot a} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right)} \]
                    5. lift-*.f64N/A

                      \[\leadsto \frac{1}{\color{blue}{2 \cdot a}} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right) \]
                    6. associate-/r*N/A

                      \[\leadsto \color{blue}{\frac{\frac{1}{2}}{a}} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right) \]
                    7. metadata-evalN/A

                      \[\leadsto \frac{\color{blue}{\frac{1}{2}}}{a} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right) \]
                    8. lower-/.f6424.2

                      \[\leadsto \color{blue}{\frac{0.5}{a}} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right) \]
                    9. lift-+.f64N/A

                      \[\leadsto \frac{\frac{1}{2}}{a} \cdot \color{blue}{\left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right)} \]
                    10. +-commutativeN/A

                      \[\leadsto \frac{\frac{1}{2}}{a} \cdot \color{blue}{\left(\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} + \left(-b\right)\right)} \]
                    11. lift-neg.f64N/A

                      \[\leadsto \frac{\frac{1}{2}}{a} \cdot \left(\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} + \color{blue}{\left(\mathsf{neg}\left(b\right)\right)}\right) \]
                    12. unsub-negN/A

                      \[\leadsto \frac{\frac{1}{2}}{a} \cdot \color{blue}{\left(\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} - b\right)} \]
                    13. lower--.f6424.2

                      \[\leadsto \frac{0.5}{a} \cdot \color{blue}{\left(\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} - b\right)} \]
                  4. Applied rewrites24.2%

                    \[\leadsto \color{blue}{\frac{0.5}{a} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right)} \]
                  5. Step-by-step derivation
                    1. lift-*.f64N/A

                      \[\leadsto \color{blue}{\frac{\frac{1}{2}}{a} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right)} \]
                    2. lift-/.f64N/A

                      \[\leadsto \color{blue}{\frac{\frac{1}{2}}{a}} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right) \]
                    3. metadata-evalN/A

                      \[\leadsto \frac{\color{blue}{\frac{1}{2}}}{a} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right) \]
                    4. associate-/r*N/A

                      \[\leadsto \color{blue}{\frac{1}{2 \cdot a}} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right) \]
                    5. lift-*.f64N/A

                      \[\leadsto \frac{1}{\color{blue}{2 \cdot a}} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right) \]
                    6. lift--.f64N/A

                      \[\leadsto \frac{1}{2 \cdot a} \cdot \color{blue}{\left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right)} \]
                    7. distribute-rgt-out--N/A

                      \[\leadsto \color{blue}{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} \cdot \frac{1}{2 \cdot a} - b \cdot \frac{1}{2 \cdot a}} \]
                    8. div-invN/A

                      \[\leadsto \color{blue}{\frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a}} - b \cdot \frac{1}{2 \cdot a} \]
                    9. lift-/.f64N/A

                      \[\leadsto \color{blue}{\frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a}} - b \cdot \frac{1}{2 \cdot a} \]
                    10. div-invN/A

                      \[\leadsto \frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a} - \color{blue}{\frac{b}{2 \cdot a}} \]
                    11. lift-/.f64N/A

                      \[\leadsto \frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a} - \color{blue}{\frac{b}{2 \cdot a}} \]
                    12. sub-negN/A

                      \[\leadsto \color{blue}{\frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a} + \left(\mathsf{neg}\left(\frac{b}{2 \cdot a}\right)\right)} \]
                    13. lift-/.f64N/A

                      \[\leadsto \color{blue}{\frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a}} + \left(\mathsf{neg}\left(\frac{b}{2 \cdot a}\right)\right) \]
                    14. div-invN/A

                      \[\leadsto \color{blue}{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} \cdot \frac{1}{2 \cdot a}} + \left(\mathsf{neg}\left(\frac{b}{2 \cdot a}\right)\right) \]
                  6. Applied rewrites23.6%

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

                    \[\leadsto \color{blue}{\frac{-1}{2} \cdot \frac{b}{a} + \frac{1}{2} \cdot \frac{b}{a}} \]
                  8. Step-by-step derivation
                    1. distribute-rgt-outN/A

                      \[\leadsto \color{blue}{\frac{b}{a} \cdot \left(\frac{-1}{2} + \frac{1}{2}\right)} \]
                    2. metadata-evalN/A

                      \[\leadsto \frac{b}{a} \cdot \color{blue}{0} \]
                    3. mul0-rgt24.8

                      \[\leadsto \color{blue}{0} \]
                  9. Applied rewrites24.8%

                    \[\leadsto \color{blue}{0} \]
                3. Recombined 2 regimes into one program.
                4. Add Preprocessing

                Alternative 9: 11.0% accurate, 50.0× speedup?

                \[\begin{array}{l} \\ 0 \end{array} \]
                (FPCore (a b c) :precision binary64 0.0)
                double code(double a, double b, double c) {
                	return 0.0;
                }
                
                real(8) function code(a, b, c)
                    real(8), intent (in) :: a
                    real(8), intent (in) :: b
                    real(8), intent (in) :: c
                    code = 0.0d0
                end function
                
                public static double code(double a, double b, double c) {
                	return 0.0;
                }
                
                def code(a, b, c):
                	return 0.0
                
                function code(a, b, c)
                	return 0.0
                end
                
                function tmp = code(a, b, c)
                	tmp = 0.0;
                end
                
                code[a_, b_, c_] := 0.0
                
                \begin{array}{l}
                
                \\
                0
                \end{array}
                
                Derivation
                1. Initial program 54.8%

                  \[\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a} \]
                2. Add Preprocessing
                3. Step-by-step derivation
                  1. lift-/.f64N/A

                    \[\leadsto \color{blue}{\frac{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}{2 \cdot a}} \]
                  2. clear-numN/A

                    \[\leadsto \color{blue}{\frac{1}{\frac{2 \cdot a}{\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}}}} \]
                  3. associate-/r/N/A

                    \[\leadsto \color{blue}{\frac{1}{2 \cdot a} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right)} \]
                  4. lower-*.f64N/A

                    \[\leadsto \color{blue}{\frac{1}{2 \cdot a} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right)} \]
                  5. lift-*.f64N/A

                    \[\leadsto \frac{1}{\color{blue}{2 \cdot a}} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right) \]
                  6. associate-/r*N/A

                    \[\leadsto \color{blue}{\frac{\frac{1}{2}}{a}} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right) \]
                  7. metadata-evalN/A

                    \[\leadsto \frac{\color{blue}{\frac{1}{2}}}{a} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right) \]
                  8. lower-/.f6454.7

                    \[\leadsto \color{blue}{\frac{0.5}{a}} \cdot \left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right) \]
                  9. lift-+.f64N/A

                    \[\leadsto \frac{\frac{1}{2}}{a} \cdot \color{blue}{\left(\left(-b\right) + \sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c}\right)} \]
                  10. +-commutativeN/A

                    \[\leadsto \frac{\frac{1}{2}}{a} \cdot \color{blue}{\left(\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} + \left(-b\right)\right)} \]
                  11. lift-neg.f64N/A

                    \[\leadsto \frac{\frac{1}{2}}{a} \cdot \left(\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} + \color{blue}{\left(\mathsf{neg}\left(b\right)\right)}\right) \]
                  12. unsub-negN/A

                    \[\leadsto \frac{\frac{1}{2}}{a} \cdot \color{blue}{\left(\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} - b\right)} \]
                  13. lower--.f6454.7

                    \[\leadsto \frac{0.5}{a} \cdot \color{blue}{\left(\sqrt{b \cdot b - \left(4 \cdot a\right) \cdot c} - b\right)} \]
                4. Applied rewrites54.7%

                  \[\leadsto \color{blue}{\frac{0.5}{a} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right)} \]
                5. Step-by-step derivation
                  1. lift-*.f64N/A

                    \[\leadsto \color{blue}{\frac{\frac{1}{2}}{a} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right)} \]
                  2. lift-/.f64N/A

                    \[\leadsto \color{blue}{\frac{\frac{1}{2}}{a}} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right) \]
                  3. metadata-evalN/A

                    \[\leadsto \frac{\color{blue}{\frac{1}{2}}}{a} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right) \]
                  4. associate-/r*N/A

                    \[\leadsto \color{blue}{\frac{1}{2 \cdot a}} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right) \]
                  5. lift-*.f64N/A

                    \[\leadsto \frac{1}{\color{blue}{2 \cdot a}} \cdot \left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right) \]
                  6. lift--.f64N/A

                    \[\leadsto \frac{1}{2 \cdot a} \cdot \color{blue}{\left(\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} - b\right)} \]
                  7. distribute-rgt-out--N/A

                    \[\leadsto \color{blue}{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} \cdot \frac{1}{2 \cdot a} - b \cdot \frac{1}{2 \cdot a}} \]
                  8. div-invN/A

                    \[\leadsto \color{blue}{\frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a}} - b \cdot \frac{1}{2 \cdot a} \]
                  9. lift-/.f64N/A

                    \[\leadsto \color{blue}{\frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a}} - b \cdot \frac{1}{2 \cdot a} \]
                  10. div-invN/A

                    \[\leadsto \frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a} - \color{blue}{\frac{b}{2 \cdot a}} \]
                  11. lift-/.f64N/A

                    \[\leadsto \frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a} - \color{blue}{\frac{b}{2 \cdot a}} \]
                  12. sub-negN/A

                    \[\leadsto \color{blue}{\frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a} + \left(\mathsf{neg}\left(\frac{b}{2 \cdot a}\right)\right)} \]
                  13. lift-/.f64N/A

                    \[\leadsto \color{blue}{\frac{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)}}{2 \cdot a}} + \left(\mathsf{neg}\left(\frac{b}{2 \cdot a}\right)\right) \]
                  14. div-invN/A

                    \[\leadsto \color{blue}{\sqrt{\mathsf{fma}\left(-4 \cdot c, a, b \cdot b\right)} \cdot \frac{1}{2 \cdot a}} + \left(\mathsf{neg}\left(\frac{b}{2 \cdot a}\right)\right) \]
                6. Applied rewrites54.6%

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

                  \[\leadsto \color{blue}{\frac{-1}{2} \cdot \frac{b}{a} + \frac{1}{2} \cdot \frac{b}{a}} \]
                8. Step-by-step derivation
                  1. distribute-rgt-outN/A

                    \[\leadsto \color{blue}{\frac{b}{a} \cdot \left(\frac{-1}{2} + \frac{1}{2}\right)} \]
                  2. metadata-evalN/A

                    \[\leadsto \frac{b}{a} \cdot \color{blue}{0} \]
                  3. mul0-rgt10.3

                    \[\leadsto \color{blue}{0} \]
                9. Applied rewrites10.3%

                  \[\leadsto \color{blue}{0} \]
                10. Add Preprocessing

                Reproduce

                ?
                herbie shell --seed 2024296 
                (FPCore (a b c)
                  :name "Quadratic roots, full range"
                  :precision binary64
                  (/ (+ (- b) (sqrt (- (* b b) (* (* 4.0 a) c)))) (* 2.0 a)))