expq2 (section 3.11)

Percentage Accurate: 37.4% → 100.0%
Time: 5.5s
Alternatives: 13
Speedup: 10.2×

Specification

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

\\
\frac{e^{x}}{e^{x} - 1}
\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 13 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: 37.4% accurate, 1.0× speedup?

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

\\
\frac{e^{x}}{e^{x} - 1}
\end{array}

Alternative 1: 100.0% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \frac{e^{x}}{\mathsf{expm1}\left(x\right)} \end{array} \]
(FPCore (x) :precision binary64 (/ (exp x) (expm1 x)))
double code(double x) {
	return exp(x) / expm1(x);
}
public static double code(double x) {
	return Math.exp(x) / Math.expm1(x);
}
def code(x):
	return math.exp(x) / math.expm1(x)
function code(x)
	return Float64(exp(x) / expm1(x))
end
code[x_] := N[(N[Exp[x], $MachinePrecision] / N[(Exp[x] - 1), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{e^{x}}{\mathsf{expm1}\left(x\right)}
\end{array}
Derivation
  1. Initial program 35.9%

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

      \[\leadsto \frac{e^{x}}{\color{blue}{e^{x} - 1}} \]
    2. lift-exp.f64N/A

      \[\leadsto \frac{e^{x}}{\color{blue}{e^{x}} - 1} \]
    3. lower-expm1.f64100.0

      \[\leadsto \frac{e^{x}}{\color{blue}{\mathsf{expm1}\left(x\right)}} \]
  4. Applied rewrites100.0%

    \[\leadsto \frac{e^{x}}{\color{blue}{\mathsf{expm1}\left(x\right)}} \]
  5. Add Preprocessing

Alternative 2: 89.0% accurate, 1.6× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;e^{x} \leq 0:\\ \;\;\;\;\frac{-1}{\left(\mathsf{fma}\left(-0.16666666666666666, x, 0.5\right) \cdot x\right) \cdot x}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(0.08333333333333333, x, 0.5\right) - \frac{-1}{x}\\ \end{array} \end{array} \]
(FPCore (x)
 :precision binary64
 (if (<= (exp x) 0.0)
   (/ -1.0 (* (* (fma -0.16666666666666666 x 0.5) x) x))
   (- (fma 0.08333333333333333 x 0.5) (/ -1.0 x))))
double code(double x) {
	double tmp;
	if (exp(x) <= 0.0) {
		tmp = -1.0 / ((fma(-0.16666666666666666, x, 0.5) * x) * x);
	} else {
		tmp = fma(0.08333333333333333, x, 0.5) - (-1.0 / x);
	}
	return tmp;
}
function code(x)
	tmp = 0.0
	if (exp(x) <= 0.0)
		tmp = Float64(-1.0 / Float64(Float64(fma(-0.16666666666666666, x, 0.5) * x) * x));
	else
		tmp = Float64(fma(0.08333333333333333, x, 0.5) - Float64(-1.0 / x));
	end
	return tmp
end
code[x_] := If[LessEqual[N[Exp[x], $MachinePrecision], 0.0], N[(-1.0 / N[(N[(N[(-0.16666666666666666 * x + 0.5), $MachinePrecision] * x), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision], N[(N[(0.08333333333333333 * x + 0.5), $MachinePrecision] - N[(-1.0 / x), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;e^{x} \leq 0:\\
\;\;\;\;\frac{-1}{\left(\mathsf{fma}\left(-0.16666666666666666, x, 0.5\right) \cdot x\right) \cdot x}\\

\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(0.08333333333333333, x, 0.5\right) - \frac{-1}{x}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (exp.f64 x) < 0.0

    1. Initial program 100.0%

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

        \[\leadsto \color{blue}{\frac{e^{x}}{e^{x} - 1}} \]
      2. clear-numN/A

        \[\leadsto \color{blue}{\frac{1}{\frac{e^{x} - 1}{e^{x}}}} \]
      3. frac-2negN/A

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

        \[\leadsto \color{blue}{\frac{\mathsf{neg}\left(1\right)}{\mathsf{neg}\left(\frac{e^{x} - 1}{e^{x}}\right)}} \]
      5. metadata-evalN/A

        \[\leadsto \frac{\color{blue}{-1}}{\mathsf{neg}\left(\frac{e^{x} - 1}{e^{x}}\right)} \]
      6. distribute-neg-fracN/A

        \[\leadsto \frac{-1}{\color{blue}{\frac{\mathsf{neg}\left(\left(e^{x} - 1\right)\right)}{e^{x}}}} \]
      7. neg-sub0N/A

        \[\leadsto \frac{-1}{\frac{\color{blue}{0 - \left(e^{x} - 1\right)}}{e^{x}}} \]
      8. lift--.f64N/A

        \[\leadsto \frac{-1}{\frac{0 - \color{blue}{\left(e^{x} - 1\right)}}{e^{x}}} \]
      9. associate-+l-N/A

        \[\leadsto \frac{-1}{\frac{\color{blue}{\left(0 - e^{x}\right) + 1}}{e^{x}}} \]
      10. neg-sub0N/A

        \[\leadsto \frac{-1}{\frac{\color{blue}{\left(\mathsf{neg}\left(e^{x}\right)\right)} + 1}{e^{x}}} \]
      11. +-commutativeN/A

        \[\leadsto \frac{-1}{\frac{\color{blue}{1 + \left(\mathsf{neg}\left(e^{x}\right)\right)}}{e^{x}}} \]
      12. sub-negN/A

        \[\leadsto \frac{-1}{\frac{\color{blue}{1 - e^{x}}}{e^{x}}} \]
      13. div-subN/A

        \[\leadsto \frac{-1}{\color{blue}{\frac{1}{e^{x}} - \frac{e^{x}}{e^{x}}}} \]
      14. *-inversesN/A

        \[\leadsto \frac{-1}{\frac{1}{e^{x}} - \color{blue}{1}} \]
      15. lift-exp.f64N/A

        \[\leadsto \frac{-1}{\frac{1}{\color{blue}{e^{x}}} - 1} \]
      16. rec-expN/A

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

        \[\leadsto \frac{-1}{\color{blue}{\mathsf{expm1}\left(\mathsf{neg}\left(x\right)\right)}} \]
      18. lower-neg.f64100.0

        \[\leadsto \frac{-1}{\mathsf{expm1}\left(\color{blue}{-x}\right)} \]
    4. Applied rewrites100.0%

      \[\leadsto \color{blue}{\frac{-1}{\mathsf{expm1}\left(-x\right)}} \]
    5. Taylor expanded in x around 0

      \[\leadsto \frac{-1}{\color{blue}{x \cdot \left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) - 1\right)}} \]
    6. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \frac{-1}{\color{blue}{\left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) - 1\right) \cdot x}} \]
      2. lower-*.f64N/A

        \[\leadsto \frac{-1}{\color{blue}{\left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) - 1\right) \cdot x}} \]
      3. sub-negN/A

        \[\leadsto \frac{-1}{\color{blue}{\left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) + \left(\mathsf{neg}\left(1\right)\right)\right)} \cdot x} \]
      4. metadata-evalN/A

        \[\leadsto \frac{-1}{\left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) + \color{blue}{-1}\right) \cdot x} \]
      5. *-commutativeN/A

        \[\leadsto \frac{-1}{\left(\color{blue}{\left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) \cdot x} + -1\right) \cdot x} \]
      6. lower-fma.f64N/A

        \[\leadsto \frac{-1}{\color{blue}{\mathsf{fma}\left(\frac{1}{2} + \frac{-1}{6} \cdot x, x, -1\right)} \cdot x} \]
      7. +-commutativeN/A

        \[\leadsto \frac{-1}{\mathsf{fma}\left(\color{blue}{\frac{-1}{6} \cdot x + \frac{1}{2}}, x, -1\right) \cdot x} \]
      8. lower-fma.f6477.2

        \[\leadsto \frac{-1}{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(-0.16666666666666666, x, 0.5\right)}, x, -1\right) \cdot x} \]
    7. Applied rewrites77.2%

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

      \[\leadsto \frac{-1}{\left({x}^{2} \cdot \left(\frac{1}{2} \cdot \frac{1}{x} - \frac{1}{6}\right)\right) \cdot x} \]
    9. Step-by-step derivation
      1. Applied rewrites77.2%

        \[\leadsto \frac{-1}{\left(\mathsf{fma}\left(-0.16666666666666666, x, 0.5\right) \cdot x\right) \cdot x} \]

      if 0.0 < (exp.f64 x)

      1. Initial program 7.4%

        \[\frac{e^{x}}{e^{x} - 1} \]
      2. Add Preprocessing
      3. Taylor expanded in x around 0

        \[\leadsto \color{blue}{\frac{1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)}{x}} \]
      4. Step-by-step derivation
        1. *-lft-identityN/A

          \[\leadsto \color{blue}{1 \cdot \frac{1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)}{x}} \]
        2. associate-/l*N/A

          \[\leadsto \color{blue}{\frac{1 \cdot \left(1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)\right)}{x}} \]
        3. associate-*l/N/A

          \[\leadsto \color{blue}{\frac{1}{x} \cdot \left(1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)\right)} \]
        4. distribute-lft-inN/A

          \[\leadsto \frac{1}{x} \cdot \left(1 + \color{blue}{\left(x \cdot \frac{1}{2} + x \cdot \left(\frac{1}{12} \cdot x\right)\right)}\right) \]
        5. *-commutativeN/A

          \[\leadsto \frac{1}{x} \cdot \left(1 + \left(\color{blue}{\frac{1}{2} \cdot x} + x \cdot \left(\frac{1}{12} \cdot x\right)\right)\right) \]
        6. associate-+r+N/A

          \[\leadsto \frac{1}{x} \cdot \color{blue}{\left(\left(1 + \frac{1}{2} \cdot x\right) + x \cdot \left(\frac{1}{12} \cdot x\right)\right)} \]
        7. distribute-rgt-inN/A

          \[\leadsto \color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right) \cdot \frac{1}{x}} \]
        8. associate-/l*N/A

          \[\leadsto \color{blue}{\frac{\left(1 + \frac{1}{2} \cdot x\right) \cdot 1}{x}} + \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right) \cdot \frac{1}{x} \]
        9. *-rgt-identityN/A

          \[\leadsto \frac{\color{blue}{1 + \frac{1}{2} \cdot x}}{x} + \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right) \cdot \frac{1}{x} \]
        10. *-commutativeN/A

          \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{\frac{1}{x} \cdot \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right)} \]
        11. associate-*r*N/A

          \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{\left(\frac{1}{x} \cdot x\right) \cdot \left(\frac{1}{12} \cdot x\right)} \]
        12. lft-mult-inverseN/A

          \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{1} \cdot \left(\frac{1}{12} \cdot x\right) \]
        13. *-lft-identityN/A

          \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{\frac{1}{12} \cdot x} \]
        14. +-commutativeN/A

          \[\leadsto \color{blue}{\frac{1}{12} \cdot x + \frac{1 + \frac{1}{2} \cdot x}{x}} \]
        15. lower-fma.f64N/A

          \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{12}, x, \frac{1 + \frac{1}{2} \cdot x}{x}\right)} \]
        16. *-rgt-identityN/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \frac{\color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot 1}}{x}\right) \]
        17. associate-/l*N/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot \frac{1}{x}}\right) \]
        18. +-commutativeN/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(\frac{1}{2} \cdot x + 1\right)} \cdot \frac{1}{x}\right) \]
        19. distribute-lft1-inN/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(\frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \frac{1}{x}}\right) \]
        20. lower-+.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(\frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \frac{1}{x}}\right) \]
      5. Applied rewrites98.3%

        \[\leadsto \color{blue}{\mathsf{fma}\left(0.08333333333333333, x, 0.5 + \frac{1}{x}\right)} \]
      6. Step-by-step derivation
        1. Applied rewrites98.3%

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

      Alternative 3: 89.0% accurate, 1.6× speedup?

      \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;e^{x} \leq 0:\\ \;\;\;\;\frac{-1}{\left(\left(-0.16666666666666666 \cdot x\right) \cdot x\right) \cdot x}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(0.08333333333333333, x, 0.5\right) - \frac{-1}{x}\\ \end{array} \end{array} \]
      (FPCore (x)
       :precision binary64
       (if (<= (exp x) 0.0)
         (/ -1.0 (* (* (* -0.16666666666666666 x) x) x))
         (- (fma 0.08333333333333333 x 0.5) (/ -1.0 x))))
      double code(double x) {
      	double tmp;
      	if (exp(x) <= 0.0) {
      		tmp = -1.0 / (((-0.16666666666666666 * x) * x) * x);
      	} else {
      		tmp = fma(0.08333333333333333, x, 0.5) - (-1.0 / x);
      	}
      	return tmp;
      }
      
      function code(x)
      	tmp = 0.0
      	if (exp(x) <= 0.0)
      		tmp = Float64(-1.0 / Float64(Float64(Float64(-0.16666666666666666 * x) * x) * x));
      	else
      		tmp = Float64(fma(0.08333333333333333, x, 0.5) - Float64(-1.0 / x));
      	end
      	return tmp
      end
      
      code[x_] := If[LessEqual[N[Exp[x], $MachinePrecision], 0.0], N[(-1.0 / N[(N[(N[(-0.16666666666666666 * x), $MachinePrecision] * x), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision], N[(N[(0.08333333333333333 * x + 0.5), $MachinePrecision] - N[(-1.0 / x), $MachinePrecision]), $MachinePrecision]]
      
      \begin{array}{l}
      
      \\
      \begin{array}{l}
      \mathbf{if}\;e^{x} \leq 0:\\
      \;\;\;\;\frac{-1}{\left(\left(-0.16666666666666666 \cdot x\right) \cdot x\right) \cdot x}\\
      
      \mathbf{else}:\\
      \;\;\;\;\mathsf{fma}\left(0.08333333333333333, x, 0.5\right) - \frac{-1}{x}\\
      
      
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 2 regimes
      2. if (exp.f64 x) < 0.0

        1. Initial program 100.0%

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

            \[\leadsto \color{blue}{\frac{e^{x}}{e^{x} - 1}} \]
          2. clear-numN/A

            \[\leadsto \color{blue}{\frac{1}{\frac{e^{x} - 1}{e^{x}}}} \]
          3. frac-2negN/A

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

            \[\leadsto \color{blue}{\frac{\mathsf{neg}\left(1\right)}{\mathsf{neg}\left(\frac{e^{x} - 1}{e^{x}}\right)}} \]
          5. metadata-evalN/A

            \[\leadsto \frac{\color{blue}{-1}}{\mathsf{neg}\left(\frac{e^{x} - 1}{e^{x}}\right)} \]
          6. distribute-neg-fracN/A

            \[\leadsto \frac{-1}{\color{blue}{\frac{\mathsf{neg}\left(\left(e^{x} - 1\right)\right)}{e^{x}}}} \]
          7. neg-sub0N/A

            \[\leadsto \frac{-1}{\frac{\color{blue}{0 - \left(e^{x} - 1\right)}}{e^{x}}} \]
          8. lift--.f64N/A

            \[\leadsto \frac{-1}{\frac{0 - \color{blue}{\left(e^{x} - 1\right)}}{e^{x}}} \]
          9. associate-+l-N/A

            \[\leadsto \frac{-1}{\frac{\color{blue}{\left(0 - e^{x}\right) + 1}}{e^{x}}} \]
          10. neg-sub0N/A

            \[\leadsto \frac{-1}{\frac{\color{blue}{\left(\mathsf{neg}\left(e^{x}\right)\right)} + 1}{e^{x}}} \]
          11. +-commutativeN/A

            \[\leadsto \frac{-1}{\frac{\color{blue}{1 + \left(\mathsf{neg}\left(e^{x}\right)\right)}}{e^{x}}} \]
          12. sub-negN/A

            \[\leadsto \frac{-1}{\frac{\color{blue}{1 - e^{x}}}{e^{x}}} \]
          13. div-subN/A

            \[\leadsto \frac{-1}{\color{blue}{\frac{1}{e^{x}} - \frac{e^{x}}{e^{x}}}} \]
          14. *-inversesN/A

            \[\leadsto \frac{-1}{\frac{1}{e^{x}} - \color{blue}{1}} \]
          15. lift-exp.f64N/A

            \[\leadsto \frac{-1}{\frac{1}{\color{blue}{e^{x}}} - 1} \]
          16. rec-expN/A

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

            \[\leadsto \frac{-1}{\color{blue}{\mathsf{expm1}\left(\mathsf{neg}\left(x\right)\right)}} \]
          18. lower-neg.f64100.0

            \[\leadsto \frac{-1}{\mathsf{expm1}\left(\color{blue}{-x}\right)} \]
        4. Applied rewrites100.0%

          \[\leadsto \color{blue}{\frac{-1}{\mathsf{expm1}\left(-x\right)}} \]
        5. Taylor expanded in x around 0

          \[\leadsto \frac{-1}{\color{blue}{x \cdot \left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) - 1\right)}} \]
        6. Step-by-step derivation
          1. *-commutativeN/A

            \[\leadsto \frac{-1}{\color{blue}{\left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) - 1\right) \cdot x}} \]
          2. lower-*.f64N/A

            \[\leadsto \frac{-1}{\color{blue}{\left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) - 1\right) \cdot x}} \]
          3. sub-negN/A

            \[\leadsto \frac{-1}{\color{blue}{\left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) + \left(\mathsf{neg}\left(1\right)\right)\right)} \cdot x} \]
          4. metadata-evalN/A

            \[\leadsto \frac{-1}{\left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) + \color{blue}{-1}\right) \cdot x} \]
          5. *-commutativeN/A

            \[\leadsto \frac{-1}{\left(\color{blue}{\left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) \cdot x} + -1\right) \cdot x} \]
          6. lower-fma.f64N/A

            \[\leadsto \frac{-1}{\color{blue}{\mathsf{fma}\left(\frac{1}{2} + \frac{-1}{6} \cdot x, x, -1\right)} \cdot x} \]
          7. +-commutativeN/A

            \[\leadsto \frac{-1}{\mathsf{fma}\left(\color{blue}{\frac{-1}{6} \cdot x + \frac{1}{2}}, x, -1\right) \cdot x} \]
          8. lower-fma.f6477.2

            \[\leadsto \frac{-1}{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(-0.16666666666666666, x, 0.5\right)}, x, -1\right) \cdot x} \]
        7. Applied rewrites77.2%

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

          \[\leadsto \frac{-1}{\left(\frac{-1}{6} \cdot {x}^{2}\right) \cdot x} \]
        9. Step-by-step derivation
          1. Applied rewrites77.2%

            \[\leadsto \frac{-1}{\left(\left(-0.16666666666666666 \cdot x\right) \cdot x\right) \cdot x} \]

          if 0.0 < (exp.f64 x)

          1. Initial program 7.4%

            \[\frac{e^{x}}{e^{x} - 1} \]
          2. Add Preprocessing
          3. Taylor expanded in x around 0

            \[\leadsto \color{blue}{\frac{1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)}{x}} \]
          4. Step-by-step derivation
            1. *-lft-identityN/A

              \[\leadsto \color{blue}{1 \cdot \frac{1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)}{x}} \]
            2. associate-/l*N/A

              \[\leadsto \color{blue}{\frac{1 \cdot \left(1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)\right)}{x}} \]
            3. associate-*l/N/A

              \[\leadsto \color{blue}{\frac{1}{x} \cdot \left(1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)\right)} \]
            4. distribute-lft-inN/A

              \[\leadsto \frac{1}{x} \cdot \left(1 + \color{blue}{\left(x \cdot \frac{1}{2} + x \cdot \left(\frac{1}{12} \cdot x\right)\right)}\right) \]
            5. *-commutativeN/A

              \[\leadsto \frac{1}{x} \cdot \left(1 + \left(\color{blue}{\frac{1}{2} \cdot x} + x \cdot \left(\frac{1}{12} \cdot x\right)\right)\right) \]
            6. associate-+r+N/A

              \[\leadsto \frac{1}{x} \cdot \color{blue}{\left(\left(1 + \frac{1}{2} \cdot x\right) + x \cdot \left(\frac{1}{12} \cdot x\right)\right)} \]
            7. distribute-rgt-inN/A

              \[\leadsto \color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right) \cdot \frac{1}{x}} \]
            8. associate-/l*N/A

              \[\leadsto \color{blue}{\frac{\left(1 + \frac{1}{2} \cdot x\right) \cdot 1}{x}} + \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right) \cdot \frac{1}{x} \]
            9. *-rgt-identityN/A

              \[\leadsto \frac{\color{blue}{1 + \frac{1}{2} \cdot x}}{x} + \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right) \cdot \frac{1}{x} \]
            10. *-commutativeN/A

              \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{\frac{1}{x} \cdot \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right)} \]
            11. associate-*r*N/A

              \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{\left(\frac{1}{x} \cdot x\right) \cdot \left(\frac{1}{12} \cdot x\right)} \]
            12. lft-mult-inverseN/A

              \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{1} \cdot \left(\frac{1}{12} \cdot x\right) \]
            13. *-lft-identityN/A

              \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{\frac{1}{12} \cdot x} \]
            14. +-commutativeN/A

              \[\leadsto \color{blue}{\frac{1}{12} \cdot x + \frac{1 + \frac{1}{2} \cdot x}{x}} \]
            15. lower-fma.f64N/A

              \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{12}, x, \frac{1 + \frac{1}{2} \cdot x}{x}\right)} \]
            16. *-rgt-identityN/A

              \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \frac{\color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot 1}}{x}\right) \]
            17. associate-/l*N/A

              \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot \frac{1}{x}}\right) \]
            18. +-commutativeN/A

              \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(\frac{1}{2} \cdot x + 1\right)} \cdot \frac{1}{x}\right) \]
            19. distribute-lft1-inN/A

              \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(\frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \frac{1}{x}}\right) \]
            20. lower-+.f64N/A

              \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(\frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \frac{1}{x}}\right) \]
          5. Applied rewrites98.3%

            \[\leadsto \color{blue}{\mathsf{fma}\left(0.08333333333333333, x, 0.5 + \frac{1}{x}\right)} \]
          6. Step-by-step derivation
            1. Applied rewrites98.3%

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

          Alternative 4: 100.0% accurate, 1.9× speedup?

          \[\begin{array}{l} \\ \frac{-1}{\mathsf{expm1}\left(-x\right)} \end{array} \]
          (FPCore (x) :precision binary64 (/ -1.0 (expm1 (- x))))
          double code(double x) {
          	return -1.0 / expm1(-x);
          }
          
          public static double code(double x) {
          	return -1.0 / Math.expm1(-x);
          }
          
          def code(x):
          	return -1.0 / math.expm1(-x)
          
          function code(x)
          	return Float64(-1.0 / expm1(Float64(-x)))
          end
          
          code[x_] := N[(-1.0 / N[(Exp[(-x)] - 1), $MachinePrecision]), $MachinePrecision]
          
          \begin{array}{l}
          
          \\
          \frac{-1}{\mathsf{expm1}\left(-x\right)}
          \end{array}
          
          Derivation
          1. Initial program 35.9%

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

              \[\leadsto \color{blue}{\frac{e^{x}}{e^{x} - 1}} \]
            2. clear-numN/A

              \[\leadsto \color{blue}{\frac{1}{\frac{e^{x} - 1}{e^{x}}}} \]
            3. frac-2negN/A

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

              \[\leadsto \color{blue}{\frac{\mathsf{neg}\left(1\right)}{\mathsf{neg}\left(\frac{e^{x} - 1}{e^{x}}\right)}} \]
            5. metadata-evalN/A

              \[\leadsto \frac{\color{blue}{-1}}{\mathsf{neg}\left(\frac{e^{x} - 1}{e^{x}}\right)} \]
            6. distribute-neg-fracN/A

              \[\leadsto \frac{-1}{\color{blue}{\frac{\mathsf{neg}\left(\left(e^{x} - 1\right)\right)}{e^{x}}}} \]
            7. neg-sub0N/A

              \[\leadsto \frac{-1}{\frac{\color{blue}{0 - \left(e^{x} - 1\right)}}{e^{x}}} \]
            8. lift--.f64N/A

              \[\leadsto \frac{-1}{\frac{0 - \color{blue}{\left(e^{x} - 1\right)}}{e^{x}}} \]
            9. associate-+l-N/A

              \[\leadsto \frac{-1}{\frac{\color{blue}{\left(0 - e^{x}\right) + 1}}{e^{x}}} \]
            10. neg-sub0N/A

              \[\leadsto \frac{-1}{\frac{\color{blue}{\left(\mathsf{neg}\left(e^{x}\right)\right)} + 1}{e^{x}}} \]
            11. +-commutativeN/A

              \[\leadsto \frac{-1}{\frac{\color{blue}{1 + \left(\mathsf{neg}\left(e^{x}\right)\right)}}{e^{x}}} \]
            12. sub-negN/A

              \[\leadsto \frac{-1}{\frac{\color{blue}{1 - e^{x}}}{e^{x}}} \]
            13. div-subN/A

              \[\leadsto \frac{-1}{\color{blue}{\frac{1}{e^{x}} - \frac{e^{x}}{e^{x}}}} \]
            14. *-inversesN/A

              \[\leadsto \frac{-1}{\frac{1}{e^{x}} - \color{blue}{1}} \]
            15. lift-exp.f64N/A

              \[\leadsto \frac{-1}{\frac{1}{\color{blue}{e^{x}}} - 1} \]
            16. rec-expN/A

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

              \[\leadsto \frac{-1}{\color{blue}{\mathsf{expm1}\left(\mathsf{neg}\left(x\right)\right)}} \]
            18. lower-neg.f64100.0

              \[\leadsto \frac{-1}{\mathsf{expm1}\left(\color{blue}{-x}\right)} \]
          4. Applied rewrites100.0%

            \[\leadsto \color{blue}{\frac{-1}{\mathsf{expm1}\left(-x\right)}} \]
          5. Add Preprocessing

          Alternative 5: 67.0% accurate, 2.1× speedup?

          \[\begin{array}{l} \\ {x}^{-1} \end{array} \]
          (FPCore (x) :precision binary64 (pow x -1.0))
          double code(double x) {
          	return pow(x, -1.0);
          }
          
          real(8) function code(x)
              real(8), intent (in) :: x
              code = x ** (-1.0d0)
          end function
          
          public static double code(double x) {
          	return Math.pow(x, -1.0);
          }
          
          def code(x):
          	return math.pow(x, -1.0)
          
          function code(x)
          	return x ^ -1.0
          end
          
          function tmp = code(x)
          	tmp = x ^ -1.0;
          end
          
          code[x_] := N[Power[x, -1.0], $MachinePrecision]
          
          \begin{array}{l}
          
          \\
          {x}^{-1}
          \end{array}
          
          Derivation
          1. Initial program 35.9%

            \[\frac{e^{x}}{e^{x} - 1} \]
          2. Add Preprocessing
          3. Taylor expanded in x around 0

            \[\leadsto \color{blue}{\frac{1}{x}} \]
          4. Step-by-step derivation
            1. lower-/.f6468.6

              \[\leadsto \color{blue}{\frac{1}{x}} \]
          5. Applied rewrites68.6%

            \[\leadsto \color{blue}{\frac{1}{x}} \]
          6. Final simplification68.6%

            \[\leadsto {x}^{-1} \]
          7. Add Preprocessing

          Alternative 6: 91.3% accurate, 6.1× speedup?

          \[\begin{array}{l} \\ \frac{-1}{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.041666666666666664, x, -0.16666666666666666\right), x, 0.5\right), x, -1\right) \cdot x} \end{array} \]
          (FPCore (x)
           :precision binary64
           (/
            -1.0
            (*
             (fma (fma (fma 0.041666666666666664 x -0.16666666666666666) x 0.5) x -1.0)
             x)))
          double code(double x) {
          	return -1.0 / (fma(fma(fma(0.041666666666666664, x, -0.16666666666666666), x, 0.5), x, -1.0) * x);
          }
          
          function code(x)
          	return Float64(-1.0 / Float64(fma(fma(fma(0.041666666666666664, x, -0.16666666666666666), x, 0.5), x, -1.0) * x))
          end
          
          code[x_] := N[(-1.0 / N[(N[(N[(N[(0.041666666666666664 * x + -0.16666666666666666), $MachinePrecision] * x + 0.5), $MachinePrecision] * x + -1.0), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision]
          
          \begin{array}{l}
          
          \\
          \frac{-1}{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.041666666666666664, x, -0.16666666666666666\right), x, 0.5\right), x, -1\right) \cdot x}
          \end{array}
          
          Derivation
          1. Initial program 35.9%

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

              \[\leadsto \color{blue}{\frac{e^{x}}{e^{x} - 1}} \]
            2. clear-numN/A

              \[\leadsto \color{blue}{\frac{1}{\frac{e^{x} - 1}{e^{x}}}} \]
            3. frac-2negN/A

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

              \[\leadsto \color{blue}{\frac{\mathsf{neg}\left(1\right)}{\mathsf{neg}\left(\frac{e^{x} - 1}{e^{x}}\right)}} \]
            5. metadata-evalN/A

              \[\leadsto \frac{\color{blue}{-1}}{\mathsf{neg}\left(\frac{e^{x} - 1}{e^{x}}\right)} \]
            6. distribute-neg-fracN/A

              \[\leadsto \frac{-1}{\color{blue}{\frac{\mathsf{neg}\left(\left(e^{x} - 1\right)\right)}{e^{x}}}} \]
            7. neg-sub0N/A

              \[\leadsto \frac{-1}{\frac{\color{blue}{0 - \left(e^{x} - 1\right)}}{e^{x}}} \]
            8. lift--.f64N/A

              \[\leadsto \frac{-1}{\frac{0 - \color{blue}{\left(e^{x} - 1\right)}}{e^{x}}} \]
            9. associate-+l-N/A

              \[\leadsto \frac{-1}{\frac{\color{blue}{\left(0 - e^{x}\right) + 1}}{e^{x}}} \]
            10. neg-sub0N/A

              \[\leadsto \frac{-1}{\frac{\color{blue}{\left(\mathsf{neg}\left(e^{x}\right)\right)} + 1}{e^{x}}} \]
            11. +-commutativeN/A

              \[\leadsto \frac{-1}{\frac{\color{blue}{1 + \left(\mathsf{neg}\left(e^{x}\right)\right)}}{e^{x}}} \]
            12. sub-negN/A

              \[\leadsto \frac{-1}{\frac{\color{blue}{1 - e^{x}}}{e^{x}}} \]
            13. div-subN/A

              \[\leadsto \frac{-1}{\color{blue}{\frac{1}{e^{x}} - \frac{e^{x}}{e^{x}}}} \]
            14. *-inversesN/A

              \[\leadsto \frac{-1}{\frac{1}{e^{x}} - \color{blue}{1}} \]
            15. lift-exp.f64N/A

              \[\leadsto \frac{-1}{\frac{1}{\color{blue}{e^{x}}} - 1} \]
            16. rec-expN/A

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

              \[\leadsto \frac{-1}{\color{blue}{\mathsf{expm1}\left(\mathsf{neg}\left(x\right)\right)}} \]
            18. lower-neg.f64100.0

              \[\leadsto \frac{-1}{\mathsf{expm1}\left(\color{blue}{-x}\right)} \]
          4. Applied rewrites100.0%

            \[\leadsto \color{blue}{\frac{-1}{\mathsf{expm1}\left(-x\right)}} \]
          5. Taylor expanded in x around 0

            \[\leadsto \frac{-1}{\color{blue}{x \cdot \left(x \cdot \left(\frac{1}{2} + x \cdot \left(\frac{1}{24} \cdot x - \frac{1}{6}\right)\right) - 1\right)}} \]
          6. Step-by-step derivation
            1. *-commutativeN/A

              \[\leadsto \frac{-1}{\color{blue}{\left(x \cdot \left(\frac{1}{2} + x \cdot \left(\frac{1}{24} \cdot x - \frac{1}{6}\right)\right) - 1\right) \cdot x}} \]
            2. lower-*.f64N/A

              \[\leadsto \frac{-1}{\color{blue}{\left(x \cdot \left(\frac{1}{2} + x \cdot \left(\frac{1}{24} \cdot x - \frac{1}{6}\right)\right) - 1\right) \cdot x}} \]
            3. sub-negN/A

              \[\leadsto \frac{-1}{\color{blue}{\left(x \cdot \left(\frac{1}{2} + x \cdot \left(\frac{1}{24} \cdot x - \frac{1}{6}\right)\right) + \left(\mathsf{neg}\left(1\right)\right)\right)} \cdot x} \]
            4. metadata-evalN/A

              \[\leadsto \frac{-1}{\left(x \cdot \left(\frac{1}{2} + x \cdot \left(\frac{1}{24} \cdot x - \frac{1}{6}\right)\right) + \color{blue}{-1}\right) \cdot x} \]
            5. *-commutativeN/A

              \[\leadsto \frac{-1}{\left(\color{blue}{\left(\frac{1}{2} + x \cdot \left(\frac{1}{24} \cdot x - \frac{1}{6}\right)\right) \cdot x} + -1\right) \cdot x} \]
            6. lower-fma.f64N/A

              \[\leadsto \frac{-1}{\color{blue}{\mathsf{fma}\left(\frac{1}{2} + x \cdot \left(\frac{1}{24} \cdot x - \frac{1}{6}\right), x, -1\right)} \cdot x} \]
            7. +-commutativeN/A

              \[\leadsto \frac{-1}{\mathsf{fma}\left(\color{blue}{x \cdot \left(\frac{1}{24} \cdot x - \frac{1}{6}\right) + \frac{1}{2}}, x, -1\right) \cdot x} \]
            8. *-commutativeN/A

              \[\leadsto \frac{-1}{\mathsf{fma}\left(\color{blue}{\left(\frac{1}{24} \cdot x - \frac{1}{6}\right) \cdot x} + \frac{1}{2}, x, -1\right) \cdot x} \]
            9. lower-fma.f64N/A

              \[\leadsto \frac{-1}{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{1}{24} \cdot x - \frac{1}{6}, x, \frac{1}{2}\right)}, x, -1\right) \cdot x} \]
            10. sub-negN/A

              \[\leadsto \frac{-1}{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{\frac{1}{24} \cdot x + \left(\mathsf{neg}\left(\frac{1}{6}\right)\right)}, x, \frac{1}{2}\right), x, -1\right) \cdot x} \]
            11. metadata-evalN/A

              \[\leadsto \frac{-1}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{1}{24} \cdot x + \color{blue}{\frac{-1}{6}}, x, \frac{1}{2}\right), x, -1\right) \cdot x} \]
            12. lower-fma.f6493.2

              \[\leadsto \frac{-1}{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(0.041666666666666664, x, -0.16666666666666666\right)}, x, 0.5\right), x, -1\right) \cdot x} \]
          7. Applied rewrites93.2%

            \[\leadsto \frac{-1}{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.041666666666666664, x, -0.16666666666666666\right), x, 0.5\right), x, -1\right) \cdot x}} \]
          8. Add Preprocessing

          Alternative 7: 88.8% accurate, 6.9× speedup?

          \[\begin{array}{l} \\ \frac{-1}{\mathsf{fma}\left(\mathsf{fma}\left(-0.16666666666666666, x, 0.5\right) \cdot x, x, -x\right)} \end{array} \]
          (FPCore (x)
           :precision binary64
           (/ -1.0 (fma (* (fma -0.16666666666666666 x 0.5) x) x (- x))))
          double code(double x) {
          	return -1.0 / fma((fma(-0.16666666666666666, x, 0.5) * x), x, -x);
          }
          
          function code(x)
          	return Float64(-1.0 / fma(Float64(fma(-0.16666666666666666, x, 0.5) * x), x, Float64(-x)))
          end
          
          code[x_] := N[(-1.0 / N[(N[(N[(-0.16666666666666666 * x + 0.5), $MachinePrecision] * x), $MachinePrecision] * x + (-x)), $MachinePrecision]), $MachinePrecision]
          
          \begin{array}{l}
          
          \\
          \frac{-1}{\mathsf{fma}\left(\mathsf{fma}\left(-0.16666666666666666, x, 0.5\right) \cdot x, x, -x\right)}
          \end{array}
          
          Derivation
          1. Initial program 35.9%

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

              \[\leadsto \color{blue}{\frac{e^{x}}{e^{x} - 1}} \]
            2. clear-numN/A

              \[\leadsto \color{blue}{\frac{1}{\frac{e^{x} - 1}{e^{x}}}} \]
            3. frac-2negN/A

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

              \[\leadsto \color{blue}{\frac{\mathsf{neg}\left(1\right)}{\mathsf{neg}\left(\frac{e^{x} - 1}{e^{x}}\right)}} \]
            5. metadata-evalN/A

              \[\leadsto \frac{\color{blue}{-1}}{\mathsf{neg}\left(\frac{e^{x} - 1}{e^{x}}\right)} \]
            6. distribute-neg-fracN/A

              \[\leadsto \frac{-1}{\color{blue}{\frac{\mathsf{neg}\left(\left(e^{x} - 1\right)\right)}{e^{x}}}} \]
            7. neg-sub0N/A

              \[\leadsto \frac{-1}{\frac{\color{blue}{0 - \left(e^{x} - 1\right)}}{e^{x}}} \]
            8. lift--.f64N/A

              \[\leadsto \frac{-1}{\frac{0 - \color{blue}{\left(e^{x} - 1\right)}}{e^{x}}} \]
            9. associate-+l-N/A

              \[\leadsto \frac{-1}{\frac{\color{blue}{\left(0 - e^{x}\right) + 1}}{e^{x}}} \]
            10. neg-sub0N/A

              \[\leadsto \frac{-1}{\frac{\color{blue}{\left(\mathsf{neg}\left(e^{x}\right)\right)} + 1}{e^{x}}} \]
            11. +-commutativeN/A

              \[\leadsto \frac{-1}{\frac{\color{blue}{1 + \left(\mathsf{neg}\left(e^{x}\right)\right)}}{e^{x}}} \]
            12. sub-negN/A

              \[\leadsto \frac{-1}{\frac{\color{blue}{1 - e^{x}}}{e^{x}}} \]
            13. div-subN/A

              \[\leadsto \frac{-1}{\color{blue}{\frac{1}{e^{x}} - \frac{e^{x}}{e^{x}}}} \]
            14. *-inversesN/A

              \[\leadsto \frac{-1}{\frac{1}{e^{x}} - \color{blue}{1}} \]
            15. lift-exp.f64N/A

              \[\leadsto \frac{-1}{\frac{1}{\color{blue}{e^{x}}} - 1} \]
            16. rec-expN/A

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

              \[\leadsto \frac{-1}{\color{blue}{\mathsf{expm1}\left(\mathsf{neg}\left(x\right)\right)}} \]
            18. lower-neg.f64100.0

              \[\leadsto \frac{-1}{\mathsf{expm1}\left(\color{blue}{-x}\right)} \]
          4. Applied rewrites100.0%

            \[\leadsto \color{blue}{\frac{-1}{\mathsf{expm1}\left(-x\right)}} \]
          5. Taylor expanded in x around 0

            \[\leadsto \frac{-1}{\color{blue}{x \cdot \left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) - 1\right)}} \]
          6. Step-by-step derivation
            1. *-commutativeN/A

              \[\leadsto \frac{-1}{\color{blue}{\left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) - 1\right) \cdot x}} \]
            2. lower-*.f64N/A

              \[\leadsto \frac{-1}{\color{blue}{\left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) - 1\right) \cdot x}} \]
            3. sub-negN/A

              \[\leadsto \frac{-1}{\color{blue}{\left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) + \left(\mathsf{neg}\left(1\right)\right)\right)} \cdot x} \]
            4. metadata-evalN/A

              \[\leadsto \frac{-1}{\left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) + \color{blue}{-1}\right) \cdot x} \]
            5. *-commutativeN/A

              \[\leadsto \frac{-1}{\left(\color{blue}{\left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) \cdot x} + -1\right) \cdot x} \]
            6. lower-fma.f64N/A

              \[\leadsto \frac{-1}{\color{blue}{\mathsf{fma}\left(\frac{1}{2} + \frac{-1}{6} \cdot x, x, -1\right)} \cdot x} \]
            7. +-commutativeN/A

              \[\leadsto \frac{-1}{\mathsf{fma}\left(\color{blue}{\frac{-1}{6} \cdot x + \frac{1}{2}}, x, -1\right) \cdot x} \]
            8. lower-fma.f6491.6

              \[\leadsto \frac{-1}{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(-0.16666666666666666, x, 0.5\right)}, x, -1\right) \cdot x} \]
          7. Applied rewrites91.6%

            \[\leadsto \frac{-1}{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(-0.16666666666666666, x, 0.5\right), x, -1\right) \cdot x}} \]
          8. Step-by-step derivation
            1. Applied rewrites91.6%

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

            Alternative 8: 88.8% accurate, 7.4× speedup?

            \[\begin{array}{l} \\ \frac{-1}{\mathsf{fma}\left(\mathsf{fma}\left(-0.16666666666666666, x, 0.5\right), x, -1\right) \cdot x} \end{array} \]
            (FPCore (x)
             :precision binary64
             (/ -1.0 (* (fma (fma -0.16666666666666666 x 0.5) x -1.0) x)))
            double code(double x) {
            	return -1.0 / (fma(fma(-0.16666666666666666, x, 0.5), x, -1.0) * x);
            }
            
            function code(x)
            	return Float64(-1.0 / Float64(fma(fma(-0.16666666666666666, x, 0.5), x, -1.0) * x))
            end
            
            code[x_] := N[(-1.0 / N[(N[(N[(-0.16666666666666666 * x + 0.5), $MachinePrecision] * x + -1.0), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision]
            
            \begin{array}{l}
            
            \\
            \frac{-1}{\mathsf{fma}\left(\mathsf{fma}\left(-0.16666666666666666, x, 0.5\right), x, -1\right) \cdot x}
            \end{array}
            
            Derivation
            1. Initial program 35.9%

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

                \[\leadsto \color{blue}{\frac{e^{x}}{e^{x} - 1}} \]
              2. clear-numN/A

                \[\leadsto \color{blue}{\frac{1}{\frac{e^{x} - 1}{e^{x}}}} \]
              3. frac-2negN/A

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

                \[\leadsto \color{blue}{\frac{\mathsf{neg}\left(1\right)}{\mathsf{neg}\left(\frac{e^{x} - 1}{e^{x}}\right)}} \]
              5. metadata-evalN/A

                \[\leadsto \frac{\color{blue}{-1}}{\mathsf{neg}\left(\frac{e^{x} - 1}{e^{x}}\right)} \]
              6. distribute-neg-fracN/A

                \[\leadsto \frac{-1}{\color{blue}{\frac{\mathsf{neg}\left(\left(e^{x} - 1\right)\right)}{e^{x}}}} \]
              7. neg-sub0N/A

                \[\leadsto \frac{-1}{\frac{\color{blue}{0 - \left(e^{x} - 1\right)}}{e^{x}}} \]
              8. lift--.f64N/A

                \[\leadsto \frac{-1}{\frac{0 - \color{blue}{\left(e^{x} - 1\right)}}{e^{x}}} \]
              9. associate-+l-N/A

                \[\leadsto \frac{-1}{\frac{\color{blue}{\left(0 - e^{x}\right) + 1}}{e^{x}}} \]
              10. neg-sub0N/A

                \[\leadsto \frac{-1}{\frac{\color{blue}{\left(\mathsf{neg}\left(e^{x}\right)\right)} + 1}{e^{x}}} \]
              11. +-commutativeN/A

                \[\leadsto \frac{-1}{\frac{\color{blue}{1 + \left(\mathsf{neg}\left(e^{x}\right)\right)}}{e^{x}}} \]
              12. sub-negN/A

                \[\leadsto \frac{-1}{\frac{\color{blue}{1 - e^{x}}}{e^{x}}} \]
              13. div-subN/A

                \[\leadsto \frac{-1}{\color{blue}{\frac{1}{e^{x}} - \frac{e^{x}}{e^{x}}}} \]
              14. *-inversesN/A

                \[\leadsto \frac{-1}{\frac{1}{e^{x}} - \color{blue}{1}} \]
              15. lift-exp.f64N/A

                \[\leadsto \frac{-1}{\frac{1}{\color{blue}{e^{x}}} - 1} \]
              16. rec-expN/A

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

                \[\leadsto \frac{-1}{\color{blue}{\mathsf{expm1}\left(\mathsf{neg}\left(x\right)\right)}} \]
              18. lower-neg.f64100.0

                \[\leadsto \frac{-1}{\mathsf{expm1}\left(\color{blue}{-x}\right)} \]
            4. Applied rewrites100.0%

              \[\leadsto \color{blue}{\frac{-1}{\mathsf{expm1}\left(-x\right)}} \]
            5. Taylor expanded in x around 0

              \[\leadsto \frac{-1}{\color{blue}{x \cdot \left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) - 1\right)}} \]
            6. Step-by-step derivation
              1. *-commutativeN/A

                \[\leadsto \frac{-1}{\color{blue}{\left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) - 1\right) \cdot x}} \]
              2. lower-*.f64N/A

                \[\leadsto \frac{-1}{\color{blue}{\left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) - 1\right) \cdot x}} \]
              3. sub-negN/A

                \[\leadsto \frac{-1}{\color{blue}{\left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) + \left(\mathsf{neg}\left(1\right)\right)\right)} \cdot x} \]
              4. metadata-evalN/A

                \[\leadsto \frac{-1}{\left(x \cdot \left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) + \color{blue}{-1}\right) \cdot x} \]
              5. *-commutativeN/A

                \[\leadsto \frac{-1}{\left(\color{blue}{\left(\frac{1}{2} + \frac{-1}{6} \cdot x\right) \cdot x} + -1\right) \cdot x} \]
              6. lower-fma.f64N/A

                \[\leadsto \frac{-1}{\color{blue}{\mathsf{fma}\left(\frac{1}{2} + \frac{-1}{6} \cdot x, x, -1\right)} \cdot x} \]
              7. +-commutativeN/A

                \[\leadsto \frac{-1}{\mathsf{fma}\left(\color{blue}{\frac{-1}{6} \cdot x + \frac{1}{2}}, x, -1\right) \cdot x} \]
              8. lower-fma.f6491.6

                \[\leadsto \frac{-1}{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(-0.16666666666666666, x, 0.5\right)}, x, -1\right) \cdot x} \]
            7. Applied rewrites91.6%

              \[\leadsto \frac{-1}{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(-0.16666666666666666, x, 0.5\right), x, -1\right) \cdot x}} \]
            8. Add Preprocessing

            Alternative 9: 83.2% accurate, 7.7× speedup?

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

              1. Initial program 100.0%

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

                  \[\leadsto \color{blue}{\frac{e^{x}}{e^{x} - 1}} \]
                2. clear-numN/A

                  \[\leadsto \color{blue}{\frac{1}{\frac{e^{x} - 1}{e^{x}}}} \]
                3. frac-2negN/A

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

                  \[\leadsto \color{blue}{\frac{\mathsf{neg}\left(1\right)}{\mathsf{neg}\left(\frac{e^{x} - 1}{e^{x}}\right)}} \]
                5. metadata-evalN/A

                  \[\leadsto \frac{\color{blue}{-1}}{\mathsf{neg}\left(\frac{e^{x} - 1}{e^{x}}\right)} \]
                6. distribute-neg-fracN/A

                  \[\leadsto \frac{-1}{\color{blue}{\frac{\mathsf{neg}\left(\left(e^{x} - 1\right)\right)}{e^{x}}}} \]
                7. neg-sub0N/A

                  \[\leadsto \frac{-1}{\frac{\color{blue}{0 - \left(e^{x} - 1\right)}}{e^{x}}} \]
                8. lift--.f64N/A

                  \[\leadsto \frac{-1}{\frac{0 - \color{blue}{\left(e^{x} - 1\right)}}{e^{x}}} \]
                9. associate-+l-N/A

                  \[\leadsto \frac{-1}{\frac{\color{blue}{\left(0 - e^{x}\right) + 1}}{e^{x}}} \]
                10. neg-sub0N/A

                  \[\leadsto \frac{-1}{\frac{\color{blue}{\left(\mathsf{neg}\left(e^{x}\right)\right)} + 1}{e^{x}}} \]
                11. +-commutativeN/A

                  \[\leadsto \frac{-1}{\frac{\color{blue}{1 + \left(\mathsf{neg}\left(e^{x}\right)\right)}}{e^{x}}} \]
                12. sub-negN/A

                  \[\leadsto \frac{-1}{\frac{\color{blue}{1 - e^{x}}}{e^{x}}} \]
                13. div-subN/A

                  \[\leadsto \frac{-1}{\color{blue}{\frac{1}{e^{x}} - \frac{e^{x}}{e^{x}}}} \]
                14. *-inversesN/A

                  \[\leadsto \frac{-1}{\frac{1}{e^{x}} - \color{blue}{1}} \]
                15. lift-exp.f64N/A

                  \[\leadsto \frac{-1}{\frac{1}{\color{blue}{e^{x}}} - 1} \]
                16. rec-expN/A

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

                  \[\leadsto \frac{-1}{\color{blue}{\mathsf{expm1}\left(\mathsf{neg}\left(x\right)\right)}} \]
                18. lower-neg.f64100.0

                  \[\leadsto \frac{-1}{\mathsf{expm1}\left(\color{blue}{-x}\right)} \]
              4. Applied rewrites100.0%

                \[\leadsto \color{blue}{\frac{-1}{\mathsf{expm1}\left(-x\right)}} \]
              5. Taylor expanded in x around 0

                \[\leadsto \frac{-1}{\color{blue}{x \cdot \left(\frac{1}{2} \cdot x - 1\right)}} \]
              6. Step-by-step derivation
                1. *-commutativeN/A

                  \[\leadsto \frac{-1}{\color{blue}{\left(\frac{1}{2} \cdot x - 1\right) \cdot x}} \]
                2. lower-*.f64N/A

                  \[\leadsto \frac{-1}{\color{blue}{\left(\frac{1}{2} \cdot x - 1\right) \cdot x}} \]
                3. sub-negN/A

                  \[\leadsto \frac{-1}{\color{blue}{\left(\frac{1}{2} \cdot x + \left(\mathsf{neg}\left(1\right)\right)\right)} \cdot x} \]
                4. metadata-evalN/A

                  \[\leadsto \frac{-1}{\left(\frac{1}{2} \cdot x + \color{blue}{-1}\right) \cdot x} \]
                5. lower-fma.f6452.6

                  \[\leadsto \frac{-1}{\color{blue}{\mathsf{fma}\left(0.5, x, -1\right)} \cdot x} \]
              7. Applied rewrites52.6%

                \[\leadsto \frac{-1}{\color{blue}{\mathsf{fma}\left(0.5, x, -1\right) \cdot x}} \]
              8. Taylor expanded in x around inf

                \[\leadsto \frac{-1}{\left(\frac{1}{2} \cdot x\right) \cdot x} \]
              9. Step-by-step derivation
                1. Applied rewrites52.6%

                  \[\leadsto \frac{-1}{\left(0.5 \cdot x\right) \cdot x} \]

                if -4.5 < x

                1. Initial program 7.4%

                  \[\frac{e^{x}}{e^{x} - 1} \]
                2. Add Preprocessing
                3. Taylor expanded in x around 0

                  \[\leadsto \color{blue}{\frac{1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)}{x}} \]
                4. Step-by-step derivation
                  1. *-lft-identityN/A

                    \[\leadsto \color{blue}{1 \cdot \frac{1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)}{x}} \]
                  2. associate-/l*N/A

                    \[\leadsto \color{blue}{\frac{1 \cdot \left(1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)\right)}{x}} \]
                  3. associate-*l/N/A

                    \[\leadsto \color{blue}{\frac{1}{x} \cdot \left(1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)\right)} \]
                  4. distribute-lft-inN/A

                    \[\leadsto \frac{1}{x} \cdot \left(1 + \color{blue}{\left(x \cdot \frac{1}{2} + x \cdot \left(\frac{1}{12} \cdot x\right)\right)}\right) \]
                  5. *-commutativeN/A

                    \[\leadsto \frac{1}{x} \cdot \left(1 + \left(\color{blue}{\frac{1}{2} \cdot x} + x \cdot \left(\frac{1}{12} \cdot x\right)\right)\right) \]
                  6. associate-+r+N/A

                    \[\leadsto \frac{1}{x} \cdot \color{blue}{\left(\left(1 + \frac{1}{2} \cdot x\right) + x \cdot \left(\frac{1}{12} \cdot x\right)\right)} \]
                  7. distribute-rgt-inN/A

                    \[\leadsto \color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right) \cdot \frac{1}{x}} \]
                  8. associate-/l*N/A

                    \[\leadsto \color{blue}{\frac{\left(1 + \frac{1}{2} \cdot x\right) \cdot 1}{x}} + \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right) \cdot \frac{1}{x} \]
                  9. *-rgt-identityN/A

                    \[\leadsto \frac{\color{blue}{1 + \frac{1}{2} \cdot x}}{x} + \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right) \cdot \frac{1}{x} \]
                  10. *-commutativeN/A

                    \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{\frac{1}{x} \cdot \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right)} \]
                  11. associate-*r*N/A

                    \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{\left(\frac{1}{x} \cdot x\right) \cdot \left(\frac{1}{12} \cdot x\right)} \]
                  12. lft-mult-inverseN/A

                    \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{1} \cdot \left(\frac{1}{12} \cdot x\right) \]
                  13. *-lft-identityN/A

                    \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{\frac{1}{12} \cdot x} \]
                  14. +-commutativeN/A

                    \[\leadsto \color{blue}{\frac{1}{12} \cdot x + \frac{1 + \frac{1}{2} \cdot x}{x}} \]
                  15. lower-fma.f64N/A

                    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{12}, x, \frac{1 + \frac{1}{2} \cdot x}{x}\right)} \]
                  16. *-rgt-identityN/A

                    \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \frac{\color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot 1}}{x}\right) \]
                  17. associate-/l*N/A

                    \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot \frac{1}{x}}\right) \]
                  18. +-commutativeN/A

                    \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(\frac{1}{2} \cdot x + 1\right)} \cdot \frac{1}{x}\right) \]
                  19. distribute-lft1-inN/A

                    \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(\frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \frac{1}{x}}\right) \]
                  20. lower-+.f64N/A

                    \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(\frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \frac{1}{x}}\right) \]
                5. Applied rewrites98.3%

                  \[\leadsto \color{blue}{\mathsf{fma}\left(0.08333333333333333, x, 0.5 + \frac{1}{x}\right)} \]
                6. Step-by-step derivation
                  1. Applied rewrites98.3%

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

                Alternative 10: 82.8% accurate, 9.3× speedup?

                \[\begin{array}{l} \\ \frac{-1}{\mathsf{fma}\left(0.5, x, -1\right) \cdot x} \end{array} \]
                (FPCore (x) :precision binary64 (/ -1.0 (* (fma 0.5 x -1.0) x)))
                double code(double x) {
                	return -1.0 / (fma(0.5, x, -1.0) * x);
                }
                
                function code(x)
                	return Float64(-1.0 / Float64(fma(0.5, x, -1.0) * x))
                end
                
                code[x_] := N[(-1.0 / N[(N[(0.5 * x + -1.0), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision]
                
                \begin{array}{l}
                
                \\
                \frac{-1}{\mathsf{fma}\left(0.5, x, -1\right) \cdot x}
                \end{array}
                
                Derivation
                1. Initial program 35.9%

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

                    \[\leadsto \color{blue}{\frac{e^{x}}{e^{x} - 1}} \]
                  2. clear-numN/A

                    \[\leadsto \color{blue}{\frac{1}{\frac{e^{x} - 1}{e^{x}}}} \]
                  3. frac-2negN/A

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

                    \[\leadsto \color{blue}{\frac{\mathsf{neg}\left(1\right)}{\mathsf{neg}\left(\frac{e^{x} - 1}{e^{x}}\right)}} \]
                  5. metadata-evalN/A

                    \[\leadsto \frac{\color{blue}{-1}}{\mathsf{neg}\left(\frac{e^{x} - 1}{e^{x}}\right)} \]
                  6. distribute-neg-fracN/A

                    \[\leadsto \frac{-1}{\color{blue}{\frac{\mathsf{neg}\left(\left(e^{x} - 1\right)\right)}{e^{x}}}} \]
                  7. neg-sub0N/A

                    \[\leadsto \frac{-1}{\frac{\color{blue}{0 - \left(e^{x} - 1\right)}}{e^{x}}} \]
                  8. lift--.f64N/A

                    \[\leadsto \frac{-1}{\frac{0 - \color{blue}{\left(e^{x} - 1\right)}}{e^{x}}} \]
                  9. associate-+l-N/A

                    \[\leadsto \frac{-1}{\frac{\color{blue}{\left(0 - e^{x}\right) + 1}}{e^{x}}} \]
                  10. neg-sub0N/A

                    \[\leadsto \frac{-1}{\frac{\color{blue}{\left(\mathsf{neg}\left(e^{x}\right)\right)} + 1}{e^{x}}} \]
                  11. +-commutativeN/A

                    \[\leadsto \frac{-1}{\frac{\color{blue}{1 + \left(\mathsf{neg}\left(e^{x}\right)\right)}}{e^{x}}} \]
                  12. sub-negN/A

                    \[\leadsto \frac{-1}{\frac{\color{blue}{1 - e^{x}}}{e^{x}}} \]
                  13. div-subN/A

                    \[\leadsto \frac{-1}{\color{blue}{\frac{1}{e^{x}} - \frac{e^{x}}{e^{x}}}} \]
                  14. *-inversesN/A

                    \[\leadsto \frac{-1}{\frac{1}{e^{x}} - \color{blue}{1}} \]
                  15. lift-exp.f64N/A

                    \[\leadsto \frac{-1}{\frac{1}{\color{blue}{e^{x}}} - 1} \]
                  16. rec-expN/A

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

                    \[\leadsto \frac{-1}{\color{blue}{\mathsf{expm1}\left(\mathsf{neg}\left(x\right)\right)}} \]
                  18. lower-neg.f64100.0

                    \[\leadsto \frac{-1}{\mathsf{expm1}\left(\color{blue}{-x}\right)} \]
                4. Applied rewrites100.0%

                  \[\leadsto \color{blue}{\frac{-1}{\mathsf{expm1}\left(-x\right)}} \]
                5. Taylor expanded in x around 0

                  \[\leadsto \frac{-1}{\color{blue}{x \cdot \left(\frac{1}{2} \cdot x - 1\right)}} \]
                6. Step-by-step derivation
                  1. *-commutativeN/A

                    \[\leadsto \frac{-1}{\color{blue}{\left(\frac{1}{2} \cdot x - 1\right) \cdot x}} \]
                  2. lower-*.f64N/A

                    \[\leadsto \frac{-1}{\color{blue}{\left(\frac{1}{2} \cdot x - 1\right) \cdot x}} \]
                  3. sub-negN/A

                    \[\leadsto \frac{-1}{\color{blue}{\left(\frac{1}{2} \cdot x + \left(\mathsf{neg}\left(1\right)\right)\right)} \cdot x} \]
                  4. metadata-evalN/A

                    \[\leadsto \frac{-1}{\left(\frac{1}{2} \cdot x + \color{blue}{-1}\right) \cdot x} \]
                  5. lower-fma.f6483.8

                    \[\leadsto \frac{-1}{\color{blue}{\mathsf{fma}\left(0.5, x, -1\right)} \cdot x} \]
                7. Applied rewrites83.8%

                  \[\leadsto \frac{-1}{\color{blue}{\mathsf{fma}\left(0.5, x, -1\right) \cdot x}} \]
                8. Add Preprocessing

                Alternative 11: 67.1% accurate, 10.2× speedup?

                \[\begin{array}{l} \\ \mathsf{fma}\left(0.08333333333333333, x, 0.5\right) - \frac{-1}{x} \end{array} \]
                (FPCore (x) :precision binary64 (- (fma 0.08333333333333333 x 0.5) (/ -1.0 x)))
                double code(double x) {
                	return fma(0.08333333333333333, x, 0.5) - (-1.0 / x);
                }
                
                function code(x)
                	return Float64(fma(0.08333333333333333, x, 0.5) - Float64(-1.0 / x))
                end
                
                code[x_] := N[(N[(0.08333333333333333 * x + 0.5), $MachinePrecision] - N[(-1.0 / x), $MachinePrecision]), $MachinePrecision]
                
                \begin{array}{l}
                
                \\
                \mathsf{fma}\left(0.08333333333333333, x, 0.5\right) - \frac{-1}{x}
                \end{array}
                
                Derivation
                1. Initial program 35.9%

                  \[\frac{e^{x}}{e^{x} - 1} \]
                2. Add Preprocessing
                3. Taylor expanded in x around 0

                  \[\leadsto \color{blue}{\frac{1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)}{x}} \]
                4. Step-by-step derivation
                  1. *-lft-identityN/A

                    \[\leadsto \color{blue}{1 \cdot \frac{1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)}{x}} \]
                  2. associate-/l*N/A

                    \[\leadsto \color{blue}{\frac{1 \cdot \left(1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)\right)}{x}} \]
                  3. associate-*l/N/A

                    \[\leadsto \color{blue}{\frac{1}{x} \cdot \left(1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)\right)} \]
                  4. distribute-lft-inN/A

                    \[\leadsto \frac{1}{x} \cdot \left(1 + \color{blue}{\left(x \cdot \frac{1}{2} + x \cdot \left(\frac{1}{12} \cdot x\right)\right)}\right) \]
                  5. *-commutativeN/A

                    \[\leadsto \frac{1}{x} \cdot \left(1 + \left(\color{blue}{\frac{1}{2} \cdot x} + x \cdot \left(\frac{1}{12} \cdot x\right)\right)\right) \]
                  6. associate-+r+N/A

                    \[\leadsto \frac{1}{x} \cdot \color{blue}{\left(\left(1 + \frac{1}{2} \cdot x\right) + x \cdot \left(\frac{1}{12} \cdot x\right)\right)} \]
                  7. distribute-rgt-inN/A

                    \[\leadsto \color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right) \cdot \frac{1}{x}} \]
                  8. associate-/l*N/A

                    \[\leadsto \color{blue}{\frac{\left(1 + \frac{1}{2} \cdot x\right) \cdot 1}{x}} + \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right) \cdot \frac{1}{x} \]
                  9. *-rgt-identityN/A

                    \[\leadsto \frac{\color{blue}{1 + \frac{1}{2} \cdot x}}{x} + \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right) \cdot \frac{1}{x} \]
                  10. *-commutativeN/A

                    \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{\frac{1}{x} \cdot \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right)} \]
                  11. associate-*r*N/A

                    \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{\left(\frac{1}{x} \cdot x\right) \cdot \left(\frac{1}{12} \cdot x\right)} \]
                  12. lft-mult-inverseN/A

                    \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{1} \cdot \left(\frac{1}{12} \cdot x\right) \]
                  13. *-lft-identityN/A

                    \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{\frac{1}{12} \cdot x} \]
                  14. +-commutativeN/A

                    \[\leadsto \color{blue}{\frac{1}{12} \cdot x + \frac{1 + \frac{1}{2} \cdot x}{x}} \]
                  15. lower-fma.f64N/A

                    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{12}, x, \frac{1 + \frac{1}{2} \cdot x}{x}\right)} \]
                  16. *-rgt-identityN/A

                    \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \frac{\color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot 1}}{x}\right) \]
                  17. associate-/l*N/A

                    \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot \frac{1}{x}}\right) \]
                  18. +-commutativeN/A

                    \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(\frac{1}{2} \cdot x + 1\right)} \cdot \frac{1}{x}\right) \]
                  19. distribute-lft1-inN/A

                    \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(\frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \frac{1}{x}}\right) \]
                  20. lower-+.f64N/A

                    \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(\frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \frac{1}{x}}\right) \]
                5. Applied rewrites68.7%

                  \[\leadsto \color{blue}{\mathsf{fma}\left(0.08333333333333333, x, 0.5 + \frac{1}{x}\right)} \]
                6. Step-by-step derivation
                  1. Applied rewrites68.7%

                    \[\leadsto \mathsf{fma}\left(0.08333333333333333, x, 0.5\right) - \color{blue}{\frac{-1}{x}} \]
                  2. Add Preprocessing

                  Alternative 12: 3.4% accurate, 35.8× speedup?

                  \[\begin{array}{l} \\ 0.08333333333333333 \cdot x \end{array} \]
                  (FPCore (x) :precision binary64 (* 0.08333333333333333 x))
                  double code(double x) {
                  	return 0.08333333333333333 * x;
                  }
                  
                  real(8) function code(x)
                      real(8), intent (in) :: x
                      code = 0.08333333333333333d0 * x
                  end function
                  
                  public static double code(double x) {
                  	return 0.08333333333333333 * x;
                  }
                  
                  def code(x):
                  	return 0.08333333333333333 * x
                  
                  function code(x)
                  	return Float64(0.08333333333333333 * x)
                  end
                  
                  function tmp = code(x)
                  	tmp = 0.08333333333333333 * x;
                  end
                  
                  code[x_] := N[(0.08333333333333333 * x), $MachinePrecision]
                  
                  \begin{array}{l}
                  
                  \\
                  0.08333333333333333 \cdot x
                  \end{array}
                  
                  Derivation
                  1. Initial program 35.9%

                    \[\frac{e^{x}}{e^{x} - 1} \]
                  2. Add Preprocessing
                  3. Taylor expanded in x around 0

                    \[\leadsto \color{blue}{\frac{1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)}{x}} \]
                  4. Step-by-step derivation
                    1. *-lft-identityN/A

                      \[\leadsto \color{blue}{1 \cdot \frac{1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)}{x}} \]
                    2. associate-/l*N/A

                      \[\leadsto \color{blue}{\frac{1 \cdot \left(1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)\right)}{x}} \]
                    3. associate-*l/N/A

                      \[\leadsto \color{blue}{\frac{1}{x} \cdot \left(1 + x \cdot \left(\frac{1}{2} + \frac{1}{12} \cdot x\right)\right)} \]
                    4. distribute-lft-inN/A

                      \[\leadsto \frac{1}{x} \cdot \left(1 + \color{blue}{\left(x \cdot \frac{1}{2} + x \cdot \left(\frac{1}{12} \cdot x\right)\right)}\right) \]
                    5. *-commutativeN/A

                      \[\leadsto \frac{1}{x} \cdot \left(1 + \left(\color{blue}{\frac{1}{2} \cdot x} + x \cdot \left(\frac{1}{12} \cdot x\right)\right)\right) \]
                    6. associate-+r+N/A

                      \[\leadsto \frac{1}{x} \cdot \color{blue}{\left(\left(1 + \frac{1}{2} \cdot x\right) + x \cdot \left(\frac{1}{12} \cdot x\right)\right)} \]
                    7. distribute-rgt-inN/A

                      \[\leadsto \color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right) \cdot \frac{1}{x}} \]
                    8. associate-/l*N/A

                      \[\leadsto \color{blue}{\frac{\left(1 + \frac{1}{2} \cdot x\right) \cdot 1}{x}} + \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right) \cdot \frac{1}{x} \]
                    9. *-rgt-identityN/A

                      \[\leadsto \frac{\color{blue}{1 + \frac{1}{2} \cdot x}}{x} + \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right) \cdot \frac{1}{x} \]
                    10. *-commutativeN/A

                      \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{\frac{1}{x} \cdot \left(x \cdot \left(\frac{1}{12} \cdot x\right)\right)} \]
                    11. associate-*r*N/A

                      \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{\left(\frac{1}{x} \cdot x\right) \cdot \left(\frac{1}{12} \cdot x\right)} \]
                    12. lft-mult-inverseN/A

                      \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{1} \cdot \left(\frac{1}{12} \cdot x\right) \]
                    13. *-lft-identityN/A

                      \[\leadsto \frac{1 + \frac{1}{2} \cdot x}{x} + \color{blue}{\frac{1}{12} \cdot x} \]
                    14. +-commutativeN/A

                      \[\leadsto \color{blue}{\frac{1}{12} \cdot x + \frac{1 + \frac{1}{2} \cdot x}{x}} \]
                    15. lower-fma.f64N/A

                      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{12}, x, \frac{1 + \frac{1}{2} \cdot x}{x}\right)} \]
                    16. *-rgt-identityN/A

                      \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \frac{\color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot 1}}{x}\right) \]
                    17. associate-/l*N/A

                      \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot \frac{1}{x}}\right) \]
                    18. +-commutativeN/A

                      \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(\frac{1}{2} \cdot x + 1\right)} \cdot \frac{1}{x}\right) \]
                    19. distribute-lft1-inN/A

                      \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(\frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \frac{1}{x}}\right) \]
                    20. lower-+.f64N/A

                      \[\leadsto \mathsf{fma}\left(\frac{1}{12}, x, \color{blue}{\left(\frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \frac{1}{x}}\right) \]
                  5. Applied rewrites68.7%

                    \[\leadsto \color{blue}{\mathsf{fma}\left(0.08333333333333333, x, 0.5 + \frac{1}{x}\right)} \]
                  6. Taylor expanded in x around inf

                    \[\leadsto \frac{1}{12} \cdot \color{blue}{x} \]
                  7. Step-by-step derivation
                    1. Applied rewrites3.4%

                      \[\leadsto 0.08333333333333333 \cdot \color{blue}{x} \]
                    2. Add Preprocessing

                    Alternative 13: 3.2% accurate, 215.0× speedup?

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

                      \[\frac{e^{x}}{e^{x} - 1} \]
                    2. Add Preprocessing
                    3. Taylor expanded in x around 0

                      \[\leadsto \color{blue}{\frac{1 + \frac{1}{2} \cdot x}{x}} \]
                    4. Step-by-step derivation
                      1. *-rgt-identityN/A

                        \[\leadsto \frac{\color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot 1}}{x} \]
                      2. associate-/l*N/A

                        \[\leadsto \color{blue}{\left(1 + \frac{1}{2} \cdot x\right) \cdot \frac{1}{x}} \]
                      3. +-commutativeN/A

                        \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot x + 1\right)} \cdot \frac{1}{x} \]
                      4. distribute-lft1-inN/A

                        \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \frac{1}{x}} \]
                      5. lower-+.f64N/A

                        \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot x\right) \cdot \frac{1}{x} + \frac{1}{x}} \]
                      6. associate-*l*N/A

                        \[\leadsto \color{blue}{\frac{1}{2} \cdot \left(x \cdot \frac{1}{x}\right)} + \frac{1}{x} \]
                      7. rgt-mult-inverseN/A

                        \[\leadsto \frac{1}{2} \cdot \color{blue}{1} + \frac{1}{x} \]
                      8. metadata-evalN/A

                        \[\leadsto \color{blue}{\frac{1}{2}} + \frac{1}{x} \]
                      9. lower-/.f6468.5

                        \[\leadsto 0.5 + \color{blue}{\frac{1}{x}} \]
                    5. Applied rewrites68.5%

                      \[\leadsto \color{blue}{0.5 + \frac{1}{x}} \]
                    6. Taylor expanded in x around inf

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

                        \[\leadsto 0.5 \]
                      2. Add Preprocessing

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

                      \[\begin{array}{l} \\ \frac{-1}{\mathsf{expm1}\left(-x\right)} \end{array} \]
                      (FPCore (x) :precision binary64 (/ (- 1.0) (expm1 (- x))))
                      double code(double x) {
                      	return -1.0 / expm1(-x);
                      }
                      
                      public static double code(double x) {
                      	return -1.0 / Math.expm1(-x);
                      }
                      
                      def code(x):
                      	return -1.0 / math.expm1(-x)
                      
                      function code(x)
                      	return Float64(Float64(-1.0) / expm1(Float64(-x)))
                      end
                      
                      code[x_] := N[((-1.0) / N[(Exp[(-x)] - 1), $MachinePrecision]), $MachinePrecision]
                      
                      \begin{array}{l}
                      
                      \\
                      \frac{-1}{\mathsf{expm1}\left(-x\right)}
                      \end{array}
                      

                      Reproduce

                      ?
                      herbie shell --seed 2024313 
                      (FPCore (x)
                        :name "expq2 (section 3.11)"
                        :precision binary64
                        :pre (> 710.0 x)
                      
                        :alt
                        (! :herbie-platform default (/ (- 1) (expm1 (- x))))
                      
                        (/ (exp x) (- (exp x) 1.0)))