Quotient of sum of exps

Percentage Accurate: 98.9% → 98.2%
Time: 6.8s
Alternatives: 12
Speedup: 1.0×

Specification

?
\[\begin{array}{l} \\ \frac{e^{a}}{e^{a} + e^{b}} \end{array} \]
(FPCore (a b) :precision binary64 (/ (exp a) (+ (exp a) (exp b))))
double code(double a, double b) {
	return exp(a) / (exp(a) + exp(b));
}
real(8) function code(a, b)
    real(8), intent (in) :: a
    real(8), intent (in) :: b
    code = exp(a) / (exp(a) + exp(b))
end function
public static double code(double a, double b) {
	return Math.exp(a) / (Math.exp(a) + Math.exp(b));
}
def code(a, b):
	return math.exp(a) / (math.exp(a) + math.exp(b))
function code(a, b)
	return Float64(exp(a) / Float64(exp(a) + exp(b)))
end
function tmp = code(a, b)
	tmp = exp(a) / (exp(a) + exp(b));
end
code[a_, b_] := N[(N[Exp[a], $MachinePrecision] / N[(N[Exp[a], $MachinePrecision] + N[Exp[b], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{e^{a}}{e^{a} + e^{b}}
\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 12 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: 98.9% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \frac{e^{a}}{e^{a} + e^{b}} \end{array} \]
(FPCore (a b) :precision binary64 (/ (exp a) (+ (exp a) (exp b))))
double code(double a, double b) {
	return exp(a) / (exp(a) + exp(b));
}
real(8) function code(a, b)
    real(8), intent (in) :: a
    real(8), intent (in) :: b
    code = exp(a) / (exp(a) + exp(b))
end function
public static double code(double a, double b) {
	return Math.exp(a) / (Math.exp(a) + Math.exp(b));
}
def code(a, b):
	return math.exp(a) / (math.exp(a) + math.exp(b))
function code(a, b)
	return Float64(exp(a) / Float64(exp(a) + exp(b)))
end
function tmp = code(a, b)
	tmp = exp(a) / (exp(a) + exp(b));
end
code[a_, b_] := N[(N[Exp[a], $MachinePrecision] / N[(N[Exp[a], $MachinePrecision] + N[Exp[b], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{e^{a}}{e^{a} + e^{b}}
\end{array}

Alternative 1: 98.2% accurate, 2.6× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;a \leq -7200:\\ \;\;\;\;\frac{e^{a}}{1 + 1}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{e^{b} + 1}\\ \end{array} \end{array} \]
(FPCore (a b)
 :precision binary64
 (if (<= a -7200.0) (/ (exp a) (+ 1.0 1.0)) (/ 1.0 (+ (exp b) 1.0))))
double code(double a, double b) {
	double tmp;
	if (a <= -7200.0) {
		tmp = exp(a) / (1.0 + 1.0);
	} else {
		tmp = 1.0 / (exp(b) + 1.0);
	}
	return tmp;
}
real(8) function code(a, b)
    real(8), intent (in) :: a
    real(8), intent (in) :: b
    real(8) :: tmp
    if (a <= (-7200.0d0)) then
        tmp = exp(a) / (1.0d0 + 1.0d0)
    else
        tmp = 1.0d0 / (exp(b) + 1.0d0)
    end if
    code = tmp
end function
public static double code(double a, double b) {
	double tmp;
	if (a <= -7200.0) {
		tmp = Math.exp(a) / (1.0 + 1.0);
	} else {
		tmp = 1.0 / (Math.exp(b) + 1.0);
	}
	return tmp;
}
def code(a, b):
	tmp = 0
	if a <= -7200.0:
		tmp = math.exp(a) / (1.0 + 1.0)
	else:
		tmp = 1.0 / (math.exp(b) + 1.0)
	return tmp
function code(a, b)
	tmp = 0.0
	if (a <= -7200.0)
		tmp = Float64(exp(a) / Float64(1.0 + 1.0));
	else
		tmp = Float64(1.0 / Float64(exp(b) + 1.0));
	end
	return tmp
end
function tmp_2 = code(a, b)
	tmp = 0.0;
	if (a <= -7200.0)
		tmp = exp(a) / (1.0 + 1.0);
	else
		tmp = 1.0 / (exp(b) + 1.0);
	end
	tmp_2 = tmp;
end
code[a_, b_] := If[LessEqual[a, -7200.0], N[(N[Exp[a], $MachinePrecision] / N[(1.0 + 1.0), $MachinePrecision]), $MachinePrecision], N[(1.0 / N[(N[Exp[b], $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;a \leq -7200:\\
\;\;\;\;\frac{e^{a}}{1 + 1}\\

\mathbf{else}:\\
\;\;\;\;\frac{1}{e^{b} + 1}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if a < -7200

    1. Initial program 98.5%

      \[\frac{e^{a}}{e^{a} + e^{b}} \]
    2. Add Preprocessing
    3. Taylor expanded in b around 0

      \[\leadsto \frac{e^{a}}{e^{a} + \color{blue}{1}} \]
    4. Step-by-step derivation
      1. Applied rewrites100.0%

        \[\leadsto \frac{e^{a}}{e^{a} + \color{blue}{1}} \]
      2. Taylor expanded in a around 0

        \[\leadsto \frac{e^{a}}{\color{blue}{1} + 1} \]
      3. Step-by-step derivation
        1. Applied rewrites100.0%

          \[\leadsto \frac{e^{a}}{\color{blue}{1} + 1} \]

        if -7200 < a

        1. Initial program 98.9%

          \[\frac{e^{a}}{e^{a} + e^{b}} \]
        2. Add Preprocessing
        3. Taylor expanded in a around 0

          \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
        4. Step-by-step derivation
          1. lower-/.f64N/A

            \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
          2. lower-+.f64N/A

            \[\leadsto \frac{1}{\color{blue}{1 + e^{b}}} \]
          3. lower-exp.f6498.6

            \[\leadsto \frac{1}{1 + \color{blue}{e^{b}}} \]
        5. Applied rewrites98.6%

          \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
      4. Recombined 2 regimes into one program.
      5. Final simplification99.0%

        \[\leadsto \begin{array}{l} \mathbf{if}\;a \leq -7200:\\ \;\;\;\;\frac{e^{a}}{1 + 1}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{e^{b} + 1}\\ \end{array} \]
      6. Add Preprocessing

      Alternative 2: 98.9% accurate, 1.0× speedup?

      \[\begin{array}{l} \\ \frac{e^{a}}{e^{a} + e^{b}} \end{array} \]
      (FPCore (a b) :precision binary64 (/ (exp a) (+ (exp a) (exp b))))
      double code(double a, double b) {
      	return exp(a) / (exp(a) + exp(b));
      }
      
      real(8) function code(a, b)
          real(8), intent (in) :: a
          real(8), intent (in) :: b
          code = exp(a) / (exp(a) + exp(b))
      end function
      
      public static double code(double a, double b) {
      	return Math.exp(a) / (Math.exp(a) + Math.exp(b));
      }
      
      def code(a, b):
      	return math.exp(a) / (math.exp(a) + math.exp(b))
      
      function code(a, b)
      	return Float64(exp(a) / Float64(exp(a) + exp(b)))
      end
      
      function tmp = code(a, b)
      	tmp = exp(a) / (exp(a) + exp(b));
      end
      
      code[a_, b_] := N[(N[Exp[a], $MachinePrecision] / N[(N[Exp[a], $MachinePrecision] + N[Exp[b], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
      
      \begin{array}{l}
      
      \\
      \frac{e^{a}}{e^{a} + e^{b}}
      \end{array}
      
      Derivation
      1. Initial program 98.8%

        \[\frac{e^{a}}{e^{a} + e^{b}} \]
      2. Add Preprocessing
      3. Add Preprocessing

      Alternative 3: 94.2% accurate, 2.5× speedup?

      \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;a \leq -1 \cdot 10^{+103}:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, \mathsf{fma}\left(a, -0.16666666666666666, 0.5\right), -1\right), 2\right)}\\ \mathbf{elif}\;a \leq -350000000:\\ \;\;\;\;-0.0020833333333333333 \cdot {b}^{5}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{e^{b} + 1}\\ \end{array} \end{array} \]
      (FPCore (a b)
       :precision binary64
       (if (<= a -1e+103)
         (/ 1.0 (fma a (fma a (fma a -0.16666666666666666 0.5) -1.0) 2.0))
         (if (<= a -350000000.0)
           (* -0.0020833333333333333 (pow b 5.0))
           (/ 1.0 (+ (exp b) 1.0)))))
      double code(double a, double b) {
      	double tmp;
      	if (a <= -1e+103) {
      		tmp = 1.0 / fma(a, fma(a, fma(a, -0.16666666666666666, 0.5), -1.0), 2.0);
      	} else if (a <= -350000000.0) {
      		tmp = -0.0020833333333333333 * pow(b, 5.0);
      	} else {
      		tmp = 1.0 / (exp(b) + 1.0);
      	}
      	return tmp;
      }
      
      function code(a, b)
      	tmp = 0.0
      	if (a <= -1e+103)
      		tmp = Float64(1.0 / fma(a, fma(a, fma(a, -0.16666666666666666, 0.5), -1.0), 2.0));
      	elseif (a <= -350000000.0)
      		tmp = Float64(-0.0020833333333333333 * (b ^ 5.0));
      	else
      		tmp = Float64(1.0 / Float64(exp(b) + 1.0));
      	end
      	return tmp
      end
      
      code[a_, b_] := If[LessEqual[a, -1e+103], N[(1.0 / N[(a * N[(a * N[(a * -0.16666666666666666 + 0.5), $MachinePrecision] + -1.0), $MachinePrecision] + 2.0), $MachinePrecision]), $MachinePrecision], If[LessEqual[a, -350000000.0], N[(-0.0020833333333333333 * N[Power[b, 5.0], $MachinePrecision]), $MachinePrecision], N[(1.0 / N[(N[Exp[b], $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision]]]
      
      \begin{array}{l}
      
      \\
      \begin{array}{l}
      \mathbf{if}\;a \leq -1 \cdot 10^{+103}:\\
      \;\;\;\;\frac{1}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, \mathsf{fma}\left(a, -0.16666666666666666, 0.5\right), -1\right), 2\right)}\\
      
      \mathbf{elif}\;a \leq -350000000:\\
      \;\;\;\;-0.0020833333333333333 \cdot {b}^{5}\\
      
      \mathbf{else}:\\
      \;\;\;\;\frac{1}{e^{b} + 1}\\
      
      
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 3 regimes
      2. if a < -1e103

        1. Initial program 100.0%

          \[\frac{e^{a}}{e^{a} + e^{b}} \]
        2. Add Preprocessing
        3. Step-by-step derivation
          1. lift-/.f64N/A

            \[\leadsto \color{blue}{\frac{e^{a}}{e^{a} + e^{b}}} \]
          2. clear-numN/A

            \[\leadsto \color{blue}{\frac{1}{\frac{e^{a} + e^{b}}{e^{a}}}} \]
          3. lower-/.f64N/A

            \[\leadsto \color{blue}{\frac{1}{\frac{e^{a} + e^{b}}{e^{a}}}} \]
          4. div-invN/A

            \[\leadsto \frac{1}{\color{blue}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{e^{a}}}} \]
          5. lower-*.f64N/A

            \[\leadsto \frac{1}{\color{blue}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{e^{a}}}} \]
          6. lift-exp.f64N/A

            \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{\color{blue}{e^{a}}}} \]
          7. rec-expN/A

            \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
          8. lower-exp.f64N/A

            \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
          9. lower-neg.f64100.0

            \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot e^{\color{blue}{-a}}} \]
        4. Applied rewrites100.0%

          \[\leadsto \color{blue}{\frac{1}{\left(e^{a} + e^{b}\right) \cdot e^{-a}}} \]
        5. Taylor expanded in b around 0

          \[\leadsto \frac{1}{\color{blue}{e^{\mathsf{neg}\left(a\right)} \cdot \left(1 + e^{a}\right)}} \]
        6. Step-by-step derivation
          1. +-commutativeN/A

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

            \[\leadsto \frac{1}{\color{blue}{e^{\mathsf{neg}\left(a\right)} \cdot e^{a} + e^{\mathsf{neg}\left(a\right)} \cdot 1}} \]
          3. exp-negN/A

            \[\leadsto \frac{1}{\color{blue}{\frac{1}{e^{a}}} \cdot e^{a} + e^{\mathsf{neg}\left(a\right)} \cdot 1} \]
          4. lft-mult-inverseN/A

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

            \[\leadsto \frac{1}{1 + \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
          6. lower-+.f64N/A

            \[\leadsto \frac{1}{\color{blue}{1 + e^{\mathsf{neg}\left(a\right)}}} \]
          7. lower-exp.f64N/A

            \[\leadsto \frac{1}{1 + \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
          8. lower-neg.f64100.0

            \[\leadsto \frac{1}{1 + e^{\color{blue}{-a}}} \]
        7. Applied rewrites100.0%

          \[\leadsto \frac{1}{\color{blue}{1 + e^{-a}}} \]
        8. Taylor expanded in a around 0

          \[\leadsto \frac{1}{2 + \color{blue}{a \cdot \left(a \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot a\right) - 1\right)}} \]
        9. Step-by-step derivation
          1. Applied rewrites100.0%

            \[\leadsto \frac{1}{\mathsf{fma}\left(a, \color{blue}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, -0.16666666666666666, 0.5\right), -1\right)}, 2\right)} \]

          if -1e103 < a < -3.5e8

          1. Initial program 96.2%

            \[\frac{e^{a}}{e^{a} + e^{b}} \]
          2. Add Preprocessing
          3. Taylor expanded in a around 0

            \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
          4. Step-by-step derivation
            1. lower-/.f64N/A

              \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
            2. lower-+.f64N/A

              \[\leadsto \frac{1}{\color{blue}{1 + e^{b}}} \]
            3. lower-exp.f6421.8

              \[\leadsto \frac{1}{1 + \color{blue}{e^{b}}} \]
          5. Applied rewrites21.8%

            \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
          6. Taylor expanded in b around 0

            \[\leadsto \frac{1}{2} + \color{blue}{b \cdot \left({b}^{2} \cdot \left(\frac{1}{48} + \frac{-1}{480} \cdot {b}^{2}\right) - \frac{1}{4}\right)} \]
          7. Step-by-step derivation
            1. Applied rewrites2.8%

              \[\leadsto \mathsf{fma}\left(b, \color{blue}{\mathsf{fma}\left(b \cdot b, \mathsf{fma}\left(b \cdot b, -0.0020833333333333333, 0.020833333333333332\right), -0.25\right)}, 0.5\right) \]
            2. Taylor expanded in b around inf

              \[\leadsto \frac{-1}{480} \cdot {b}^{\color{blue}{5}} \]
            3. Step-by-step derivation
              1. Applied rewrites52.1%

                \[\leadsto -0.0020833333333333333 \cdot {b}^{\color{blue}{5}} \]

              if -3.5e8 < a

              1. Initial program 98.9%

                \[\frac{e^{a}}{e^{a} + e^{b}} \]
              2. Add Preprocessing
              3. Taylor expanded in a around 0

                \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
              4. Step-by-step derivation
                1. lower-/.f64N/A

                  \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                2. lower-+.f64N/A

                  \[\leadsto \frac{1}{\color{blue}{1 + e^{b}}} \]
                3. lower-exp.f6498.6

                  \[\leadsto \frac{1}{1 + \color{blue}{e^{b}}} \]
              5. Applied rewrites98.6%

                \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
            4. Recombined 3 regimes into one program.
            5. Final simplification94.1%

              \[\leadsto \begin{array}{l} \mathbf{if}\;a \leq -1 \cdot 10^{+103}:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, \mathsf{fma}\left(a, -0.16666666666666666, 0.5\right), -1\right), 2\right)}\\ \mathbf{elif}\;a \leq -350000000:\\ \;\;\;\;-0.0020833333333333333 \cdot {b}^{5}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{e^{b} + 1}\\ \end{array} \]
            6. Add Preprocessing

            Alternative 4: 74.5% accurate, 3.4× speedup?

            \[\begin{array}{l} \\ \begin{array}{l} t_0 := \mathsf{fma}\left(b \cdot b, \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right), b\right)\\ \mathbf{if}\;b \leq 1.7 \cdot 10^{+51}:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, \mathsf{fma}\left(a, -0.16666666666666666, 0.5\right), -1\right), 2\right)}\\ \mathbf{elif}\;b \leq 5 \cdot 10^{+102}:\\ \;\;\;\;\frac{1}{\frac{\mathsf{fma}\left(t\_0, t\_0, -4\right)}{\mathsf{fma}\left(b, \mathsf{fma}\left(b, \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right), 1\right), -2\right)}}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{0.16666666666666666 \cdot \left(b \cdot \left(b \cdot b\right)\right)}\\ \end{array} \end{array} \]
            (FPCore (a b)
             :precision binary64
             (let* ((t_0 (fma (* b b) (fma b 0.16666666666666666 0.5) b)))
               (if (<= b 1.7e+51)
                 (/ 1.0 (fma a (fma a (fma a -0.16666666666666666 0.5) -1.0) 2.0))
                 (if (<= b 5e+102)
                   (/
                    1.0
                    (/
                     (fma t_0 t_0 -4.0)
                     (fma b (fma b (fma b 0.16666666666666666 0.5) 1.0) -2.0)))
                   (/ 1.0 (* 0.16666666666666666 (* b (* b b))))))))
            double code(double a, double b) {
            	double t_0 = fma((b * b), fma(b, 0.16666666666666666, 0.5), b);
            	double tmp;
            	if (b <= 1.7e+51) {
            		tmp = 1.0 / fma(a, fma(a, fma(a, -0.16666666666666666, 0.5), -1.0), 2.0);
            	} else if (b <= 5e+102) {
            		tmp = 1.0 / (fma(t_0, t_0, -4.0) / fma(b, fma(b, fma(b, 0.16666666666666666, 0.5), 1.0), -2.0));
            	} else {
            		tmp = 1.0 / (0.16666666666666666 * (b * (b * b)));
            	}
            	return tmp;
            }
            
            function code(a, b)
            	t_0 = fma(Float64(b * b), fma(b, 0.16666666666666666, 0.5), b)
            	tmp = 0.0
            	if (b <= 1.7e+51)
            		tmp = Float64(1.0 / fma(a, fma(a, fma(a, -0.16666666666666666, 0.5), -1.0), 2.0));
            	elseif (b <= 5e+102)
            		tmp = Float64(1.0 / Float64(fma(t_0, t_0, -4.0) / fma(b, fma(b, fma(b, 0.16666666666666666, 0.5), 1.0), -2.0)));
            	else
            		tmp = Float64(1.0 / Float64(0.16666666666666666 * Float64(b * Float64(b * b))));
            	end
            	return tmp
            end
            
            code[a_, b_] := Block[{t$95$0 = N[(N[(b * b), $MachinePrecision] * N[(b * 0.16666666666666666 + 0.5), $MachinePrecision] + b), $MachinePrecision]}, If[LessEqual[b, 1.7e+51], N[(1.0 / N[(a * N[(a * N[(a * -0.16666666666666666 + 0.5), $MachinePrecision] + -1.0), $MachinePrecision] + 2.0), $MachinePrecision]), $MachinePrecision], If[LessEqual[b, 5e+102], N[(1.0 / N[(N[(t$95$0 * t$95$0 + -4.0), $MachinePrecision] / N[(b * N[(b * N[(b * 0.16666666666666666 + 0.5), $MachinePrecision] + 1.0), $MachinePrecision] + -2.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(1.0 / N[(0.16666666666666666 * N[(b * N[(b * b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]
            
            \begin{array}{l}
            
            \\
            \begin{array}{l}
            t_0 := \mathsf{fma}\left(b \cdot b, \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right), b\right)\\
            \mathbf{if}\;b \leq 1.7 \cdot 10^{+51}:\\
            \;\;\;\;\frac{1}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, \mathsf{fma}\left(a, -0.16666666666666666, 0.5\right), -1\right), 2\right)}\\
            
            \mathbf{elif}\;b \leq 5 \cdot 10^{+102}:\\
            \;\;\;\;\frac{1}{\frac{\mathsf{fma}\left(t\_0, t\_0, -4\right)}{\mathsf{fma}\left(b, \mathsf{fma}\left(b, \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right), 1\right), -2\right)}}\\
            
            \mathbf{else}:\\
            \;\;\;\;\frac{1}{0.16666666666666666 \cdot \left(b \cdot \left(b \cdot b\right)\right)}\\
            
            
            \end{array}
            \end{array}
            
            Derivation
            1. Split input into 3 regimes
            2. if b < 1.69999999999999992e51

              1. Initial program 98.4%

                \[\frac{e^{a}}{e^{a} + e^{b}} \]
              2. Add Preprocessing
              3. Step-by-step derivation
                1. lift-/.f64N/A

                  \[\leadsto \color{blue}{\frac{e^{a}}{e^{a} + e^{b}}} \]
                2. clear-numN/A

                  \[\leadsto \color{blue}{\frac{1}{\frac{e^{a} + e^{b}}{e^{a}}}} \]
                3. lower-/.f64N/A

                  \[\leadsto \color{blue}{\frac{1}{\frac{e^{a} + e^{b}}{e^{a}}}} \]
                4. div-invN/A

                  \[\leadsto \frac{1}{\color{blue}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{e^{a}}}} \]
                5. lower-*.f64N/A

                  \[\leadsto \frac{1}{\color{blue}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{e^{a}}}} \]
                6. lift-exp.f64N/A

                  \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{\color{blue}{e^{a}}}} \]
                7. rec-expN/A

                  \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                8. lower-exp.f64N/A

                  \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                9. lower-neg.f6498.4

                  \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot e^{\color{blue}{-a}}} \]
              4. Applied rewrites98.4%

                \[\leadsto \color{blue}{\frac{1}{\left(e^{a} + e^{b}\right) \cdot e^{-a}}} \]
              5. Taylor expanded in b around 0

                \[\leadsto \frac{1}{\color{blue}{e^{\mathsf{neg}\left(a\right)} \cdot \left(1 + e^{a}\right)}} \]
              6. Step-by-step derivation
                1. +-commutativeN/A

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

                  \[\leadsto \frac{1}{\color{blue}{e^{\mathsf{neg}\left(a\right)} \cdot e^{a} + e^{\mathsf{neg}\left(a\right)} \cdot 1}} \]
                3. exp-negN/A

                  \[\leadsto \frac{1}{\color{blue}{\frac{1}{e^{a}}} \cdot e^{a} + e^{\mathsf{neg}\left(a\right)} \cdot 1} \]
                4. lft-mult-inverseN/A

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

                  \[\leadsto \frac{1}{1 + \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                6. lower-+.f64N/A

                  \[\leadsto \frac{1}{\color{blue}{1 + e^{\mathsf{neg}\left(a\right)}}} \]
                7. lower-exp.f64N/A

                  \[\leadsto \frac{1}{1 + \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                8. lower-neg.f6476.5

                  \[\leadsto \frac{1}{1 + e^{\color{blue}{-a}}} \]
              7. Applied rewrites76.5%

                \[\leadsto \frac{1}{\color{blue}{1 + e^{-a}}} \]
              8. Taylor expanded in a around 0

                \[\leadsto \frac{1}{2 + \color{blue}{a \cdot \left(a \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot a\right) - 1\right)}} \]
              9. Step-by-step derivation
                1. Applied rewrites65.1%

                  \[\leadsto \frac{1}{\mathsf{fma}\left(a, \color{blue}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, -0.16666666666666666, 0.5\right), -1\right)}, 2\right)} \]

                if 1.69999999999999992e51 < b < 5e102

                1. Initial program 100.0%

                  \[\frac{e^{a}}{e^{a} + e^{b}} \]
                2. Add Preprocessing
                3. Taylor expanded in a around 0

                  \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                4. Step-by-step derivation
                  1. lower-/.f64N/A

                    \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                  2. lower-+.f64N/A

                    \[\leadsto \frac{1}{\color{blue}{1 + e^{b}}} \]
                  3. lower-exp.f64100.0

                    \[\leadsto \frac{1}{1 + \color{blue}{e^{b}}} \]
                5. Applied rewrites100.0%

                  \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                6. Taylor expanded in b around 0

                  \[\leadsto \frac{1}{2 + \color{blue}{b \cdot \left(1 + b \cdot \left(\frac{1}{2} + \frac{1}{6} \cdot b\right)\right)}} \]
                7. Step-by-step derivation
                  1. Applied rewrites7.3%

                    \[\leadsto \frac{1}{\mathsf{fma}\left(b, \color{blue}{\mathsf{fma}\left(b, \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right), 1\right)}, 2\right)} \]
                  2. Step-by-step derivation
                    1. Applied rewrites94.4%

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

                    if 5e102 < b

                    1. Initial program 100.0%

                      \[\frac{e^{a}}{e^{a} + e^{b}} \]
                    2. Add Preprocessing
                    3. Taylor expanded in a around 0

                      \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                    4. Step-by-step derivation
                      1. lower-/.f64N/A

                        \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                      2. lower-+.f64N/A

                        \[\leadsto \frac{1}{\color{blue}{1 + e^{b}}} \]
                      3. lower-exp.f64100.0

                        \[\leadsto \frac{1}{1 + \color{blue}{e^{b}}} \]
                    5. Applied rewrites100.0%

                      \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                    6. Taylor expanded in b around 0

                      \[\leadsto \frac{1}{2 + \color{blue}{b \cdot \left(1 + b \cdot \left(\frac{1}{2} + \frac{1}{6} \cdot b\right)\right)}} \]
                    7. Step-by-step derivation
                      1. Applied rewrites100.0%

                        \[\leadsto \frac{1}{\mathsf{fma}\left(b, \color{blue}{\mathsf{fma}\left(b, \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right), 1\right)}, 2\right)} \]
                      2. Taylor expanded in b around inf

                        \[\leadsto \frac{1}{\frac{1}{6} \cdot {b}^{\color{blue}{3}}} \]
                      3. Step-by-step derivation
                        1. Applied rewrites100.0%

                          \[\leadsto \frac{1}{0.16666666666666666 \cdot \left(b \cdot \color{blue}{\left(b \cdot b\right)}\right)} \]
                      4. Recombined 3 regimes into one program.
                      5. Add Preprocessing

                      Alternative 5: 72.4% accurate, 3.9× speedup?

                      \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;b \leq 1.7 \cdot 10^{+51}:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, \mathsf{fma}\left(a, -0.16666666666666666, 0.5\right), -1\right), 2\right)}\\ \mathbf{elif}\;b \leq 5 \cdot 10^{+153}:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(b, \frac{\mathsf{fma}\left(b \cdot b, \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right) \cdot \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right), -1\right)}{\mathsf{fma}\left(b, \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right), -1\right)}, 2\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(b, \mathsf{fma}\left(0.5, b, 1\right), 2\right)}\\ \end{array} \end{array} \]
                      (FPCore (a b)
                       :precision binary64
                       (if (<= b 1.7e+51)
                         (/ 1.0 (fma a (fma a (fma a -0.16666666666666666 0.5) -1.0) 2.0))
                         (if (<= b 5e+153)
                           (/
                            1.0
                            (fma
                             b
                             (/
                              (fma
                               (* b b)
                               (* (fma b 0.16666666666666666 0.5) (fma b 0.16666666666666666 0.5))
                               -1.0)
                              (fma b (fma b 0.16666666666666666 0.5) -1.0))
                             2.0))
                           (/ 1.0 (fma b (fma 0.5 b 1.0) 2.0)))))
                      double code(double a, double b) {
                      	double tmp;
                      	if (b <= 1.7e+51) {
                      		tmp = 1.0 / fma(a, fma(a, fma(a, -0.16666666666666666, 0.5), -1.0), 2.0);
                      	} else if (b <= 5e+153) {
                      		tmp = 1.0 / fma(b, (fma((b * b), (fma(b, 0.16666666666666666, 0.5) * fma(b, 0.16666666666666666, 0.5)), -1.0) / fma(b, fma(b, 0.16666666666666666, 0.5), -1.0)), 2.0);
                      	} else {
                      		tmp = 1.0 / fma(b, fma(0.5, b, 1.0), 2.0);
                      	}
                      	return tmp;
                      }
                      
                      function code(a, b)
                      	tmp = 0.0
                      	if (b <= 1.7e+51)
                      		tmp = Float64(1.0 / fma(a, fma(a, fma(a, -0.16666666666666666, 0.5), -1.0), 2.0));
                      	elseif (b <= 5e+153)
                      		tmp = Float64(1.0 / fma(b, Float64(fma(Float64(b * b), Float64(fma(b, 0.16666666666666666, 0.5) * fma(b, 0.16666666666666666, 0.5)), -1.0) / fma(b, fma(b, 0.16666666666666666, 0.5), -1.0)), 2.0));
                      	else
                      		tmp = Float64(1.0 / fma(b, fma(0.5, b, 1.0), 2.0));
                      	end
                      	return tmp
                      end
                      
                      code[a_, b_] := If[LessEqual[b, 1.7e+51], N[(1.0 / N[(a * N[(a * N[(a * -0.16666666666666666 + 0.5), $MachinePrecision] + -1.0), $MachinePrecision] + 2.0), $MachinePrecision]), $MachinePrecision], If[LessEqual[b, 5e+153], N[(1.0 / N[(b * N[(N[(N[(b * b), $MachinePrecision] * N[(N[(b * 0.16666666666666666 + 0.5), $MachinePrecision] * N[(b * 0.16666666666666666 + 0.5), $MachinePrecision]), $MachinePrecision] + -1.0), $MachinePrecision] / N[(b * N[(b * 0.16666666666666666 + 0.5), $MachinePrecision] + -1.0), $MachinePrecision]), $MachinePrecision] + 2.0), $MachinePrecision]), $MachinePrecision], N[(1.0 / N[(b * N[(0.5 * b + 1.0), $MachinePrecision] + 2.0), $MachinePrecision]), $MachinePrecision]]]
                      
                      \begin{array}{l}
                      
                      \\
                      \begin{array}{l}
                      \mathbf{if}\;b \leq 1.7 \cdot 10^{+51}:\\
                      \;\;\;\;\frac{1}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, \mathsf{fma}\left(a, -0.16666666666666666, 0.5\right), -1\right), 2\right)}\\
                      
                      \mathbf{elif}\;b \leq 5 \cdot 10^{+153}:\\
                      \;\;\;\;\frac{1}{\mathsf{fma}\left(b, \frac{\mathsf{fma}\left(b \cdot b, \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right) \cdot \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right), -1\right)}{\mathsf{fma}\left(b, \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right), -1\right)}, 2\right)}\\
                      
                      \mathbf{else}:\\
                      \;\;\;\;\frac{1}{\mathsf{fma}\left(b, \mathsf{fma}\left(0.5, b, 1\right), 2\right)}\\
                      
                      
                      \end{array}
                      \end{array}
                      
                      Derivation
                      1. Split input into 3 regimes
                      2. if b < 1.69999999999999992e51

                        1. Initial program 98.4%

                          \[\frac{e^{a}}{e^{a} + e^{b}} \]
                        2. Add Preprocessing
                        3. Step-by-step derivation
                          1. lift-/.f64N/A

                            \[\leadsto \color{blue}{\frac{e^{a}}{e^{a} + e^{b}}} \]
                          2. clear-numN/A

                            \[\leadsto \color{blue}{\frac{1}{\frac{e^{a} + e^{b}}{e^{a}}}} \]
                          3. lower-/.f64N/A

                            \[\leadsto \color{blue}{\frac{1}{\frac{e^{a} + e^{b}}{e^{a}}}} \]
                          4. div-invN/A

                            \[\leadsto \frac{1}{\color{blue}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{e^{a}}}} \]
                          5. lower-*.f64N/A

                            \[\leadsto \frac{1}{\color{blue}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{e^{a}}}} \]
                          6. lift-exp.f64N/A

                            \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{\color{blue}{e^{a}}}} \]
                          7. rec-expN/A

                            \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                          8. lower-exp.f64N/A

                            \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                          9. lower-neg.f6498.4

                            \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot e^{\color{blue}{-a}}} \]
                        4. Applied rewrites98.4%

                          \[\leadsto \color{blue}{\frac{1}{\left(e^{a} + e^{b}\right) \cdot e^{-a}}} \]
                        5. Taylor expanded in b around 0

                          \[\leadsto \frac{1}{\color{blue}{e^{\mathsf{neg}\left(a\right)} \cdot \left(1 + e^{a}\right)}} \]
                        6. Step-by-step derivation
                          1. +-commutativeN/A

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

                            \[\leadsto \frac{1}{\color{blue}{e^{\mathsf{neg}\left(a\right)} \cdot e^{a} + e^{\mathsf{neg}\left(a\right)} \cdot 1}} \]
                          3. exp-negN/A

                            \[\leadsto \frac{1}{\color{blue}{\frac{1}{e^{a}}} \cdot e^{a} + e^{\mathsf{neg}\left(a\right)} \cdot 1} \]
                          4. lft-mult-inverseN/A

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

                            \[\leadsto \frac{1}{1 + \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                          6. lower-+.f64N/A

                            \[\leadsto \frac{1}{\color{blue}{1 + e^{\mathsf{neg}\left(a\right)}}} \]
                          7. lower-exp.f64N/A

                            \[\leadsto \frac{1}{1 + \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                          8. lower-neg.f6476.5

                            \[\leadsto \frac{1}{1 + e^{\color{blue}{-a}}} \]
                        7. Applied rewrites76.5%

                          \[\leadsto \frac{1}{\color{blue}{1 + e^{-a}}} \]
                        8. Taylor expanded in a around 0

                          \[\leadsto \frac{1}{2 + \color{blue}{a \cdot \left(a \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot a\right) - 1\right)}} \]
                        9. Step-by-step derivation
                          1. Applied rewrites65.1%

                            \[\leadsto \frac{1}{\mathsf{fma}\left(a, \color{blue}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, -0.16666666666666666, 0.5\right), -1\right)}, 2\right)} \]

                          if 1.69999999999999992e51 < b < 5.00000000000000018e153

                          1. Initial program 100.0%

                            \[\frac{e^{a}}{e^{a} + e^{b}} \]
                          2. Add Preprocessing
                          3. Taylor expanded in a around 0

                            \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                          4. Step-by-step derivation
                            1. lower-/.f64N/A

                              \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                            2. lower-+.f64N/A

                              \[\leadsto \frac{1}{\color{blue}{1 + e^{b}}} \]
                            3. lower-exp.f64100.0

                              \[\leadsto \frac{1}{1 + \color{blue}{e^{b}}} \]
                          5. Applied rewrites100.0%

                            \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                          6. Taylor expanded in b around 0

                            \[\leadsto \frac{1}{2 + \color{blue}{b \cdot \left(1 + b \cdot \left(\frac{1}{2} + \frac{1}{6} \cdot b\right)\right)}} \]
                          7. Step-by-step derivation
                            1. Applied rewrites41.6%

                              \[\leadsto \frac{1}{\mathsf{fma}\left(b, \color{blue}{\mathsf{fma}\left(b, \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right), 1\right)}, 2\right)} \]
                            2. Step-by-step derivation
                              1. Applied rewrites75.5%

                                \[\leadsto \frac{1}{\mathsf{fma}\left(b, \frac{\mathsf{fma}\left(b \cdot b, \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right) \cdot \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right), -1\right)}{\mathsf{fma}\left(b, \color{blue}{\mathsf{fma}\left(b, 0.16666666666666666, 0.5\right)}, -1\right)}, 2\right)} \]

                              if 5.00000000000000018e153 < b

                              1. Initial program 100.0%

                                \[\frac{e^{a}}{e^{a} + e^{b}} \]
                              2. Add Preprocessing
                              3. Taylor expanded in a around 0

                                \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                              4. Step-by-step derivation
                                1. lower-/.f64N/A

                                  \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                2. lower-+.f64N/A

                                  \[\leadsto \frac{1}{\color{blue}{1 + e^{b}}} \]
                                3. lower-exp.f64100.0

                                  \[\leadsto \frac{1}{1 + \color{blue}{e^{b}}} \]
                              5. Applied rewrites100.0%

                                \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                              6. Taylor expanded in b around 0

                                \[\leadsto \frac{1}{2 + \color{blue}{b \cdot \left(1 + \frac{1}{2} \cdot b\right)}} \]
                              7. Step-by-step derivation
                                1. Applied rewrites100.0%

                                  \[\leadsto \frac{1}{\mathsf{fma}\left(b, \color{blue}{\mathsf{fma}\left(0.5, b, 1\right)}, 2\right)} \]
                              8. Recombined 3 regimes into one program.
                              9. Add Preprocessing

                              Alternative 6: 71.4% accurate, 8.7× speedup?

                              \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;b \leq 5.6 \cdot 10^{+102}:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, \mathsf{fma}\left(a, -0.16666666666666666, 0.5\right), -1\right), 2\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{0.16666666666666666 \cdot \left(b \cdot \left(b \cdot b\right)\right)}\\ \end{array} \end{array} \]
                              (FPCore (a b)
                               :precision binary64
                               (if (<= b 5.6e+102)
                                 (/ 1.0 (fma a (fma a (fma a -0.16666666666666666 0.5) -1.0) 2.0))
                                 (/ 1.0 (* 0.16666666666666666 (* b (* b b))))))
                              double code(double a, double b) {
                              	double tmp;
                              	if (b <= 5.6e+102) {
                              		tmp = 1.0 / fma(a, fma(a, fma(a, -0.16666666666666666, 0.5), -1.0), 2.0);
                              	} else {
                              		tmp = 1.0 / (0.16666666666666666 * (b * (b * b)));
                              	}
                              	return tmp;
                              }
                              
                              function code(a, b)
                              	tmp = 0.0
                              	if (b <= 5.6e+102)
                              		tmp = Float64(1.0 / fma(a, fma(a, fma(a, -0.16666666666666666, 0.5), -1.0), 2.0));
                              	else
                              		tmp = Float64(1.0 / Float64(0.16666666666666666 * Float64(b * Float64(b * b))));
                              	end
                              	return tmp
                              end
                              
                              code[a_, b_] := If[LessEqual[b, 5.6e+102], N[(1.0 / N[(a * N[(a * N[(a * -0.16666666666666666 + 0.5), $MachinePrecision] + -1.0), $MachinePrecision] + 2.0), $MachinePrecision]), $MachinePrecision], N[(1.0 / N[(0.16666666666666666 * N[(b * N[(b * b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
                              
                              \begin{array}{l}
                              
                              \\
                              \begin{array}{l}
                              \mathbf{if}\;b \leq 5.6 \cdot 10^{+102}:\\
                              \;\;\;\;\frac{1}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, \mathsf{fma}\left(a, -0.16666666666666666, 0.5\right), -1\right), 2\right)}\\
                              
                              \mathbf{else}:\\
                              \;\;\;\;\frac{1}{0.16666666666666666 \cdot \left(b \cdot \left(b \cdot b\right)\right)}\\
                              
                              
                              \end{array}
                              \end{array}
                              
                              Derivation
                              1. Split input into 2 regimes
                              2. if b < 5.60000000000000037e102

                                1. Initial program 98.5%

                                  \[\frac{e^{a}}{e^{a} + e^{b}} \]
                                2. Add Preprocessing
                                3. Step-by-step derivation
                                  1. lift-/.f64N/A

                                    \[\leadsto \color{blue}{\frac{e^{a}}{e^{a} + e^{b}}} \]
                                  2. clear-numN/A

                                    \[\leadsto \color{blue}{\frac{1}{\frac{e^{a} + e^{b}}{e^{a}}}} \]
                                  3. lower-/.f64N/A

                                    \[\leadsto \color{blue}{\frac{1}{\frac{e^{a} + e^{b}}{e^{a}}}} \]
                                  4. div-invN/A

                                    \[\leadsto \frac{1}{\color{blue}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{e^{a}}}} \]
                                  5. lower-*.f64N/A

                                    \[\leadsto \frac{1}{\color{blue}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{e^{a}}}} \]
                                  6. lift-exp.f64N/A

                                    \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{\color{blue}{e^{a}}}} \]
                                  7. rec-expN/A

                                    \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                  8. lower-exp.f64N/A

                                    \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                  9. lower-neg.f6498.5

                                    \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot e^{\color{blue}{-a}}} \]
                                4. Applied rewrites98.5%

                                  \[\leadsto \color{blue}{\frac{1}{\left(e^{a} + e^{b}\right) \cdot e^{-a}}} \]
                                5. Taylor expanded in b around 0

                                  \[\leadsto \frac{1}{\color{blue}{e^{\mathsf{neg}\left(a\right)} \cdot \left(1 + e^{a}\right)}} \]
                                6. Step-by-step derivation
                                  1. +-commutativeN/A

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

                                    \[\leadsto \frac{1}{\color{blue}{e^{\mathsf{neg}\left(a\right)} \cdot e^{a} + e^{\mathsf{neg}\left(a\right)} \cdot 1}} \]
                                  3. exp-negN/A

                                    \[\leadsto \frac{1}{\color{blue}{\frac{1}{e^{a}}} \cdot e^{a} + e^{\mathsf{neg}\left(a\right)} \cdot 1} \]
                                  4. lft-mult-inverseN/A

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

                                    \[\leadsto \frac{1}{1 + \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                  6. lower-+.f64N/A

                                    \[\leadsto \frac{1}{\color{blue}{1 + e^{\mathsf{neg}\left(a\right)}}} \]
                                  7. lower-exp.f64N/A

                                    \[\leadsto \frac{1}{1 + \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                  8. lower-neg.f6471.8

                                    \[\leadsto \frac{1}{1 + e^{\color{blue}{-a}}} \]
                                7. Applied rewrites71.8%

                                  \[\leadsto \frac{1}{\color{blue}{1 + e^{-a}}} \]
                                8. Taylor expanded in a around 0

                                  \[\leadsto \frac{1}{2 + \color{blue}{a \cdot \left(a \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot a\right) - 1\right)}} \]
                                9. Step-by-step derivation
                                  1. Applied rewrites61.4%

                                    \[\leadsto \frac{1}{\mathsf{fma}\left(a, \color{blue}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, -0.16666666666666666, 0.5\right), -1\right)}, 2\right)} \]

                                  if 5.60000000000000037e102 < b

                                  1. Initial program 100.0%

                                    \[\frac{e^{a}}{e^{a} + e^{b}} \]
                                  2. Add Preprocessing
                                  3. Taylor expanded in a around 0

                                    \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                  4. Step-by-step derivation
                                    1. lower-/.f64N/A

                                      \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                    2. lower-+.f64N/A

                                      \[\leadsto \frac{1}{\color{blue}{1 + e^{b}}} \]
                                    3. lower-exp.f64100.0

                                      \[\leadsto \frac{1}{1 + \color{blue}{e^{b}}} \]
                                  5. Applied rewrites100.0%

                                    \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                  6. Taylor expanded in b around 0

                                    \[\leadsto \frac{1}{2 + \color{blue}{b \cdot \left(1 + b \cdot \left(\frac{1}{2} + \frac{1}{6} \cdot b\right)\right)}} \]
                                  7. Step-by-step derivation
                                    1. Applied rewrites100.0%

                                      \[\leadsto \frac{1}{\mathsf{fma}\left(b, \color{blue}{\mathsf{fma}\left(b, \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right), 1\right)}, 2\right)} \]
                                    2. Taylor expanded in b around inf

                                      \[\leadsto \frac{1}{\frac{1}{6} \cdot {b}^{\color{blue}{3}}} \]
                                    3. Step-by-step derivation
                                      1. Applied rewrites100.0%

                                        \[\leadsto \frac{1}{0.16666666666666666 \cdot \left(b \cdot \color{blue}{\left(b \cdot b\right)}\right)} \]
                                    4. Recombined 2 regimes into one program.
                                    5. Add Preprocessing

                                    Alternative 7: 68.1% accurate, 9.5× speedup?

                                    \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;b \leq 5.6 \cdot 10^{+102}:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, 0.5, -1\right), 2\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{0.16666666666666666 \cdot \left(b \cdot \left(b \cdot b\right)\right)}\\ \end{array} \end{array} \]
                                    (FPCore (a b)
                                     :precision binary64
                                     (if (<= b 5.6e+102)
                                       (/ 1.0 (fma a (fma a 0.5 -1.0) 2.0))
                                       (/ 1.0 (* 0.16666666666666666 (* b (* b b))))))
                                    double code(double a, double b) {
                                    	double tmp;
                                    	if (b <= 5.6e+102) {
                                    		tmp = 1.0 / fma(a, fma(a, 0.5, -1.0), 2.0);
                                    	} else {
                                    		tmp = 1.0 / (0.16666666666666666 * (b * (b * b)));
                                    	}
                                    	return tmp;
                                    }
                                    
                                    function code(a, b)
                                    	tmp = 0.0
                                    	if (b <= 5.6e+102)
                                    		tmp = Float64(1.0 / fma(a, fma(a, 0.5, -1.0), 2.0));
                                    	else
                                    		tmp = Float64(1.0 / Float64(0.16666666666666666 * Float64(b * Float64(b * b))));
                                    	end
                                    	return tmp
                                    end
                                    
                                    code[a_, b_] := If[LessEqual[b, 5.6e+102], N[(1.0 / N[(a * N[(a * 0.5 + -1.0), $MachinePrecision] + 2.0), $MachinePrecision]), $MachinePrecision], N[(1.0 / N[(0.16666666666666666 * N[(b * N[(b * b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
                                    
                                    \begin{array}{l}
                                    
                                    \\
                                    \begin{array}{l}
                                    \mathbf{if}\;b \leq 5.6 \cdot 10^{+102}:\\
                                    \;\;\;\;\frac{1}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, 0.5, -1\right), 2\right)}\\
                                    
                                    \mathbf{else}:\\
                                    \;\;\;\;\frac{1}{0.16666666666666666 \cdot \left(b \cdot \left(b \cdot b\right)\right)}\\
                                    
                                    
                                    \end{array}
                                    \end{array}
                                    
                                    Derivation
                                    1. Split input into 2 regimes
                                    2. if b < 5.60000000000000037e102

                                      1. Initial program 98.5%

                                        \[\frac{e^{a}}{e^{a} + e^{b}} \]
                                      2. Add Preprocessing
                                      3. Step-by-step derivation
                                        1. lift-/.f64N/A

                                          \[\leadsto \color{blue}{\frac{e^{a}}{e^{a} + e^{b}}} \]
                                        2. clear-numN/A

                                          \[\leadsto \color{blue}{\frac{1}{\frac{e^{a} + e^{b}}{e^{a}}}} \]
                                        3. lower-/.f64N/A

                                          \[\leadsto \color{blue}{\frac{1}{\frac{e^{a} + e^{b}}{e^{a}}}} \]
                                        4. div-invN/A

                                          \[\leadsto \frac{1}{\color{blue}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{e^{a}}}} \]
                                        5. lower-*.f64N/A

                                          \[\leadsto \frac{1}{\color{blue}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{e^{a}}}} \]
                                        6. lift-exp.f64N/A

                                          \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{\color{blue}{e^{a}}}} \]
                                        7. rec-expN/A

                                          \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                        8. lower-exp.f64N/A

                                          \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                        9. lower-neg.f6498.5

                                          \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot e^{\color{blue}{-a}}} \]
                                      4. Applied rewrites98.5%

                                        \[\leadsto \color{blue}{\frac{1}{\left(e^{a} + e^{b}\right) \cdot e^{-a}}} \]
                                      5. Taylor expanded in b around 0

                                        \[\leadsto \frac{1}{\color{blue}{e^{\mathsf{neg}\left(a\right)} \cdot \left(1 + e^{a}\right)}} \]
                                      6. Step-by-step derivation
                                        1. +-commutativeN/A

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

                                          \[\leadsto \frac{1}{\color{blue}{e^{\mathsf{neg}\left(a\right)} \cdot e^{a} + e^{\mathsf{neg}\left(a\right)} \cdot 1}} \]
                                        3. exp-negN/A

                                          \[\leadsto \frac{1}{\color{blue}{\frac{1}{e^{a}}} \cdot e^{a} + e^{\mathsf{neg}\left(a\right)} \cdot 1} \]
                                        4. lft-mult-inverseN/A

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

                                          \[\leadsto \frac{1}{1 + \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                        6. lower-+.f64N/A

                                          \[\leadsto \frac{1}{\color{blue}{1 + e^{\mathsf{neg}\left(a\right)}}} \]
                                        7. lower-exp.f64N/A

                                          \[\leadsto \frac{1}{1 + \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                        8. lower-neg.f6471.8

                                          \[\leadsto \frac{1}{1 + e^{\color{blue}{-a}}} \]
                                      7. Applied rewrites71.8%

                                        \[\leadsto \frac{1}{\color{blue}{1 + e^{-a}}} \]
                                      8. Taylor expanded in a around 0

                                        \[\leadsto \frac{1}{2 + \color{blue}{a \cdot \left(\frac{1}{2} \cdot a - 1\right)}} \]
                                      9. Step-by-step derivation
                                        1. Applied rewrites58.5%

                                          \[\leadsto \frac{1}{\mathsf{fma}\left(a, \color{blue}{\mathsf{fma}\left(a, 0.5, -1\right)}, 2\right)} \]

                                        if 5.60000000000000037e102 < b

                                        1. Initial program 100.0%

                                          \[\frac{e^{a}}{e^{a} + e^{b}} \]
                                        2. Add Preprocessing
                                        3. Taylor expanded in a around 0

                                          \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                        4. Step-by-step derivation
                                          1. lower-/.f64N/A

                                            \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                          2. lower-+.f64N/A

                                            \[\leadsto \frac{1}{\color{blue}{1 + e^{b}}} \]
                                          3. lower-exp.f64100.0

                                            \[\leadsto \frac{1}{1 + \color{blue}{e^{b}}} \]
                                        5. Applied rewrites100.0%

                                          \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                        6. Taylor expanded in b around 0

                                          \[\leadsto \frac{1}{2 + \color{blue}{b \cdot \left(1 + b \cdot \left(\frac{1}{2} + \frac{1}{6} \cdot b\right)\right)}} \]
                                        7. Step-by-step derivation
                                          1. Applied rewrites100.0%

                                            \[\leadsto \frac{1}{\mathsf{fma}\left(b, \color{blue}{\mathsf{fma}\left(b, \mathsf{fma}\left(b, 0.16666666666666666, 0.5\right), 1\right)}, 2\right)} \]
                                          2. Taylor expanded in b around inf

                                            \[\leadsto \frac{1}{\frac{1}{6} \cdot {b}^{\color{blue}{3}}} \]
                                          3. Step-by-step derivation
                                            1. Applied rewrites100.0%

                                              \[\leadsto \frac{1}{0.16666666666666666 \cdot \left(b \cdot \color{blue}{\left(b \cdot b\right)}\right)} \]
                                          4. Recombined 2 regimes into one program.
                                          5. Add Preprocessing

                                          Alternative 8: 63.8% accurate, 10.5× speedup?

                                          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;b \leq 1.15 \cdot 10^{+104}:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, 0.5, -1\right), 2\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(b, \mathsf{fma}\left(0.5, b, 1\right), 2\right)}\\ \end{array} \end{array} \]
                                          (FPCore (a b)
                                           :precision binary64
                                           (if (<= b 1.15e+104)
                                             (/ 1.0 (fma a (fma a 0.5 -1.0) 2.0))
                                             (/ 1.0 (fma b (fma 0.5 b 1.0) 2.0))))
                                          double code(double a, double b) {
                                          	double tmp;
                                          	if (b <= 1.15e+104) {
                                          		tmp = 1.0 / fma(a, fma(a, 0.5, -1.0), 2.0);
                                          	} else {
                                          		tmp = 1.0 / fma(b, fma(0.5, b, 1.0), 2.0);
                                          	}
                                          	return tmp;
                                          }
                                          
                                          function code(a, b)
                                          	tmp = 0.0
                                          	if (b <= 1.15e+104)
                                          		tmp = Float64(1.0 / fma(a, fma(a, 0.5, -1.0), 2.0));
                                          	else
                                          		tmp = Float64(1.0 / fma(b, fma(0.5, b, 1.0), 2.0));
                                          	end
                                          	return tmp
                                          end
                                          
                                          code[a_, b_] := If[LessEqual[b, 1.15e+104], N[(1.0 / N[(a * N[(a * 0.5 + -1.0), $MachinePrecision] + 2.0), $MachinePrecision]), $MachinePrecision], N[(1.0 / N[(b * N[(0.5 * b + 1.0), $MachinePrecision] + 2.0), $MachinePrecision]), $MachinePrecision]]
                                          
                                          \begin{array}{l}
                                          
                                          \\
                                          \begin{array}{l}
                                          \mathbf{if}\;b \leq 1.15 \cdot 10^{+104}:\\
                                          \;\;\;\;\frac{1}{\mathsf{fma}\left(a, \mathsf{fma}\left(a, 0.5, -1\right), 2\right)}\\
                                          
                                          \mathbf{else}:\\
                                          \;\;\;\;\frac{1}{\mathsf{fma}\left(b, \mathsf{fma}\left(0.5, b, 1\right), 2\right)}\\
                                          
                                          
                                          \end{array}
                                          \end{array}
                                          
                                          Derivation
                                          1. Split input into 2 regimes
                                          2. if b < 1.14999999999999992e104

                                            1. Initial program 98.5%

                                              \[\frac{e^{a}}{e^{a} + e^{b}} \]
                                            2. Add Preprocessing
                                            3. Step-by-step derivation
                                              1. lift-/.f64N/A

                                                \[\leadsto \color{blue}{\frac{e^{a}}{e^{a} + e^{b}}} \]
                                              2. clear-numN/A

                                                \[\leadsto \color{blue}{\frac{1}{\frac{e^{a} + e^{b}}{e^{a}}}} \]
                                              3. lower-/.f64N/A

                                                \[\leadsto \color{blue}{\frac{1}{\frac{e^{a} + e^{b}}{e^{a}}}} \]
                                              4. div-invN/A

                                                \[\leadsto \frac{1}{\color{blue}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{e^{a}}}} \]
                                              5. lower-*.f64N/A

                                                \[\leadsto \frac{1}{\color{blue}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{e^{a}}}} \]
                                              6. lift-exp.f64N/A

                                                \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{\color{blue}{e^{a}}}} \]
                                              7. rec-expN/A

                                                \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                              8. lower-exp.f64N/A

                                                \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                              9. lower-neg.f6498.5

                                                \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot e^{\color{blue}{-a}}} \]
                                            4. Applied rewrites98.5%

                                              \[\leadsto \color{blue}{\frac{1}{\left(e^{a} + e^{b}\right) \cdot e^{-a}}} \]
                                            5. Taylor expanded in b around 0

                                              \[\leadsto \frac{1}{\color{blue}{e^{\mathsf{neg}\left(a\right)} \cdot \left(1 + e^{a}\right)}} \]
                                            6. Step-by-step derivation
                                              1. +-commutativeN/A

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

                                                \[\leadsto \frac{1}{\color{blue}{e^{\mathsf{neg}\left(a\right)} \cdot e^{a} + e^{\mathsf{neg}\left(a\right)} \cdot 1}} \]
                                              3. exp-negN/A

                                                \[\leadsto \frac{1}{\color{blue}{\frac{1}{e^{a}}} \cdot e^{a} + e^{\mathsf{neg}\left(a\right)} \cdot 1} \]
                                              4. lft-mult-inverseN/A

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

                                                \[\leadsto \frac{1}{1 + \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                              6. lower-+.f64N/A

                                                \[\leadsto \frac{1}{\color{blue}{1 + e^{\mathsf{neg}\left(a\right)}}} \]
                                              7. lower-exp.f64N/A

                                                \[\leadsto \frac{1}{1 + \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                              8. lower-neg.f6471.8

                                                \[\leadsto \frac{1}{1 + e^{\color{blue}{-a}}} \]
                                            7. Applied rewrites71.8%

                                              \[\leadsto \frac{1}{\color{blue}{1 + e^{-a}}} \]
                                            8. Taylor expanded in a around 0

                                              \[\leadsto \frac{1}{2 + \color{blue}{a \cdot \left(\frac{1}{2} \cdot a - 1\right)}} \]
                                            9. Step-by-step derivation
                                              1. Applied rewrites58.5%

                                                \[\leadsto \frac{1}{\mathsf{fma}\left(a, \color{blue}{\mathsf{fma}\left(a, 0.5, -1\right)}, 2\right)} \]

                                              if 1.14999999999999992e104 < b

                                              1. Initial program 100.0%

                                                \[\frac{e^{a}}{e^{a} + e^{b}} \]
                                              2. Add Preprocessing
                                              3. Taylor expanded in a around 0

                                                \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                              4. Step-by-step derivation
                                                1. lower-/.f64N/A

                                                  \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                                2. lower-+.f64N/A

                                                  \[\leadsto \frac{1}{\color{blue}{1 + e^{b}}} \]
                                                3. lower-exp.f64100.0

                                                  \[\leadsto \frac{1}{1 + \color{blue}{e^{b}}} \]
                                              5. Applied rewrites100.0%

                                                \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                              6. Taylor expanded in b around 0

                                                \[\leadsto \frac{1}{2 + \color{blue}{b \cdot \left(1 + \frac{1}{2} \cdot b\right)}} \]
                                              7. Step-by-step derivation
                                                1. Applied rewrites82.0%

                                                  \[\leadsto \frac{1}{\mathsf{fma}\left(b, \color{blue}{\mathsf{fma}\left(0.5, b, 1\right)}, 2\right)} \]
                                              8. Recombined 2 regimes into one program.
                                              9. Add Preprocessing

                                              Alternative 9: 58.4% accurate, 10.5× speedup?

                                              \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;a \leq -15000:\\ \;\;\;\;b \cdot \left(b \cdot \left(b \cdot 0.020833333333333332\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\mathsf{fma}\left(b, \mathsf{fma}\left(0.5, b, 1\right), 2\right)}\\ \end{array} \end{array} \]
                                              (FPCore (a b)
                                               :precision binary64
                                               (if (<= a -15000.0)
                                                 (* b (* b (* b 0.020833333333333332)))
                                                 (/ 1.0 (fma b (fma 0.5 b 1.0) 2.0))))
                                              double code(double a, double b) {
                                              	double tmp;
                                              	if (a <= -15000.0) {
                                              		tmp = b * (b * (b * 0.020833333333333332));
                                              	} else {
                                              		tmp = 1.0 / fma(b, fma(0.5, b, 1.0), 2.0);
                                              	}
                                              	return tmp;
                                              }
                                              
                                              function code(a, b)
                                              	tmp = 0.0
                                              	if (a <= -15000.0)
                                              		tmp = Float64(b * Float64(b * Float64(b * 0.020833333333333332)));
                                              	else
                                              		tmp = Float64(1.0 / fma(b, fma(0.5, b, 1.0), 2.0));
                                              	end
                                              	return tmp
                                              end
                                              
                                              code[a_, b_] := If[LessEqual[a, -15000.0], N[(b * N[(b * N[(b * 0.020833333333333332), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(1.0 / N[(b * N[(0.5 * b + 1.0), $MachinePrecision] + 2.0), $MachinePrecision]), $MachinePrecision]]
                                              
                                              \begin{array}{l}
                                              
                                              \\
                                              \begin{array}{l}
                                              \mathbf{if}\;a \leq -15000:\\
                                              \;\;\;\;b \cdot \left(b \cdot \left(b \cdot 0.020833333333333332\right)\right)\\
                                              
                                              \mathbf{else}:\\
                                              \;\;\;\;\frac{1}{\mathsf{fma}\left(b, \mathsf{fma}\left(0.5, b, 1\right), 2\right)}\\
                                              
                                              
                                              \end{array}
                                              \end{array}
                                              
                                              Derivation
                                              1. Split input into 2 regimes
                                              2. if a < -15000

                                                1. Initial program 98.5%

                                                  \[\frac{e^{a}}{e^{a} + e^{b}} \]
                                                2. Add Preprocessing
                                                3. Taylor expanded in a around 0

                                                  \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                                4. Step-by-step derivation
                                                  1. lower-/.f64N/A

                                                    \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                                  2. lower-+.f64N/A

                                                    \[\leadsto \frac{1}{\color{blue}{1 + e^{b}}} \]
                                                  3. lower-exp.f6429.5

                                                    \[\leadsto \frac{1}{1 + \color{blue}{e^{b}}} \]
                                                5. Applied rewrites29.5%

                                                  \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                                6. Taylor expanded in b around 0

                                                  \[\leadsto \frac{1}{2} + \color{blue}{b \cdot \left(\frac{1}{48} \cdot {b}^{2} - \frac{1}{4}\right)} \]
                                                7. Step-by-step derivation
                                                  1. Applied rewrites2.7%

                                                    \[\leadsto \mathsf{fma}\left(b, \color{blue}{\mathsf{fma}\left(0.020833333333333332, b \cdot b, -0.25\right)}, 0.5\right) \]
                                                  2. Taylor expanded in b around inf

                                                    \[\leadsto \frac{1}{48} \cdot {b}^{\color{blue}{3}} \]
                                                  3. Step-by-step derivation
                                                    1. Applied rewrites43.8%

                                                      \[\leadsto b \cdot \left(b \cdot \color{blue}{\left(b \cdot 0.020833333333333332\right)}\right) \]

                                                    if -15000 < a

                                                    1. Initial program 98.9%

                                                      \[\frac{e^{a}}{e^{a} + e^{b}} \]
                                                    2. Add Preprocessing
                                                    3. Taylor expanded in a around 0

                                                      \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                                    4. Step-by-step derivation
                                                      1. lower-/.f64N/A

                                                        \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                                      2. lower-+.f64N/A

                                                        \[\leadsto \frac{1}{\color{blue}{1 + e^{b}}} \]
                                                      3. lower-exp.f6498.6

                                                        \[\leadsto \frac{1}{1 + \color{blue}{e^{b}}} \]
                                                    5. Applied rewrites98.6%

                                                      \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                                    6. Taylor expanded in b around 0

                                                      \[\leadsto \frac{1}{2 + \color{blue}{b \cdot \left(1 + \frac{1}{2} \cdot b\right)}} \]
                                                    7. Step-by-step derivation
                                                      1. Applied rewrites60.2%

                                                        \[\leadsto \frac{1}{\mathsf{fma}\left(b, \color{blue}{\mathsf{fma}\left(0.5, b, 1\right)}, 2\right)} \]
                                                    8. Recombined 2 regimes into one program.
                                                    9. Add Preprocessing

                                                    Alternative 10: 52.1% accurate, 14.3× speedup?

                                                    \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;a \leq -7200:\\ \;\;\;\;b \cdot \left(b \cdot \left(b \cdot 0.020833333333333332\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{2 - a}\\ \end{array} \end{array} \]
                                                    (FPCore (a b)
                                                     :precision binary64
                                                     (if (<= a -7200.0) (* b (* b (* b 0.020833333333333332))) (/ 1.0 (- 2.0 a))))
                                                    double code(double a, double b) {
                                                    	double tmp;
                                                    	if (a <= -7200.0) {
                                                    		tmp = b * (b * (b * 0.020833333333333332));
                                                    	} else {
                                                    		tmp = 1.0 / (2.0 - a);
                                                    	}
                                                    	return tmp;
                                                    }
                                                    
                                                    real(8) function code(a, b)
                                                        real(8), intent (in) :: a
                                                        real(8), intent (in) :: b
                                                        real(8) :: tmp
                                                        if (a <= (-7200.0d0)) then
                                                            tmp = b * (b * (b * 0.020833333333333332d0))
                                                        else
                                                            tmp = 1.0d0 / (2.0d0 - a)
                                                        end if
                                                        code = tmp
                                                    end function
                                                    
                                                    public static double code(double a, double b) {
                                                    	double tmp;
                                                    	if (a <= -7200.0) {
                                                    		tmp = b * (b * (b * 0.020833333333333332));
                                                    	} else {
                                                    		tmp = 1.0 / (2.0 - a);
                                                    	}
                                                    	return tmp;
                                                    }
                                                    
                                                    def code(a, b):
                                                    	tmp = 0
                                                    	if a <= -7200.0:
                                                    		tmp = b * (b * (b * 0.020833333333333332))
                                                    	else:
                                                    		tmp = 1.0 / (2.0 - a)
                                                    	return tmp
                                                    
                                                    function code(a, b)
                                                    	tmp = 0.0
                                                    	if (a <= -7200.0)
                                                    		tmp = Float64(b * Float64(b * Float64(b * 0.020833333333333332)));
                                                    	else
                                                    		tmp = Float64(1.0 / Float64(2.0 - a));
                                                    	end
                                                    	return tmp
                                                    end
                                                    
                                                    function tmp_2 = code(a, b)
                                                    	tmp = 0.0;
                                                    	if (a <= -7200.0)
                                                    		tmp = b * (b * (b * 0.020833333333333332));
                                                    	else
                                                    		tmp = 1.0 / (2.0 - a);
                                                    	end
                                                    	tmp_2 = tmp;
                                                    end
                                                    
                                                    code[a_, b_] := If[LessEqual[a, -7200.0], N[(b * N[(b * N[(b * 0.020833333333333332), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(1.0 / N[(2.0 - a), $MachinePrecision]), $MachinePrecision]]
                                                    
                                                    \begin{array}{l}
                                                    
                                                    \\
                                                    \begin{array}{l}
                                                    \mathbf{if}\;a \leq -7200:\\
                                                    \;\;\;\;b \cdot \left(b \cdot \left(b \cdot 0.020833333333333332\right)\right)\\
                                                    
                                                    \mathbf{else}:\\
                                                    \;\;\;\;\frac{1}{2 - a}\\
                                                    
                                                    
                                                    \end{array}
                                                    \end{array}
                                                    
                                                    Derivation
                                                    1. Split input into 2 regimes
                                                    2. if a < -7200

                                                      1. Initial program 98.5%

                                                        \[\frac{e^{a}}{e^{a} + e^{b}} \]
                                                      2. Add Preprocessing
                                                      3. Taylor expanded in a around 0

                                                        \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                                      4. Step-by-step derivation
                                                        1. lower-/.f64N/A

                                                          \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                                        2. lower-+.f64N/A

                                                          \[\leadsto \frac{1}{\color{blue}{1 + e^{b}}} \]
                                                        3. lower-exp.f6429.5

                                                          \[\leadsto \frac{1}{1 + \color{blue}{e^{b}}} \]
                                                      5. Applied rewrites29.5%

                                                        \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                                      6. Taylor expanded in b around 0

                                                        \[\leadsto \frac{1}{2} + \color{blue}{b \cdot \left(\frac{1}{48} \cdot {b}^{2} - \frac{1}{4}\right)} \]
                                                      7. Step-by-step derivation
                                                        1. Applied rewrites2.7%

                                                          \[\leadsto \mathsf{fma}\left(b, \color{blue}{\mathsf{fma}\left(0.020833333333333332, b \cdot b, -0.25\right)}, 0.5\right) \]
                                                        2. Taylor expanded in b around inf

                                                          \[\leadsto \frac{1}{48} \cdot {b}^{\color{blue}{3}} \]
                                                        3. Step-by-step derivation
                                                          1. Applied rewrites43.8%

                                                            \[\leadsto b \cdot \left(b \cdot \color{blue}{\left(b \cdot 0.020833333333333332\right)}\right) \]

                                                          if -7200 < a

                                                          1. Initial program 98.9%

                                                            \[\frac{e^{a}}{e^{a} + e^{b}} \]
                                                          2. Add Preprocessing
                                                          3. Step-by-step derivation
                                                            1. lift-/.f64N/A

                                                              \[\leadsto \color{blue}{\frac{e^{a}}{e^{a} + e^{b}}} \]
                                                            2. clear-numN/A

                                                              \[\leadsto \color{blue}{\frac{1}{\frac{e^{a} + e^{b}}{e^{a}}}} \]
                                                            3. lower-/.f64N/A

                                                              \[\leadsto \color{blue}{\frac{1}{\frac{e^{a} + e^{b}}{e^{a}}}} \]
                                                            4. div-invN/A

                                                              \[\leadsto \frac{1}{\color{blue}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{e^{a}}}} \]
                                                            5. lower-*.f64N/A

                                                              \[\leadsto \frac{1}{\color{blue}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{e^{a}}}} \]
                                                            6. lift-exp.f64N/A

                                                              \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{\color{blue}{e^{a}}}} \]
                                                            7. rec-expN/A

                                                              \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                                            8. lower-exp.f64N/A

                                                              \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                                            9. lower-neg.f6498.9

                                                              \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot e^{\color{blue}{-a}}} \]
                                                          4. Applied rewrites98.9%

                                                            \[\leadsto \color{blue}{\frac{1}{\left(e^{a} + e^{b}\right) \cdot e^{-a}}} \]
                                                          5. Taylor expanded in b around 0

                                                            \[\leadsto \frac{1}{\color{blue}{e^{\mathsf{neg}\left(a\right)} \cdot \left(1 + e^{a}\right)}} \]
                                                          6. Step-by-step derivation
                                                            1. +-commutativeN/A

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

                                                              \[\leadsto \frac{1}{\color{blue}{e^{\mathsf{neg}\left(a\right)} \cdot e^{a} + e^{\mathsf{neg}\left(a\right)} \cdot 1}} \]
                                                            3. exp-negN/A

                                                              \[\leadsto \frac{1}{\color{blue}{\frac{1}{e^{a}}} \cdot e^{a} + e^{\mathsf{neg}\left(a\right)} \cdot 1} \]
                                                            4. lft-mult-inverseN/A

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

                                                              \[\leadsto \frac{1}{1 + \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                                            6. lower-+.f64N/A

                                                              \[\leadsto \frac{1}{\color{blue}{1 + e^{\mathsf{neg}\left(a\right)}}} \]
                                                            7. lower-exp.f64N/A

                                                              \[\leadsto \frac{1}{1 + \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                                            8. lower-neg.f6450.2

                                                              \[\leadsto \frac{1}{1 + e^{\color{blue}{-a}}} \]
                                                          7. Applied rewrites50.2%

                                                            \[\leadsto \frac{1}{\color{blue}{1 + e^{-a}}} \]
                                                          8. Taylor expanded in a around 0

                                                            \[\leadsto \frac{1}{2 + \color{blue}{-1 \cdot a}} \]
                                                          9. Step-by-step derivation
                                                            1. Applied rewrites49.3%

                                                              \[\leadsto \frac{1}{2 - \color{blue}{a}} \]
                                                          10. Recombined 2 regimes into one program.
                                                          11. Add Preprocessing

                                                          Alternative 11: 41.2% accurate, 21.0× speedup?

                                                          \[\begin{array}{l} \\ \frac{1}{2 - a} \end{array} \]
                                                          (FPCore (a b) :precision binary64 (/ 1.0 (- 2.0 a)))
                                                          double code(double a, double b) {
                                                          	return 1.0 / (2.0 - a);
                                                          }
                                                          
                                                          real(8) function code(a, b)
                                                              real(8), intent (in) :: a
                                                              real(8), intent (in) :: b
                                                              code = 1.0d0 / (2.0d0 - a)
                                                          end function
                                                          
                                                          public static double code(double a, double b) {
                                                          	return 1.0 / (2.0 - a);
                                                          }
                                                          
                                                          def code(a, b):
                                                          	return 1.0 / (2.0 - a)
                                                          
                                                          function code(a, b)
                                                          	return Float64(1.0 / Float64(2.0 - a))
                                                          end
                                                          
                                                          function tmp = code(a, b)
                                                          	tmp = 1.0 / (2.0 - a);
                                                          end
                                                          
                                                          code[a_, b_] := N[(1.0 / N[(2.0 - a), $MachinePrecision]), $MachinePrecision]
                                                          
                                                          \begin{array}{l}
                                                          
                                                          \\
                                                          \frac{1}{2 - a}
                                                          \end{array}
                                                          
                                                          Derivation
                                                          1. Initial program 98.8%

                                                            \[\frac{e^{a}}{e^{a} + e^{b}} \]
                                                          2. Add Preprocessing
                                                          3. Step-by-step derivation
                                                            1. lift-/.f64N/A

                                                              \[\leadsto \color{blue}{\frac{e^{a}}{e^{a} + e^{b}}} \]
                                                            2. clear-numN/A

                                                              \[\leadsto \color{blue}{\frac{1}{\frac{e^{a} + e^{b}}{e^{a}}}} \]
                                                            3. lower-/.f64N/A

                                                              \[\leadsto \color{blue}{\frac{1}{\frac{e^{a} + e^{b}}{e^{a}}}} \]
                                                            4. div-invN/A

                                                              \[\leadsto \frac{1}{\color{blue}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{e^{a}}}} \]
                                                            5. lower-*.f64N/A

                                                              \[\leadsto \frac{1}{\color{blue}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{e^{a}}}} \]
                                                            6. lift-exp.f64N/A

                                                              \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \frac{1}{\color{blue}{e^{a}}}} \]
                                                            7. rec-expN/A

                                                              \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                                            8. lower-exp.f64N/A

                                                              \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                                            9. lower-neg.f6498.8

                                                              \[\leadsto \frac{1}{\left(e^{a} + e^{b}\right) \cdot e^{\color{blue}{-a}}} \]
                                                          4. Applied rewrites98.8%

                                                            \[\leadsto \color{blue}{\frac{1}{\left(e^{a} + e^{b}\right) \cdot e^{-a}}} \]
                                                          5. Taylor expanded in b around 0

                                                            \[\leadsto \frac{1}{\color{blue}{e^{\mathsf{neg}\left(a\right)} \cdot \left(1 + e^{a}\right)}} \]
                                                          6. Step-by-step derivation
                                                            1. +-commutativeN/A

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

                                                              \[\leadsto \frac{1}{\color{blue}{e^{\mathsf{neg}\left(a\right)} \cdot e^{a} + e^{\mathsf{neg}\left(a\right)} \cdot 1}} \]
                                                            3. exp-negN/A

                                                              \[\leadsto \frac{1}{\color{blue}{\frac{1}{e^{a}}} \cdot e^{a} + e^{\mathsf{neg}\left(a\right)} \cdot 1} \]
                                                            4. lft-mult-inverseN/A

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

                                                              \[\leadsto \frac{1}{1 + \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                                            6. lower-+.f64N/A

                                                              \[\leadsto \frac{1}{\color{blue}{1 + e^{\mathsf{neg}\left(a\right)}}} \]
                                                            7. lower-exp.f64N/A

                                                              \[\leadsto \frac{1}{1 + \color{blue}{e^{\mathsf{neg}\left(a\right)}}} \]
                                                            8. lower-neg.f6463.1

                                                              \[\leadsto \frac{1}{1 + e^{\color{blue}{-a}}} \]
                                                          7. Applied rewrites63.1%

                                                            \[\leadsto \frac{1}{\color{blue}{1 + e^{-a}}} \]
                                                          8. Taylor expanded in a around 0

                                                            \[\leadsto \frac{1}{2 + \color{blue}{-1 \cdot a}} \]
                                                          9. Step-by-step derivation
                                                            1. Applied rewrites38.2%

                                                              \[\leadsto \frac{1}{2 - \color{blue}{a}} \]
                                                            2. Add Preprocessing

                                                            Alternative 12: 40.3% accurate, 315.0× speedup?

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

                                                              \[\frac{e^{a}}{e^{a} + e^{b}} \]
                                                            2. Add Preprocessing
                                                            3. Taylor expanded in a around 0

                                                              \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                                            4. Step-by-step derivation
                                                              1. lower-/.f64N/A

                                                                \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                                              2. lower-+.f64N/A

                                                                \[\leadsto \frac{1}{\color{blue}{1 + e^{b}}} \]
                                                              3. lower-exp.f6480.8

                                                                \[\leadsto \frac{1}{1 + \color{blue}{e^{b}}} \]
                                                            5. Applied rewrites80.8%

                                                              \[\leadsto \color{blue}{\frac{1}{1 + e^{b}}} \]
                                                            6. Taylor expanded in b around 0

                                                              \[\leadsto \frac{1}{2} \]
                                                            7. Step-by-step derivation
                                                              1. Applied rewrites37.2%

                                                                \[\leadsto 0.5 \]
                                                              2. Add Preprocessing

                                                              Developer Target 1: 100.0% accurate, 2.7× speedup?

                                                              \[\begin{array}{l} \\ \frac{1}{1 + e^{b - a}} \end{array} \]
                                                              (FPCore (a b) :precision binary64 (/ 1.0 (+ 1.0 (exp (- b a)))))
                                                              double code(double a, double b) {
                                                              	return 1.0 / (1.0 + exp((b - a)));
                                                              }
                                                              
                                                              real(8) function code(a, b)
                                                                  real(8), intent (in) :: a
                                                                  real(8), intent (in) :: b
                                                                  code = 1.0d0 / (1.0d0 + exp((b - a)))
                                                              end function
                                                              
                                                              public static double code(double a, double b) {
                                                              	return 1.0 / (1.0 + Math.exp((b - a)));
                                                              }
                                                              
                                                              def code(a, b):
                                                              	return 1.0 / (1.0 + math.exp((b - a)))
                                                              
                                                              function code(a, b)
                                                              	return Float64(1.0 / Float64(1.0 + exp(Float64(b - a))))
                                                              end
                                                              
                                                              function tmp = code(a, b)
                                                              	tmp = 1.0 / (1.0 + exp((b - a)));
                                                              end
                                                              
                                                              code[a_, b_] := N[(1.0 / N[(1.0 + N[Exp[N[(b - a), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
                                                              
                                                              \begin{array}{l}
                                                              
                                                              \\
                                                              \frac{1}{1 + e^{b - a}}
                                                              \end{array}
                                                              

                                                              Reproduce

                                                              ?
                                                              herbie shell --seed 2024233 
                                                              (FPCore (a b)
                                                                :name "Quotient of sum of exps"
                                                                :precision binary64
                                                              
                                                                :alt
                                                                (! :herbie-platform default (/ 1 (+ 1 (exp (- b a)))))
                                                              
                                                                (/ (exp a) (+ (exp a) (exp b))))