Numeric.SpecFunctions:invIncompleteBetaWorker from math-functions-0.1.5.2, G

Percentage Accurate: 84.4% → 99.7%
Time: 13.3s
Alternatives: 9
Speedup: 42.2×

Specification

?
\[\begin{array}{l} \\ x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (+ x (/ (exp (* y (log (/ y (+ z y))))) y)))
double code(double x, double y, double z) {
	return x + (exp((y * log((y / (z + y))))) / y);
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = x + (exp((y * log((y / (z + y))))) / y)
end function
public static double code(double x, double y, double z) {
	return x + (Math.exp((y * Math.log((y / (z + y))))) / y);
}
def code(x, y, z):
	return x + (math.exp((y * math.log((y / (z + y))))) / y)
function code(x, y, z)
	return Float64(x + Float64(exp(Float64(y * log(Float64(y / Float64(z + y))))) / y))
end
function tmp = code(x, y, z)
	tmp = x + (exp((y * log((y / (z + y))))) / y);
end
code[x_, y_, z_] := N[(x + N[(N[Exp[N[(y * N[Log[N[(y / N[(z + y), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y}
\end{array}

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

Herbie found 9 alternatives:

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

Initial Program: 84.4% accurate, 1.0× speedup?

\[\begin{array}{l} \\ x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (+ x (/ (exp (* y (log (/ y (+ z y))))) y)))
double code(double x, double y, double z) {
	return x + (exp((y * log((y / (z + y))))) / y);
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = x + (exp((y * log((y / (z + y))))) / y)
end function
public static double code(double x, double y, double z) {
	return x + (Math.exp((y * Math.log((y / (z + y))))) / y);
}
def code(x, y, z):
	return x + (math.exp((y * math.log((y / (z + y))))) / y)
function code(x, y, z)
	return Float64(x + Float64(exp(Float64(y * log(Float64(y / Float64(z + y))))) / y))
end
function tmp = code(x, y, z)
	tmp = x + (exp((y * log((y / (z + y))))) / y);
end
code[x_, y_, z_] := N[(x + N[(N[Exp[N[(y * N[Log[N[(y / N[(z + y), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y}
\end{array}

Alternative 1: 99.7% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;y \leq -2 \cdot 10^{+42}:\\ \;\;\;\;\frac{1}{y \cdot e^{z}} + x\\ \mathbf{elif}\;y \leq 2.5 \cdot 10^{-12}:\\ \;\;\;\;x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{y + z}\right)}}{y}\\ \mathbf{else}:\\ \;\;\;\;x + \frac{e^{-z}}{y}\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (<= y -2e+42)
   (+ (/ 1.0 (* y (exp z))) x)
   (if (<= y 2.5e-12)
     (+ x (/ (pow (exp y) (log (/ y (+ y z)))) y))
     (+ x (/ (exp (- z)) y)))))
double code(double x, double y, double z) {
	double tmp;
	if (y <= -2e+42) {
		tmp = (1.0 / (y * exp(z))) + x;
	} else if (y <= 2.5e-12) {
		tmp = x + (pow(exp(y), log((y / (y + z)))) / y);
	} else {
		tmp = x + (exp(-z) / y);
	}
	return tmp;
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: tmp
    if (y <= (-2d+42)) then
        tmp = (1.0d0 / (y * exp(z))) + x
    else if (y <= 2.5d-12) then
        tmp = x + ((exp(y) ** log((y / (y + z)))) / y)
    else
        tmp = x + (exp(-z) / y)
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if (y <= -2e+42) {
		tmp = (1.0 / (y * Math.exp(z))) + x;
	} else if (y <= 2.5e-12) {
		tmp = x + (Math.pow(Math.exp(y), Math.log((y / (y + z)))) / y);
	} else {
		tmp = x + (Math.exp(-z) / y);
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if y <= -2e+42:
		tmp = (1.0 / (y * math.exp(z))) + x
	elif y <= 2.5e-12:
		tmp = x + (math.pow(math.exp(y), math.log((y / (y + z)))) / y)
	else:
		tmp = x + (math.exp(-z) / y)
	return tmp
function code(x, y, z)
	tmp = 0.0
	if (y <= -2e+42)
		tmp = Float64(Float64(1.0 / Float64(y * exp(z))) + x);
	elseif (y <= 2.5e-12)
		tmp = Float64(x + Float64((exp(y) ^ log(Float64(y / Float64(y + z)))) / y));
	else
		tmp = Float64(x + Float64(exp(Float64(-z)) / y));
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if (y <= -2e+42)
		tmp = (1.0 / (y * exp(z))) + x;
	elseif (y <= 2.5e-12)
		tmp = x + ((exp(y) ^ log((y / (y + z)))) / y);
	else
		tmp = x + (exp(-z) / y);
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[LessEqual[y, -2e+42], N[(N[(1.0 / N[(y * N[Exp[z], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + x), $MachinePrecision], If[LessEqual[y, 2.5e-12], N[(x + N[(N[Power[N[Exp[y], $MachinePrecision], N[Log[N[(y / N[(y + z), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision], N[(x + N[(N[Exp[(-z)], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;y \leq -2 \cdot 10^{+42}:\\
\;\;\;\;\frac{1}{y \cdot e^{z}} + x\\

\mathbf{elif}\;y \leq 2.5 \cdot 10^{-12}:\\
\;\;\;\;x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{y + z}\right)}}{y}\\

\mathbf{else}:\\
\;\;\;\;x + \frac{e^{-z}}{y}\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if y < -2.00000000000000009e42

    1. Initial program 80.3%

      \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
    2. Step-by-step derivation
      1. *-commutative80.3%

        \[\leadsto x + \frac{e^{\color{blue}{\log \left(\frac{y}{z + y}\right) \cdot y}}}{y} \]
      2. exp-to-pow80.3%

        \[\leadsto x + \frac{\color{blue}{{\left(\frac{y}{z + y}\right)}^{y}}}{y} \]
      3. +-commutative80.3%

        \[\leadsto x + \frac{{\left(\frac{y}{\color{blue}{y + z}}\right)}^{y}}{y} \]
    3. Simplified80.3%

      \[\leadsto \color{blue}{x + \frac{{\left(\frac{y}{y + z}\right)}^{y}}{y}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 100.0%

      \[\leadsto x + \frac{\color{blue}{e^{-1 \cdot z}}}{y} \]
    6. Step-by-step derivation
      1. mul-1-neg100.0%

        \[\leadsto x + \frac{e^{\color{blue}{-z}}}{y} \]
    7. Simplified100.0%

      \[\leadsto x + \frac{\color{blue}{e^{-z}}}{y} \]
    8. Step-by-step derivation
      1. clear-num100.0%

        \[\leadsto x + \color{blue}{\frac{1}{\frac{y}{e^{-z}}}} \]
      2. inv-pow100.0%

        \[\leadsto x + \color{blue}{{\left(\frac{y}{e^{-z}}\right)}^{-1}} \]
      3. exp-neg100.0%

        \[\leadsto x + {\left(\frac{y}{\color{blue}{\frac{1}{e^{z}}}}\right)}^{-1} \]
      4. associate-/r/100.0%

        \[\leadsto x + {\color{blue}{\left(\frac{y}{1} \cdot e^{z}\right)}}^{-1} \]
      5. /-rgt-identity100.0%

        \[\leadsto x + {\left(\color{blue}{y} \cdot e^{z}\right)}^{-1} \]
    9. Applied egg-rr100.0%

      \[\leadsto x + \color{blue}{{\left(y \cdot e^{z}\right)}^{-1}} \]
    10. Taylor expanded in x around 0 100.0%

      \[\leadsto \color{blue}{x + \frac{1}{y \cdot e^{z}}} \]
    11. Step-by-step derivation
      1. +-commutative100.0%

        \[\leadsto \color{blue}{\frac{1}{y \cdot e^{z}} + x} \]
    12. Simplified100.0%

      \[\leadsto \color{blue}{\frac{1}{y \cdot e^{z}} + x} \]

    if -2.00000000000000009e42 < y < 2.49999999999999985e-12

    1. Initial program 82.0%

      \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
    2. Step-by-step derivation
      1. exp-prod100.0%

        \[\leadsto x + \frac{\color{blue}{{\left(e^{y}\right)}^{\log \left(\frac{y}{z + y}\right)}}}{y} \]
      2. +-commutative100.0%

        \[\leadsto x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{\color{blue}{y + z}}\right)}}{y} \]
    3. Simplified100.0%

      \[\leadsto \color{blue}{x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{y + z}\right)}}{y}} \]
    4. Add Preprocessing

    if 2.49999999999999985e-12 < y

    1. Initial program 80.4%

      \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
    2. Step-by-step derivation
      1. *-commutative80.4%

        \[\leadsto x + \frac{e^{\color{blue}{\log \left(\frac{y}{z + y}\right) \cdot y}}}{y} \]
      2. exp-to-pow80.4%

        \[\leadsto x + \frac{\color{blue}{{\left(\frac{y}{z + y}\right)}^{y}}}{y} \]
      3. +-commutative80.4%

        \[\leadsto x + \frac{{\left(\frac{y}{\color{blue}{y + z}}\right)}^{y}}{y} \]
    3. Simplified80.4%

      \[\leadsto \color{blue}{x + \frac{{\left(\frac{y}{y + z}\right)}^{y}}{y}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 100.0%

      \[\leadsto x + \frac{\color{blue}{e^{-1 \cdot z}}}{y} \]
    6. Step-by-step derivation
      1. mul-1-neg100.0%

        \[\leadsto x + \frac{e^{\color{blue}{-z}}}{y} \]
    7. Simplified100.0%

      \[\leadsto x + \frac{\color{blue}{e^{-z}}}{y} \]
  3. Recombined 3 regimes into one program.
  4. Add Preprocessing

Alternative 2: 99.6% accurate, 1.8× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;y \leq -1 \lor \neg \left(y \leq 2.5 \cdot 10^{-12}\right):\\ \;\;\;\;x + \frac{e^{-z}}{y}\\ \mathbf{else}:\\ \;\;\;\;x + \frac{1}{y}\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (or (<= y -1.0) (not (<= y 2.5e-12)))
   (+ x (/ (exp (- z)) y))
   (+ x (/ 1.0 y))))
double code(double x, double y, double z) {
	double tmp;
	if ((y <= -1.0) || !(y <= 2.5e-12)) {
		tmp = x + (exp(-z) / y);
	} else {
		tmp = x + (1.0 / y);
	}
	return tmp;
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: tmp
    if ((y <= (-1.0d0)) .or. (.not. (y <= 2.5d-12))) then
        tmp = x + (exp(-z) / y)
    else
        tmp = x + (1.0d0 / y)
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if ((y <= -1.0) || !(y <= 2.5e-12)) {
		tmp = x + (Math.exp(-z) / y);
	} else {
		tmp = x + (1.0 / y);
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if (y <= -1.0) or not (y <= 2.5e-12):
		tmp = x + (math.exp(-z) / y)
	else:
		tmp = x + (1.0 / y)
	return tmp
function code(x, y, z)
	tmp = 0.0
	if ((y <= -1.0) || !(y <= 2.5e-12))
		tmp = Float64(x + Float64(exp(Float64(-z)) / y));
	else
		tmp = Float64(x + Float64(1.0 / y));
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if ((y <= -1.0) || ~((y <= 2.5e-12)))
		tmp = x + (exp(-z) / y);
	else
		tmp = x + (1.0 / y);
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[Or[LessEqual[y, -1.0], N[Not[LessEqual[y, 2.5e-12]], $MachinePrecision]], N[(x + N[(N[Exp[(-z)], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision], N[(x + N[(1.0 / y), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;y \leq -1 \lor \neg \left(y \leq 2.5 \cdot 10^{-12}\right):\\
\;\;\;\;x + \frac{e^{-z}}{y}\\

\mathbf{else}:\\
\;\;\;\;x + \frac{1}{y}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if y < -1 or 2.49999999999999985e-12 < y

    1. Initial program 81.4%

      \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
    2. Step-by-step derivation
      1. *-commutative81.4%

        \[\leadsto x + \frac{e^{\color{blue}{\log \left(\frac{y}{z + y}\right) \cdot y}}}{y} \]
      2. exp-to-pow81.4%

        \[\leadsto x + \frac{\color{blue}{{\left(\frac{y}{z + y}\right)}^{y}}}{y} \]
      3. +-commutative81.4%

        \[\leadsto x + \frac{{\left(\frac{y}{\color{blue}{y + z}}\right)}^{y}}{y} \]
    3. Simplified81.4%

      \[\leadsto \color{blue}{x + \frac{{\left(\frac{y}{y + z}\right)}^{y}}{y}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 100.0%

      \[\leadsto x + \frac{\color{blue}{e^{-1 \cdot z}}}{y} \]
    6. Step-by-step derivation
      1. mul-1-neg100.0%

        \[\leadsto x + \frac{e^{\color{blue}{-z}}}{y} \]
    7. Simplified100.0%

      \[\leadsto x + \frac{\color{blue}{e^{-z}}}{y} \]

    if -1 < y < 2.49999999999999985e-12

    1. Initial program 80.7%

      \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
    2. Step-by-step derivation
      1. exp-prod100.0%

        \[\leadsto x + \frac{\color{blue}{{\left(e^{y}\right)}^{\log \left(\frac{y}{z + y}\right)}}}{y} \]
      2. +-commutative100.0%

        \[\leadsto x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{\color{blue}{y + z}}\right)}}{y} \]
    3. Simplified100.0%

      \[\leadsto \color{blue}{x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{y + z}\right)}}{y}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 99.8%

      \[\leadsto \color{blue}{x + \frac{1}{y}} \]
    6. Step-by-step derivation
      1. +-commutative99.8%

        \[\leadsto \color{blue}{\frac{1}{y} + x} \]
    7. Simplified99.8%

      \[\leadsto \color{blue}{\frac{1}{y} + x} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification99.9%

    \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq -1 \lor \neg \left(y \leq 2.5 \cdot 10^{-12}\right):\\ \;\;\;\;x + \frac{e^{-z}}{y}\\ \mathbf{else}:\\ \;\;\;\;x + \frac{1}{y}\\ \end{array} \]
  5. Add Preprocessing

Alternative 3: 99.6% accurate, 1.8× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;y \leq -1.18:\\ \;\;\;\;\frac{1}{y \cdot e^{z}} + x\\ \mathbf{elif}\;y \leq 2 \cdot 10^{-12}:\\ \;\;\;\;x + \frac{1}{y}\\ \mathbf{else}:\\ \;\;\;\;x + \frac{e^{-z}}{y}\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (<= y -1.18)
   (+ (/ 1.0 (* y (exp z))) x)
   (if (<= y 2e-12) (+ x (/ 1.0 y)) (+ x (/ (exp (- z)) y)))))
double code(double x, double y, double z) {
	double tmp;
	if (y <= -1.18) {
		tmp = (1.0 / (y * exp(z))) + x;
	} else if (y <= 2e-12) {
		tmp = x + (1.0 / y);
	} else {
		tmp = x + (exp(-z) / y);
	}
	return tmp;
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: tmp
    if (y <= (-1.18d0)) then
        tmp = (1.0d0 / (y * exp(z))) + x
    else if (y <= 2d-12) then
        tmp = x + (1.0d0 / y)
    else
        tmp = x + (exp(-z) / y)
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if (y <= -1.18) {
		tmp = (1.0 / (y * Math.exp(z))) + x;
	} else if (y <= 2e-12) {
		tmp = x + (1.0 / y);
	} else {
		tmp = x + (Math.exp(-z) / y);
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if y <= -1.18:
		tmp = (1.0 / (y * math.exp(z))) + x
	elif y <= 2e-12:
		tmp = x + (1.0 / y)
	else:
		tmp = x + (math.exp(-z) / y)
	return tmp
function code(x, y, z)
	tmp = 0.0
	if (y <= -1.18)
		tmp = Float64(Float64(1.0 / Float64(y * exp(z))) + x);
	elseif (y <= 2e-12)
		tmp = Float64(x + Float64(1.0 / y));
	else
		tmp = Float64(x + Float64(exp(Float64(-z)) / y));
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if (y <= -1.18)
		tmp = (1.0 / (y * exp(z))) + x;
	elseif (y <= 2e-12)
		tmp = x + (1.0 / y);
	else
		tmp = x + (exp(-z) / y);
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[LessEqual[y, -1.18], N[(N[(1.0 / N[(y * N[Exp[z], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + x), $MachinePrecision], If[LessEqual[y, 2e-12], N[(x + N[(1.0 / y), $MachinePrecision]), $MachinePrecision], N[(x + N[(N[Exp[(-z)], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;y \leq -1.18:\\
\;\;\;\;\frac{1}{y \cdot e^{z}} + x\\

\mathbf{elif}\;y \leq 2 \cdot 10^{-12}:\\
\;\;\;\;x + \frac{1}{y}\\

\mathbf{else}:\\
\;\;\;\;x + \frac{e^{-z}}{y}\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if y < -1.17999999999999994

    1. Initial program 82.5%

      \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
    2. Step-by-step derivation
      1. *-commutative82.5%

        \[\leadsto x + \frac{e^{\color{blue}{\log \left(\frac{y}{z + y}\right) \cdot y}}}{y} \]
      2. exp-to-pow82.5%

        \[\leadsto x + \frac{\color{blue}{{\left(\frac{y}{z + y}\right)}^{y}}}{y} \]
      3. +-commutative82.5%

        \[\leadsto x + \frac{{\left(\frac{y}{\color{blue}{y + z}}\right)}^{y}}{y} \]
    3. Simplified82.5%

      \[\leadsto \color{blue}{x + \frac{{\left(\frac{y}{y + z}\right)}^{y}}{y}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 100.0%

      \[\leadsto x + \frac{\color{blue}{e^{-1 \cdot z}}}{y} \]
    6. Step-by-step derivation
      1. mul-1-neg100.0%

        \[\leadsto x + \frac{e^{\color{blue}{-z}}}{y} \]
    7. Simplified100.0%

      \[\leadsto x + \frac{\color{blue}{e^{-z}}}{y} \]
    8. Step-by-step derivation
      1. clear-num100.0%

        \[\leadsto x + \color{blue}{\frac{1}{\frac{y}{e^{-z}}}} \]
      2. inv-pow100.0%

        \[\leadsto x + \color{blue}{{\left(\frac{y}{e^{-z}}\right)}^{-1}} \]
      3. exp-neg100.0%

        \[\leadsto x + {\left(\frac{y}{\color{blue}{\frac{1}{e^{z}}}}\right)}^{-1} \]
      4. associate-/r/100.0%

        \[\leadsto x + {\color{blue}{\left(\frac{y}{1} \cdot e^{z}\right)}}^{-1} \]
      5. /-rgt-identity100.0%

        \[\leadsto x + {\left(\color{blue}{y} \cdot e^{z}\right)}^{-1} \]
    9. Applied egg-rr100.0%

      \[\leadsto x + \color{blue}{{\left(y \cdot e^{z}\right)}^{-1}} \]
    10. Taylor expanded in x around 0 100.0%

      \[\leadsto \color{blue}{x + \frac{1}{y \cdot e^{z}}} \]
    11. Step-by-step derivation
      1. +-commutative100.0%

        \[\leadsto \color{blue}{\frac{1}{y \cdot e^{z}} + x} \]
    12. Simplified100.0%

      \[\leadsto \color{blue}{\frac{1}{y \cdot e^{z}} + x} \]

    if -1.17999999999999994 < y < 1.99999999999999996e-12

    1. Initial program 80.7%

      \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
    2. Step-by-step derivation
      1. exp-prod100.0%

        \[\leadsto x + \frac{\color{blue}{{\left(e^{y}\right)}^{\log \left(\frac{y}{z + y}\right)}}}{y} \]
      2. +-commutative100.0%

        \[\leadsto x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{\color{blue}{y + z}}\right)}}{y} \]
    3. Simplified100.0%

      \[\leadsto \color{blue}{x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{y + z}\right)}}{y}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 99.8%

      \[\leadsto \color{blue}{x + \frac{1}{y}} \]
    6. Step-by-step derivation
      1. +-commutative99.8%

        \[\leadsto \color{blue}{\frac{1}{y} + x} \]
    7. Simplified99.8%

      \[\leadsto \color{blue}{\frac{1}{y} + x} \]

    if 1.99999999999999996e-12 < y

    1. Initial program 80.4%

      \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
    2. Step-by-step derivation
      1. *-commutative80.4%

        \[\leadsto x + \frac{e^{\color{blue}{\log \left(\frac{y}{z + y}\right) \cdot y}}}{y} \]
      2. exp-to-pow80.4%

        \[\leadsto x + \frac{\color{blue}{{\left(\frac{y}{z + y}\right)}^{y}}}{y} \]
      3. +-commutative80.4%

        \[\leadsto x + \frac{{\left(\frac{y}{\color{blue}{y + z}}\right)}^{y}}{y} \]
    3. Simplified80.4%

      \[\leadsto \color{blue}{x + \frac{{\left(\frac{y}{y + z}\right)}^{y}}{y}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 100.0%

      \[\leadsto x + \frac{\color{blue}{e^{-1 \cdot z}}}{y} \]
    6. Step-by-step derivation
      1. mul-1-neg100.0%

        \[\leadsto x + \frac{e^{\color{blue}{-z}}}{y} \]
    7. Simplified100.0%

      \[\leadsto x + \frac{\color{blue}{e^{-z}}}{y} \]
  3. Recombined 3 regimes into one program.
  4. Final simplification99.9%

    \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq -1.18:\\ \;\;\;\;\frac{1}{y \cdot e^{z}} + x\\ \mathbf{elif}\;y \leq 2 \cdot 10^{-12}:\\ \;\;\;\;x + \frac{1}{y}\\ \mathbf{else}:\\ \;\;\;\;x + \frac{e^{-z}}{y}\\ \end{array} \]
  5. Add Preprocessing

Alternative 4: 89.2% accurate, 1.9× speedup?

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

\\
\begin{array}{l}
\mathbf{if}\;z \leq -1300:\\
\;\;\;\;\frac{e^{-z}}{y}\\

\mathbf{else}:\\
\;\;\;\;x + \frac{1}{y}\\


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

    1. Initial program 36.5%

      \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
    2. Step-by-step derivation
      1. exp-prod51.8%

        \[\leadsto x + \frac{\color{blue}{{\left(e^{y}\right)}^{\log \left(\frac{y}{z + y}\right)}}}{y} \]
      2. +-commutative51.8%

        \[\leadsto x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{\color{blue}{y + z}}\right)}}{y} \]
    3. Simplified51.8%

      \[\leadsto \color{blue}{x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{y + z}\right)}}{y}} \]
    4. Add Preprocessing
    5. Taylor expanded in x around 0 32.6%

      \[\leadsto \color{blue}{\frac{{\left(\frac{y}{y + z}\right)}^{y}}{y}} \]
    6. Taylor expanded in y around inf 74.8%

      \[\leadsto \frac{\color{blue}{e^{-1 \cdot z}}}{y} \]
    7. Step-by-step derivation
      1. mul-1-neg74.8%

        \[\leadsto x + \frac{e^{\color{blue}{-z}}}{y} \]
    8. Simplified74.8%

      \[\leadsto \frac{\color{blue}{e^{-z}}}{y} \]

    if -1300 < z

    1. Initial program 91.7%

      \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
    2. Step-by-step derivation
      1. exp-prod98.3%

        \[\leadsto x + \frac{\color{blue}{{\left(e^{y}\right)}^{\log \left(\frac{y}{z + y}\right)}}}{y} \]
      2. +-commutative98.3%

        \[\leadsto x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{\color{blue}{y + z}}\right)}}{y} \]
    3. Simplified98.3%

      \[\leadsto \color{blue}{x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{y + z}\right)}}{y}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 97.7%

      \[\leadsto \color{blue}{x + \frac{1}{y}} \]
    6. Step-by-step derivation
      1. +-commutative97.7%

        \[\leadsto \color{blue}{\frac{1}{y} + x} \]
    7. Simplified97.7%

      \[\leadsto \color{blue}{\frac{1}{y} + x} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification93.3%

    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -1300:\\ \;\;\;\;\frac{e^{-z}}{y}\\ \mathbf{else}:\\ \;\;\;\;x + \frac{1}{y}\\ \end{array} \]
  5. Add Preprocessing

Alternative 5: 85.3% accurate, 9.6× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -5 \cdot 10^{+36}:\\ \;\;\;\;x + \frac{1 + z \cdot \left(-1 + z \cdot \left(0.5 + z \cdot -0.16666666666666666\right)\right)}{y}\\ \mathbf{else}:\\ \;\;\;\;x + \frac{1}{y}\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (<= z -5e+36)
   (+ x (/ (+ 1.0 (* z (+ -1.0 (* z (+ 0.5 (* z -0.16666666666666666)))))) y))
   (+ x (/ 1.0 y))))
double code(double x, double y, double z) {
	double tmp;
	if (z <= -5e+36) {
		tmp = x + ((1.0 + (z * (-1.0 + (z * (0.5 + (z * -0.16666666666666666)))))) / y);
	} else {
		tmp = x + (1.0 / y);
	}
	return tmp;
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: tmp
    if (z <= (-5d+36)) then
        tmp = x + ((1.0d0 + (z * ((-1.0d0) + (z * (0.5d0 + (z * (-0.16666666666666666d0))))))) / y)
    else
        tmp = x + (1.0d0 / y)
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if (z <= -5e+36) {
		tmp = x + ((1.0 + (z * (-1.0 + (z * (0.5 + (z * -0.16666666666666666)))))) / y);
	} else {
		tmp = x + (1.0 / y);
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if z <= -5e+36:
		tmp = x + ((1.0 + (z * (-1.0 + (z * (0.5 + (z * -0.16666666666666666)))))) / y)
	else:
		tmp = x + (1.0 / y)
	return tmp
function code(x, y, z)
	tmp = 0.0
	if (z <= -5e+36)
		tmp = Float64(x + Float64(Float64(1.0 + Float64(z * Float64(-1.0 + Float64(z * Float64(0.5 + Float64(z * -0.16666666666666666)))))) / y));
	else
		tmp = Float64(x + Float64(1.0 / y));
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if (z <= -5e+36)
		tmp = x + ((1.0 + (z * (-1.0 + (z * (0.5 + (z * -0.16666666666666666)))))) / y);
	else
		tmp = x + (1.0 / y);
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[LessEqual[z, -5e+36], N[(x + N[(N[(1.0 + N[(z * N[(-1.0 + N[(z * N[(0.5 + N[(z * -0.16666666666666666), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision], N[(x + N[(1.0 / y), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;z \leq -5 \cdot 10^{+36}:\\
\;\;\;\;x + \frac{1 + z \cdot \left(-1 + z \cdot \left(0.5 + z \cdot -0.16666666666666666\right)\right)}{y}\\

\mathbf{else}:\\
\;\;\;\;x + \frac{1}{y}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if z < -4.99999999999999977e36

    1. Initial program 38.4%

      \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
    2. Step-by-step derivation
      1. *-commutative38.4%

        \[\leadsto x + \frac{e^{\color{blue}{\log \left(\frac{y}{z + y}\right) \cdot y}}}{y} \]
      2. exp-to-pow38.4%

        \[\leadsto x + \frac{\color{blue}{{\left(\frac{y}{z + y}\right)}^{y}}}{y} \]
      3. +-commutative38.4%

        \[\leadsto x + \frac{{\left(\frac{y}{\color{blue}{y + z}}\right)}^{y}}{y} \]
    3. Simplified38.4%

      \[\leadsto \color{blue}{x + \frac{{\left(\frac{y}{y + z}\right)}^{y}}{y}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 74.5%

      \[\leadsto x + \frac{\color{blue}{e^{-1 \cdot z}}}{y} \]
    6. Step-by-step derivation
      1. mul-1-neg74.5%

        \[\leadsto x + \frac{e^{\color{blue}{-z}}}{y} \]
    7. Simplified74.5%

      \[\leadsto x + \frac{\color{blue}{e^{-z}}}{y} \]
    8. Taylor expanded in z around 0 51.0%

      \[\leadsto x + \frac{\color{blue}{1 + z \cdot \left(z \cdot \left(0.5 + -0.16666666666666666 \cdot z\right) - 1\right)}}{y} \]

    if -4.99999999999999977e36 < z

    1. Initial program 89.2%

      \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
    2. Step-by-step derivation
      1. exp-prod95.6%

        \[\leadsto x + \frac{\color{blue}{{\left(e^{y}\right)}^{\log \left(\frac{y}{z + y}\right)}}}{y} \]
      2. +-commutative95.6%

        \[\leadsto x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{\color{blue}{y + z}}\right)}}{y} \]
    3. Simplified95.6%

      \[\leadsto \color{blue}{x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{y + z}\right)}}{y}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 95.1%

      \[\leadsto \color{blue}{x + \frac{1}{y}} \]
    6. Step-by-step derivation
      1. +-commutative95.1%

        \[\leadsto \color{blue}{\frac{1}{y} + x} \]
    7. Simplified95.1%

      \[\leadsto \color{blue}{\frac{1}{y} + x} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification88.0%

    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -5 \cdot 10^{+36}:\\ \;\;\;\;x + \frac{1 + z \cdot \left(-1 + z \cdot \left(0.5 + z \cdot -0.16666666666666666\right)\right)}{y}\\ \mathbf{else}:\\ \;\;\;\;x + \frac{1}{y}\\ \end{array} \]
  5. Add Preprocessing

Alternative 6: 84.2% accurate, 15.1× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -3.4 \cdot 10^{+36}:\\ \;\;\;\;\frac{\frac{y - y \cdot z}{y}}{y}\\ \mathbf{else}:\\ \;\;\;\;x + \frac{1}{y}\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (<= z -3.4e+36) (/ (/ (- y (* y z)) y) y) (+ x (/ 1.0 y))))
double code(double x, double y, double z) {
	double tmp;
	if (z <= -3.4e+36) {
		tmp = ((y - (y * z)) / y) / y;
	} else {
		tmp = x + (1.0 / y);
	}
	return tmp;
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: tmp
    if (z <= (-3.4d+36)) then
        tmp = ((y - (y * z)) / y) / y
    else
        tmp = x + (1.0d0 / y)
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if (z <= -3.4e+36) {
		tmp = ((y - (y * z)) / y) / y;
	} else {
		tmp = x + (1.0 / y);
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if z <= -3.4e+36:
		tmp = ((y - (y * z)) / y) / y
	else:
		tmp = x + (1.0 / y)
	return tmp
function code(x, y, z)
	tmp = 0.0
	if (z <= -3.4e+36)
		tmp = Float64(Float64(Float64(y - Float64(y * z)) / y) / y);
	else
		tmp = Float64(x + Float64(1.0 / y));
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if (z <= -3.4e+36)
		tmp = ((y - (y * z)) / y) / y;
	else
		tmp = x + (1.0 / y);
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[LessEqual[z, -3.4e+36], N[(N[(N[(y - N[(y * z), $MachinePrecision]), $MachinePrecision] / y), $MachinePrecision] / y), $MachinePrecision], N[(x + N[(1.0 / y), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;z \leq -3.4 \cdot 10^{+36}:\\
\;\;\;\;\frac{\frac{y - y \cdot z}{y}}{y}\\

\mathbf{else}:\\
\;\;\;\;x + \frac{1}{y}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if z < -3.3999999999999998e36

    1. Initial program 38.4%

      \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
    2. Step-by-step derivation
      1. exp-prod56.8%

        \[\leadsto x + \frac{\color{blue}{{\left(e^{y}\right)}^{\log \left(\frac{y}{z + y}\right)}}}{y} \]
      2. +-commutative56.8%

        \[\leadsto x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{\color{blue}{y + z}}\right)}}{y} \]
    3. Simplified56.8%

      \[\leadsto \color{blue}{x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{y + z}\right)}}{y}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 3.3%

      \[\leadsto \color{blue}{x + \left(-1 \cdot \frac{z}{y} + \frac{1}{y}\right)} \]
    6. Step-by-step derivation
      1. +-commutative3.3%

        \[\leadsto x + \color{blue}{\left(\frac{1}{y} + -1 \cdot \frac{z}{y}\right)} \]
      2. mul-1-neg3.3%

        \[\leadsto x + \left(\frac{1}{y} + \color{blue}{\left(-\frac{z}{y}\right)}\right) \]
      3. unsub-neg3.3%

        \[\leadsto x + \color{blue}{\left(\frac{1}{y} - \frac{z}{y}\right)} \]
    7. Simplified3.3%

      \[\leadsto \color{blue}{x + \left(\frac{1}{y} - \frac{z}{y}\right)} \]
    8. Taylor expanded in x around 0 3.6%

      \[\leadsto \color{blue}{\frac{1}{y} - \frac{z}{y}} \]
    9. Step-by-step derivation
      1. frac-sub4.6%

        \[\leadsto \color{blue}{\frac{1 \cdot y - y \cdot z}{y \cdot y}} \]
      2. associate-/r*50.9%

        \[\leadsto \color{blue}{\frac{\frac{1 \cdot y - y \cdot z}{y}}{y}} \]
      3. *-un-lft-identity50.9%

        \[\leadsto \frac{\frac{\color{blue}{y} - y \cdot z}{y}}{y} \]
      4. *-commutative50.9%

        \[\leadsto \frac{\frac{y - \color{blue}{z \cdot y}}{y}}{y} \]
    10. Applied egg-rr50.9%

      \[\leadsto \color{blue}{\frac{\frac{y - z \cdot y}{y}}{y}} \]

    if -3.3999999999999998e36 < z

    1. Initial program 89.2%

      \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
    2. Step-by-step derivation
      1. exp-prod95.6%

        \[\leadsto x + \frac{\color{blue}{{\left(e^{y}\right)}^{\log \left(\frac{y}{z + y}\right)}}}{y} \]
      2. +-commutative95.6%

        \[\leadsto x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{\color{blue}{y + z}}\right)}}{y} \]
    3. Simplified95.6%

      \[\leadsto \color{blue}{x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{y + z}\right)}}{y}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 95.1%

      \[\leadsto \color{blue}{x + \frac{1}{y}} \]
    6. Step-by-step derivation
      1. +-commutative95.1%

        \[\leadsto \color{blue}{\frac{1}{y} + x} \]
    7. Simplified95.1%

      \[\leadsto \color{blue}{\frac{1}{y} + x} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification88.0%

    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -3.4 \cdot 10^{+36}:\\ \;\;\;\;\frac{\frac{y - y \cdot z}{y}}{y}\\ \mathbf{else}:\\ \;\;\;\;x + \frac{1}{y}\\ \end{array} \]
  5. Add Preprocessing

Alternative 7: 68.4% accurate, 16.2× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;y \leq -370000000000:\\ \;\;\;\;x\\ \mathbf{elif}\;y \leq 0.0018:\\ \;\;\;\;\frac{1}{y}\\ \mathbf{else}:\\ \;\;\;\;x\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (<= y -370000000000.0) x (if (<= y 0.0018) (/ 1.0 y) x)))
double code(double x, double y, double z) {
	double tmp;
	if (y <= -370000000000.0) {
		tmp = x;
	} else if (y <= 0.0018) {
		tmp = 1.0 / y;
	} else {
		tmp = x;
	}
	return tmp;
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: tmp
    if (y <= (-370000000000.0d0)) then
        tmp = x
    else if (y <= 0.0018d0) then
        tmp = 1.0d0 / y
    else
        tmp = x
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if (y <= -370000000000.0) {
		tmp = x;
	} else if (y <= 0.0018) {
		tmp = 1.0 / y;
	} else {
		tmp = x;
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if y <= -370000000000.0:
		tmp = x
	elif y <= 0.0018:
		tmp = 1.0 / y
	else:
		tmp = x
	return tmp
function code(x, y, z)
	tmp = 0.0
	if (y <= -370000000000.0)
		tmp = x;
	elseif (y <= 0.0018)
		tmp = Float64(1.0 / y);
	else
		tmp = x;
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if (y <= -370000000000.0)
		tmp = x;
	elseif (y <= 0.0018)
		tmp = 1.0 / y;
	else
		tmp = x;
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[LessEqual[y, -370000000000.0], x, If[LessEqual[y, 0.0018], N[(1.0 / y), $MachinePrecision], x]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;y \leq -370000000000:\\
\;\;\;\;x\\

\mathbf{elif}\;y \leq 0.0018:\\
\;\;\;\;\frac{1}{y}\\

\mathbf{else}:\\
\;\;\;\;x\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if y < -3.7e11 or 0.0018 < y

    1. Initial program 81.2%

      \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
    2. Step-by-step derivation
      1. exp-prod81.2%

        \[\leadsto x + \frac{\color{blue}{{\left(e^{y}\right)}^{\log \left(\frac{y}{z + y}\right)}}}{y} \]
      2. +-commutative81.2%

        \[\leadsto x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{\color{blue}{y + z}}\right)}}{y} \]
    3. Simplified81.2%

      \[\leadsto \color{blue}{x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{y + z}\right)}}{y}} \]
    4. Add Preprocessing
    5. Taylor expanded in x around inf 62.4%

      \[\leadsto \color{blue}{x} \]

    if -3.7e11 < y < 0.0018

    1. Initial program 81.0%

      \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
    2. Step-by-step derivation
      1. exp-prod99.9%

        \[\leadsto x + \frac{\color{blue}{{\left(e^{y}\right)}^{\log \left(\frac{y}{z + y}\right)}}}{y} \]
      2. +-commutative99.9%

        \[\leadsto x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{\color{blue}{y + z}}\right)}}{y} \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{y + z}\right)}}{y}} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 81.3%

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

Alternative 8: 84.7% accurate, 42.2× speedup?

\[\begin{array}{l} \\ x + \frac{1}{y} \end{array} \]
(FPCore (x y z) :precision binary64 (+ x (/ 1.0 y)))
double code(double x, double y, double z) {
	return x + (1.0 / y);
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = x + (1.0d0 / y)
end function
public static double code(double x, double y, double z) {
	return x + (1.0 / y);
}
def code(x, y, z):
	return x + (1.0 / y)
function code(x, y, z)
	return Float64(x + Float64(1.0 / y))
end
function tmp = code(x, y, z)
	tmp = x + (1.0 / y);
end
code[x_, y_, z_] := N[(x + N[(1.0 / y), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
x + \frac{1}{y}
\end{array}
Derivation
  1. Initial program 81.1%

    \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
  2. Step-by-step derivation
    1. exp-prod89.4%

      \[\leadsto x + \frac{\color{blue}{{\left(e^{y}\right)}^{\log \left(\frac{y}{z + y}\right)}}}{y} \]
    2. +-commutative89.4%

      \[\leadsto x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{\color{blue}{y + z}}\right)}}{y} \]
  3. Simplified89.4%

    \[\leadsto \color{blue}{x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{y + z}\right)}}{y}} \]
  4. Add Preprocessing
  5. Taylor expanded in y around inf 84.4%

    \[\leadsto \color{blue}{x + \frac{1}{y}} \]
  6. Step-by-step derivation
    1. +-commutative84.4%

      \[\leadsto \color{blue}{\frac{1}{y} + x} \]
  7. Simplified84.4%

    \[\leadsto \color{blue}{\frac{1}{y} + x} \]
  8. Final simplification84.4%

    \[\leadsto x + \frac{1}{y} \]
  9. Add Preprocessing

Alternative 9: 49.5% accurate, 211.0× speedup?

\[\begin{array}{l} \\ x \end{array} \]
(FPCore (x y z) :precision binary64 x)
double code(double x, double y, double z) {
	return x;
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = x
end function
public static double code(double x, double y, double z) {
	return x;
}
def code(x, y, z):
	return x
function code(x, y, z)
	return x
end
function tmp = code(x, y, z)
	tmp = x;
end
code[x_, y_, z_] := x
\begin{array}{l}

\\
x
\end{array}
Derivation
  1. Initial program 81.1%

    \[x + \frac{e^{y \cdot \log \left(\frac{y}{z + y}\right)}}{y} \]
  2. Step-by-step derivation
    1. exp-prod89.4%

      \[\leadsto x + \frac{\color{blue}{{\left(e^{y}\right)}^{\log \left(\frac{y}{z + y}\right)}}}{y} \]
    2. +-commutative89.4%

      \[\leadsto x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{\color{blue}{y + z}}\right)}}{y} \]
  3. Simplified89.4%

    \[\leadsto \color{blue}{x + \frac{{\left(e^{y}\right)}^{\log \left(\frac{y}{y + z}\right)}}{y}} \]
  4. Add Preprocessing
  5. Taylor expanded in x around inf 43.0%

    \[\leadsto \color{blue}{x} \]
  6. Add Preprocessing

Developer Target 1: 91.2% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{y}{z + y} < 7.11541576 \cdot 10^{-315}:\\ \;\;\;\;x + \frac{e^{\frac{-1}{z}}}{y}\\ \mathbf{else}:\\ \;\;\;\;x + \frac{e^{\log \left({\left(\frac{y}{y + z}\right)}^{y}\right)}}{y}\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (< (/ y (+ z y)) 7.11541576e-315)
   (+ x (/ (exp (/ -1.0 z)) y))
   (+ x (/ (exp (log (pow (/ y (+ y z)) y))) y))))
double code(double x, double y, double z) {
	double tmp;
	if ((y / (z + y)) < 7.11541576e-315) {
		tmp = x + (exp((-1.0 / z)) / y);
	} else {
		tmp = x + (exp(log(pow((y / (y + z)), y))) / y);
	}
	return tmp;
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: tmp
    if ((y / (z + y)) < 7.11541576d-315) then
        tmp = x + (exp(((-1.0d0) / z)) / y)
    else
        tmp = x + (exp(log(((y / (y + z)) ** y))) / y)
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if ((y / (z + y)) < 7.11541576e-315) {
		tmp = x + (Math.exp((-1.0 / z)) / y);
	} else {
		tmp = x + (Math.exp(Math.log(Math.pow((y / (y + z)), y))) / y);
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if (y / (z + y)) < 7.11541576e-315:
		tmp = x + (math.exp((-1.0 / z)) / y)
	else:
		tmp = x + (math.exp(math.log(math.pow((y / (y + z)), y))) / y)
	return tmp
function code(x, y, z)
	tmp = 0.0
	if (Float64(y / Float64(z + y)) < 7.11541576e-315)
		tmp = Float64(x + Float64(exp(Float64(-1.0 / z)) / y));
	else
		tmp = Float64(x + Float64(exp(log((Float64(y / Float64(y + z)) ^ y))) / y));
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if ((y / (z + y)) < 7.11541576e-315)
		tmp = x + (exp((-1.0 / z)) / y);
	else
		tmp = x + (exp(log(((y / (y + z)) ^ y))) / y);
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[Less[N[(y / N[(z + y), $MachinePrecision]), $MachinePrecision], 7.11541576e-315], N[(x + N[(N[Exp[N[(-1.0 / z), $MachinePrecision]], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision], N[(x + N[(N[Exp[N[Log[N[Power[N[(y / N[(y + z), $MachinePrecision]), $MachinePrecision], y], $MachinePrecision]], $MachinePrecision]], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;\frac{y}{z + y} < 7.11541576 \cdot 10^{-315}:\\
\;\;\;\;x + \frac{e^{\frac{-1}{z}}}{y}\\

\mathbf{else}:\\
\;\;\;\;x + \frac{e^{\log \left({\left(\frac{y}{y + z}\right)}^{y}\right)}}{y}\\


\end{array}
\end{array}

Reproduce

?
herbie shell --seed 2024135 
(FPCore (x y z)
  :name "Numeric.SpecFunctions:invIncompleteBetaWorker from math-functions-0.1.5.2, G"
  :precision binary64

  :alt
  (! :herbie-platform default (if (< (/ y (+ z y)) 17788539399477/2500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) (+ x (/ (exp (/ -1 z)) y)) (+ x (/ (exp (log (pow (/ y (+ y z)) y))) y))))

  (+ x (/ (exp (* y (log (/ y (+ z y))))) y)))