Average Error: 22.4 → 0.0
Time: 5.1s
Precision: binary64
\[1 - \frac{\left(1 - x\right) \cdot y}{y + 1} \]
\[\begin{array}{l} t_0 := \left(\frac{1}{y} + \left(\frac{1}{{y}^{3}} + \left(x + \frac{x}{{y}^{2}}\right)\right)\right) + \left(\left(\frac{-1}{{y}^{2}} - \frac{x}{{y}^{3}}\right) - \frac{x}{y}\right)\\ \mathbf{if}\;y \leq -11212.03429386349:\\ \;\;\;\;t_0\\ \mathbf{elif}\;y \leq 16093.960005574929:\\ \;\;\;\;\left(1 + \frac{y \cdot x}{y + 1}\right) - \frac{y}{y + 1}\\ \mathbf{else}:\\ \;\;\;\;t_0\\ \end{array} \]
(FPCore (x y) :precision binary64 (- 1.0 (/ (* (- 1.0 x) y) (+ y 1.0))))
(FPCore (x y)
 :precision binary64
 (let* ((t_0
         (+
          (+ (/ 1.0 y) (+ (/ 1.0 (pow y 3.0)) (+ x (/ x (pow y 2.0)))))
          (- (- (/ -1.0 (pow y 2.0)) (/ x (pow y 3.0))) (/ x y)))))
   (if (<= y -11212.03429386349)
     t_0
     (if (<= y 16093.960005574929)
       (- (+ 1.0 (/ (* y x) (+ y 1.0))) (/ y (+ y 1.0)))
       t_0))))
double code(double x, double y) {
	return 1.0 - (((1.0 - x) * y) / (y + 1.0));
}
double code(double x, double y) {
	double t_0 = ((1.0 / y) + ((1.0 / pow(y, 3.0)) + (x + (x / pow(y, 2.0))))) + (((-1.0 / pow(y, 2.0)) - (x / pow(y, 3.0))) - (x / y));
	double tmp;
	if (y <= -11212.03429386349) {
		tmp = t_0;
	} else if (y <= 16093.960005574929) {
		tmp = (1.0 + ((y * x) / (y + 1.0))) - (y / (y + 1.0));
	} else {
		tmp = t_0;
	}
	return tmp;
}
real(8) function code(x, y)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    code = 1.0d0 - (((1.0d0 - x) * y) / (y + 1.0d0))
end function
real(8) function code(x, y)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8) :: t_0
    real(8) :: tmp
    t_0 = ((1.0d0 / y) + ((1.0d0 / (y ** 3.0d0)) + (x + (x / (y ** 2.0d0))))) + ((((-1.0d0) / (y ** 2.0d0)) - (x / (y ** 3.0d0))) - (x / y))
    if (y <= (-11212.03429386349d0)) then
        tmp = t_0
    else if (y <= 16093.960005574929d0) then
        tmp = (1.0d0 + ((y * x) / (y + 1.0d0))) - (y / (y + 1.0d0))
    else
        tmp = t_0
    end if
    code = tmp
end function
public static double code(double x, double y) {
	return 1.0 - (((1.0 - x) * y) / (y + 1.0));
}
public static double code(double x, double y) {
	double t_0 = ((1.0 / y) + ((1.0 / Math.pow(y, 3.0)) + (x + (x / Math.pow(y, 2.0))))) + (((-1.0 / Math.pow(y, 2.0)) - (x / Math.pow(y, 3.0))) - (x / y));
	double tmp;
	if (y <= -11212.03429386349) {
		tmp = t_0;
	} else if (y <= 16093.960005574929) {
		tmp = (1.0 + ((y * x) / (y + 1.0))) - (y / (y + 1.0));
	} else {
		tmp = t_0;
	}
	return tmp;
}
def code(x, y):
	return 1.0 - (((1.0 - x) * y) / (y + 1.0))
def code(x, y):
	t_0 = ((1.0 / y) + ((1.0 / math.pow(y, 3.0)) + (x + (x / math.pow(y, 2.0))))) + (((-1.0 / math.pow(y, 2.0)) - (x / math.pow(y, 3.0))) - (x / y))
	tmp = 0
	if y <= -11212.03429386349:
		tmp = t_0
	elif y <= 16093.960005574929:
		tmp = (1.0 + ((y * x) / (y + 1.0))) - (y / (y + 1.0))
	else:
		tmp = t_0
	return tmp
function code(x, y)
	return Float64(1.0 - Float64(Float64(Float64(1.0 - x) * y) / Float64(y + 1.0)))
end
function code(x, y)
	t_0 = Float64(Float64(Float64(1.0 / y) + Float64(Float64(1.0 / (y ^ 3.0)) + Float64(x + Float64(x / (y ^ 2.0))))) + Float64(Float64(Float64(-1.0 / (y ^ 2.0)) - Float64(x / (y ^ 3.0))) - Float64(x / y)))
	tmp = 0.0
	if (y <= -11212.03429386349)
		tmp = t_0;
	elseif (y <= 16093.960005574929)
		tmp = Float64(Float64(1.0 + Float64(Float64(y * x) / Float64(y + 1.0))) - Float64(y / Float64(y + 1.0)));
	else
		tmp = t_0;
	end
	return tmp
end
function tmp = code(x, y)
	tmp = 1.0 - (((1.0 - x) * y) / (y + 1.0));
end
function tmp_2 = code(x, y)
	t_0 = ((1.0 / y) + ((1.0 / (y ^ 3.0)) + (x + (x / (y ^ 2.0))))) + (((-1.0 / (y ^ 2.0)) - (x / (y ^ 3.0))) - (x / y));
	tmp = 0.0;
	if (y <= -11212.03429386349)
		tmp = t_0;
	elseif (y <= 16093.960005574929)
		tmp = (1.0 + ((y * x) / (y + 1.0))) - (y / (y + 1.0));
	else
		tmp = t_0;
	end
	tmp_2 = tmp;
end
code[x_, y_] := N[(1.0 - N[(N[(N[(1.0 - x), $MachinePrecision] * y), $MachinePrecision] / N[(y + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
code[x_, y_] := Block[{t$95$0 = N[(N[(N[(1.0 / y), $MachinePrecision] + N[(N[(1.0 / N[Power[y, 3.0], $MachinePrecision]), $MachinePrecision] + N[(x + N[(x / N[Power[y, 2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(N[(-1.0 / N[Power[y, 2.0], $MachinePrecision]), $MachinePrecision] - N[(x / N[Power[y, 3.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(x / y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[y, -11212.03429386349], t$95$0, If[LessEqual[y, 16093.960005574929], N[(N[(1.0 + N[(N[(y * x), $MachinePrecision] / N[(y + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(y / N[(y + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$0]]]
1 - \frac{\left(1 - x\right) \cdot y}{y + 1}
\begin{array}{l}
t_0 := \left(\frac{1}{y} + \left(\frac{1}{{y}^{3}} + \left(x + \frac{x}{{y}^{2}}\right)\right)\right) + \left(\left(\frac{-1}{{y}^{2}} - \frac{x}{{y}^{3}}\right) - \frac{x}{y}\right)\\
\mathbf{if}\;y \leq -11212.03429386349:\\
\;\;\;\;t_0\\

\mathbf{elif}\;y \leq 16093.960005574929:\\
\;\;\;\;\left(1 + \frac{y \cdot x}{y + 1}\right) - \frac{y}{y + 1}\\

\mathbf{else}:\\
\;\;\;\;t_0\\


\end{array}

Error

Bits error versus x

Bits error versus y

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Target

Original22.4
Target0.2
Herbie0.0
\[\begin{array}{l} \mathbf{if}\;y < -3693.8482788297247:\\ \;\;\;\;\frac{1}{y} - \left(\frac{x}{y} - x\right)\\ \mathbf{elif}\;y < 6799310503.41891:\\ \;\;\;\;1 - \frac{\left(1 - x\right) \cdot y}{y + 1}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{y} - \left(\frac{x}{y} - x\right)\\ \end{array} \]

Derivation

  1. Split input into 2 regimes
  2. if y < -11212.034293863489 or 16093.960005574929 < y

    1. Initial program 45.7

      \[1 - \frac{\left(1 - x\right) \cdot y}{y + 1} \]
    2. Simplified29.7

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

      \[\leadsto \color{blue}{\left(\frac{1}{y} + \left(\frac{1}{{y}^{3}} + \left(\frac{x}{{y}^{2}} + x\right)\right)\right) - \left(\frac{x}{y} + \left(\frac{x}{{y}^{3}} + \frac{1}{{y}^{2}}\right)\right)} \]

    if -11212.034293863489 < y < 16093.960005574929

    1. Initial program 0.0

      \[1 - \frac{\left(1 - x\right) \cdot y}{y + 1} \]
    2. Simplified0.0

      \[\leadsto \color{blue}{\mathsf{fma}\left(1 - x, \frac{y}{-1 - y}, 1\right)} \]
    3. Taylor expanded in x around 0 0.0

      \[\leadsto \color{blue}{\left(1 + \frac{y \cdot x}{1 + y}\right) - \frac{y}{1 + y}} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification0.0

    \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq -11212.03429386349:\\ \;\;\;\;\left(\frac{1}{y} + \left(\frac{1}{{y}^{3}} + \left(x + \frac{x}{{y}^{2}}\right)\right)\right) + \left(\left(\frac{-1}{{y}^{2}} - \frac{x}{{y}^{3}}\right) - \frac{x}{y}\right)\\ \mathbf{elif}\;y \leq 16093.960005574929:\\ \;\;\;\;\left(1 + \frac{y \cdot x}{y + 1}\right) - \frac{y}{y + 1}\\ \mathbf{else}:\\ \;\;\;\;\left(\frac{1}{y} + \left(\frac{1}{{y}^{3}} + \left(x + \frac{x}{{y}^{2}}\right)\right)\right) + \left(\left(\frac{-1}{{y}^{2}} - \frac{x}{{y}^{3}}\right) - \frac{x}{y}\right)\\ \end{array} \]

Reproduce

herbie shell --seed 2022152 
(FPCore (x y)
  :name "Diagrams.Trail:splitAtParam  from diagrams-lib-1.3.0.3, D"
  :precision binary64

  :herbie-target
  (if (< y -3693.8482788297247) (- (/ 1.0 y) (- (/ x y) x)) (if (< y 6799310503.41891) (- 1.0 (/ (* (- 1.0 x) y) (+ y 1.0))) (- (/ 1.0 y) (- (/ x y) x))))

  (- 1.0 (/ (* (- 1.0 x) y) (+ y 1.0))))