?

Average Error: 17.9% → 0.77%
Time: 8.7s
Precision: binary64
Cost: 60688

?

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

\mathbf{elif}\;t_2 \leq -5 \cdot 10^{-301}:\\
\;\;\;\;\frac{1}{x \cdot e^{y}}\\

\mathbf{elif}\;t_2 \leq 0:\\
\;\;\;\;t_3\\

\mathbf{elif}\;t_2 \leq 10^{-72}:\\
\;\;\;\;\frac{e^{-y}}{x}\\

\mathbf{else}:\\
\;\;\;\;\frac{{t_0}^{x}}{x}\\


\end{array}

Error?

Try it out?

Your Program's Arguments

Results

Enter valid numbers for all inputs

Target

Original17.9%
Target12.56%
Herbie0.77%
\[\begin{array}{l} \mathbf{if}\;y < -3.7311844206647956 \cdot 10^{+94}:\\ \;\;\;\;\frac{e^{\frac{-1}{y}}}{x}\\ \mathbf{elif}\;y < 2.817959242728288 \cdot 10^{+37}:\\ \;\;\;\;\frac{{\left(\frac{x}{y + x}\right)}^{x}}{x}\\ \mathbf{elif}\;y < 2.347387415166998 \cdot 10^{+178}:\\ \;\;\;\;\log \left(e^{\frac{{\left(\frac{x}{y + x}\right)}^{x}}{x}}\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{e^{\frac{-1}{y}}}{x}\\ \end{array} \]

Derivation?

  1. Split input into 4 regimes
  2. if (/.f64 (exp.f64 (*.f64 x (log.f64 (/.f64 x (+.f64 x y))))) x) < -5e3 or -5.00000000000000013e-301 < (/.f64 (exp.f64 (*.f64 x (log.f64 (/.f64 x (+.f64 x y))))) x) < 0.0

    1. Initial program 25.78

      \[\frac{e^{x \cdot \log \left(\frac{x}{x + y}\right)}}{x} \]
    2. Simplified1.01

      \[\leadsto \color{blue}{\frac{{\left(e^{x}\right)}^{\log \left(\frac{x}{x + y}\right)}}{x}} \]
      Proof

      [Start]25.78

      \[ \frac{e^{x \cdot \log \left(\frac{x}{x + y}\right)}}{x} \]

      exp-prod [=>]1.01

      \[ \frac{\color{blue}{{\left(e^{x}\right)}^{\log \left(\frac{x}{x + y}\right)}}}{x} \]

    if -5e3 < (/.f64 (exp.f64 (*.f64 x (log.f64 (/.f64 x (+.f64 x y))))) x) < -5.00000000000000013e-301

    1. Initial program 19.31

      \[\frac{e^{x \cdot \log \left(\frac{x}{x + y}\right)}}{x} \]
    2. Simplified19.31

      \[\leadsto \color{blue}{\frac{{\left(\frac{x}{x + y}\right)}^{x}}{x}} \]
      Proof

      [Start]19.31

      \[ \frac{e^{x \cdot \log \left(\frac{x}{x + y}\right)}}{x} \]

      *-commutative [=>]19.31

      \[ \frac{e^{\color{blue}{\log \left(\frac{x}{x + y}\right) \cdot x}}}{x} \]

      exp-to-pow [=>]19.31

      \[ \frac{\color{blue}{{\left(\frac{x}{x + y}\right)}^{x}}}{x} \]
    3. Taylor expanded in x around inf 0.44

      \[\leadsto \frac{\color{blue}{e^{-1 \cdot y}}}{x} \]
    4. Simplified0.44

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

      [Start]0.44

      \[ \frac{e^{-1 \cdot y}}{x} \]

      mul-1-neg [=>]0.44

      \[ \frac{e^{\color{blue}{-y}}}{x} \]
    5. Applied egg-rr0.44

      \[\leadsto \color{blue}{{\left(x \cdot e^{y}\right)}^{-1}} \]
    6. Taylor expanded in x around 0 0.44

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

    if 0.0 < (/.f64 (exp.f64 (*.f64 x (log.f64 (/.f64 x (+.f64 x y))))) x) < 9.9999999999999997e-73

    1. Initial program 23.1

      \[\frac{e^{x \cdot \log \left(\frac{x}{x + y}\right)}}{x} \]
    2. Simplified23.1

      \[\leadsto \color{blue}{\frac{{\left(\frac{x}{x + y}\right)}^{x}}{x}} \]
      Proof

      [Start]23.1

      \[ \frac{e^{x \cdot \log \left(\frac{x}{x + y}\right)}}{x} \]

      *-commutative [=>]23.1

      \[ \frac{e^{\color{blue}{\log \left(\frac{x}{x + y}\right) \cdot x}}}{x} \]

      exp-to-pow [=>]23.1

      \[ \frac{\color{blue}{{\left(\frac{x}{x + y}\right)}^{x}}}{x} \]
    3. Taylor expanded in x around inf 0.15

      \[\leadsto \frac{\color{blue}{e^{-1 \cdot y}}}{x} \]
    4. Simplified0.15

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

      [Start]0.15

      \[ \frac{e^{-1 \cdot y}}{x} \]

      mul-1-neg [=>]0.15

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

    if 9.9999999999999997e-73 < (/.f64 (exp.f64 (*.f64 x (log.f64 (/.f64 x (+.f64 x y))))) x)

    1. Initial program 1.22

      \[\frac{e^{x \cdot \log \left(\frac{x}{x + y}\right)}}{x} \]
    2. Simplified1.21

      \[\leadsto \color{blue}{\frac{{\left(\frac{x}{x + y}\right)}^{x}}{x}} \]
      Proof

      [Start]1.22

      \[ \frac{e^{x \cdot \log \left(\frac{x}{x + y}\right)}}{x} \]

      *-commutative [=>]1.22

      \[ \frac{e^{\color{blue}{\log \left(\frac{x}{x + y}\right) \cdot x}}}{x} \]

      exp-to-pow [=>]1.21

      \[ \frac{\color{blue}{{\left(\frac{x}{x + y}\right)}^{x}}}{x} \]
  3. Recombined 4 regimes into one program.
  4. Final simplification0.77

    \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{e^{x \cdot \log \left(\frac{x}{x + y}\right)}}{x} \leq -5000:\\ \;\;\;\;\frac{{\left(e^{x}\right)}^{\log \left(\frac{x}{x + y}\right)}}{x}\\ \mathbf{elif}\;\frac{e^{x \cdot \log \left(\frac{x}{x + y}\right)}}{x} \leq -5 \cdot 10^{-301}:\\ \;\;\;\;\frac{1}{x \cdot e^{y}}\\ \mathbf{elif}\;\frac{e^{x \cdot \log \left(\frac{x}{x + y}\right)}}{x} \leq 0:\\ \;\;\;\;\frac{{\left(e^{x}\right)}^{\log \left(\frac{x}{x + y}\right)}}{x}\\ \mathbf{elif}\;\frac{e^{x \cdot \log \left(\frac{x}{x + y}\right)}}{x} \leq 10^{-72}:\\ \;\;\;\;\frac{e^{-y}}{x}\\ \mathbf{else}:\\ \;\;\;\;\frac{{\left(\frac{x}{x + y}\right)}^{x}}{x}\\ \end{array} \]

Alternatives

Alternative 1
Error1.03%
Cost6921
\[\begin{array}{l} \mathbf{if}\;x \leq -1 \cdot 10^{+63} \lor \neg \left(x \leq 1.12\right):\\ \;\;\;\;\frac{e^{-y}}{x}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{x}\\ \end{array} \]
Alternative 2
Error1.03%
Cost6920
\[\begin{array}{l} \mathbf{if}\;x \leq -1 \cdot 10^{+63}:\\ \;\;\;\;\frac{1}{x \cdot e^{y}}\\ \mathbf{elif}\;x \leq 0.42:\\ \;\;\;\;\frac{1}{x}\\ \mathbf{else}:\\ \;\;\;\;\frac{e^{-y}}{x}\\ \end{array} \]
Alternative 3
Error7.82%
Cost713
\[\begin{array}{l} \mathbf{if}\;x \leq -3.2 \cdot 10^{+63} \lor \neg \left(x \leq 7.5\right):\\ \;\;\;\;\frac{1}{x + x \cdot y}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{x}\\ \end{array} \]
Alternative 4
Error12.36%
Cost452
\[\begin{array}{l} \mathbf{if}\;y \leq 2 \cdot 10^{+22}:\\ \;\;\;\;\frac{1}{x}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{x \cdot x}\\ \end{array} \]
Alternative 5
Error15.34%
Cost192
\[\frac{1}{x} \]

Error

Reproduce?

herbie shell --seed 2023090 
(FPCore (x y)
  :name "Numeric.SpecFunctions:invIncompleteBetaWorker from math-functions-0.1.5.2, F"
  :precision binary64

  :herbie-target
  (if (< y -3.7311844206647956e+94) (/ (exp (/ -1.0 y)) x) (if (< y 2.817959242728288e+37) (/ (pow (/ x (+ y x)) x) x) (if (< y 2.347387415166998e+178) (log (exp (/ (pow (/ x (+ y x)) x) x))) (/ (exp (/ -1.0 y)) x))))

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