Linear.Projection:perspective from linear-1.19.1.3, B

Percentage Accurate: 77.5% → 97.4%
Time: 6.0s
Alternatives: 6
Speedup: 0.7×

Specification

?
\[\begin{array}{l} \\ \frac{\left(x \cdot 2\right) \cdot y}{x - y} \end{array} \]
(FPCore (x y) :precision binary64 (/ (* (* x 2.0) y) (- x y)))
double code(double x, double y) {
	return ((x * 2.0) * y) / (x - y);
}
real(8) function code(x, y)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    code = ((x * 2.0d0) * y) / (x - y)
end function
public static double code(double x, double y) {
	return ((x * 2.0) * y) / (x - y);
}
def code(x, y):
	return ((x * 2.0) * y) / (x - y)
function code(x, y)
	return Float64(Float64(Float64(x * 2.0) * y) / Float64(x - y))
end
function tmp = code(x, y)
	tmp = ((x * 2.0) * y) / (x - y);
end
code[x_, y_] := N[(N[(N[(x * 2.0), $MachinePrecision] * y), $MachinePrecision] / N[(x - y), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{\left(x \cdot 2\right) \cdot y}{x - 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 6 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: 77.5% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \frac{\left(x \cdot 2\right) \cdot y}{x - y} \end{array} \]
(FPCore (x y) :precision binary64 (/ (* (* x 2.0) y) (- x y)))
double code(double x, double y) {
	return ((x * 2.0) * y) / (x - y);
}
real(8) function code(x, y)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    code = ((x * 2.0d0) * y) / (x - y)
end function
public static double code(double x, double y) {
	return ((x * 2.0) * y) / (x - y);
}
def code(x, y):
	return ((x * 2.0) * y) / (x - y)
function code(x, y)
	return Float64(Float64(Float64(x * 2.0) * y) / Float64(x - y))
end
function tmp = code(x, y)
	tmp = ((x * 2.0) * y) / (x - y);
end
code[x_, y_] := N[(N[(N[(x * 2.0), $MachinePrecision] * y), $MachinePrecision] / N[(x - y), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{\left(x \cdot 2\right) \cdot y}{x - y}
\end{array}

Alternative 1: 97.4% accurate, 0.6× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{x \cdot 2}{\frac{x}{y} - 1}\\ \mathbf{if}\;y \leq -5.1 \cdot 10^{-86}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;y \leq 2.75 \cdot 10^{-182}:\\ \;\;\;\;\frac{x}{x - y} \cdot \left(2 \cdot y\right)\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
(FPCore (x y)
 :precision binary64
 (let* ((t_0 (/ (* x 2.0) (- (/ x y) 1.0))))
   (if (<= y -5.1e-86)
     t_0
     (if (<= y 2.75e-182) (* (/ x (- x y)) (* 2.0 y)) t_0))))
double code(double x, double y) {
	double t_0 = (x * 2.0) / ((x / y) - 1.0);
	double tmp;
	if (y <= -5.1e-86) {
		tmp = t_0;
	} else if (y <= 2.75e-182) {
		tmp = (x / (x - y)) * (2.0 * y);
	} else {
		tmp = t_0;
	}
	return tmp;
}
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 = (x * 2.0d0) / ((x / y) - 1.0d0)
    if (y <= (-5.1d-86)) then
        tmp = t_0
    else if (y <= 2.75d-182) then
        tmp = (x / (x - y)) * (2.0d0 * y)
    else
        tmp = t_0
    end if
    code = tmp
end function
public static double code(double x, double y) {
	double t_0 = (x * 2.0) / ((x / y) - 1.0);
	double tmp;
	if (y <= -5.1e-86) {
		tmp = t_0;
	} else if (y <= 2.75e-182) {
		tmp = (x / (x - y)) * (2.0 * y);
	} else {
		tmp = t_0;
	}
	return tmp;
}
def code(x, y):
	t_0 = (x * 2.0) / ((x / y) - 1.0)
	tmp = 0
	if y <= -5.1e-86:
		tmp = t_0
	elif y <= 2.75e-182:
		tmp = (x / (x - y)) * (2.0 * y)
	else:
		tmp = t_0
	return tmp
function code(x, y)
	t_0 = Float64(Float64(x * 2.0) / Float64(Float64(x / y) - 1.0))
	tmp = 0.0
	if (y <= -5.1e-86)
		tmp = t_0;
	elseif (y <= 2.75e-182)
		tmp = Float64(Float64(x / Float64(x - y)) * Float64(2.0 * y));
	else
		tmp = t_0;
	end
	return tmp
end
function tmp_2 = code(x, y)
	t_0 = (x * 2.0) / ((x / y) - 1.0);
	tmp = 0.0;
	if (y <= -5.1e-86)
		tmp = t_0;
	elseif (y <= 2.75e-182)
		tmp = (x / (x - y)) * (2.0 * y);
	else
		tmp = t_0;
	end
	tmp_2 = tmp;
end
code[x_, y_] := Block[{t$95$0 = N[(N[(x * 2.0), $MachinePrecision] / N[(N[(x / y), $MachinePrecision] - 1.0), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[y, -5.1e-86], t$95$0, If[LessEqual[y, 2.75e-182], N[(N[(x / N[(x - y), $MachinePrecision]), $MachinePrecision] * N[(2.0 * y), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \frac{x \cdot 2}{\frac{x}{y} - 1}\\
\mathbf{if}\;y \leq -5.1 \cdot 10^{-86}:\\
\;\;\;\;t\_0\\

\mathbf{elif}\;y \leq 2.75 \cdot 10^{-182}:\\
\;\;\;\;\frac{x}{x - y} \cdot \left(2 \cdot y\right)\\

\mathbf{else}:\\
\;\;\;\;t\_0\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if y < -5.10000000000000006e-86 or 2.74999999999999996e-182 < y

    1. Initial program 75.1%

      \[\frac{\left(x \cdot 2\right) \cdot y}{x - y} \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. lift-/.f64N/A

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

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

        \[\leadsto \color{blue}{\left(x \cdot 2\right) \cdot \frac{y}{x - y}} \]
      4. clear-numN/A

        \[\leadsto \left(x \cdot 2\right) \cdot \color{blue}{\frac{1}{\frac{x - y}{y}}} \]
      5. un-div-invN/A

        \[\leadsto \color{blue}{\frac{x \cdot 2}{\frac{x - y}{y}}} \]
      6. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{x \cdot 2}{\frac{x - y}{y}}} \]
      7. lift-*.f64N/A

        \[\leadsto \frac{\color{blue}{x \cdot 2}}{\frac{x - y}{y}} \]
      8. *-commutativeN/A

        \[\leadsto \frac{\color{blue}{2 \cdot x}}{\frac{x - y}{y}} \]
      9. lower-*.f64N/A

        \[\leadsto \frac{\color{blue}{2 \cdot x}}{\frac{x - y}{y}} \]
      10. lower-/.f64100.0

        \[\leadsto \frac{2 \cdot x}{\color{blue}{\frac{x - y}{y}}} \]
    4. Applied rewrites100.0%

      \[\leadsto \color{blue}{\frac{2 \cdot x}{\frac{x - y}{y}}} \]
    5. Step-by-step derivation
      1. lift-/.f64N/A

        \[\leadsto \frac{2 \cdot x}{\color{blue}{\frac{x - y}{y}}} \]
      2. lift--.f64N/A

        \[\leadsto \frac{2 \cdot x}{\frac{\color{blue}{x - y}}{y}} \]
      3. div-subN/A

        \[\leadsto \frac{2 \cdot x}{\color{blue}{\frac{x}{y} - \frac{y}{y}}} \]
      4. lift-/.f64N/A

        \[\leadsto \frac{2 \cdot x}{\color{blue}{\frac{x}{y}} - \frac{y}{y}} \]
      5. *-inversesN/A

        \[\leadsto \frac{2 \cdot x}{\frac{x}{y} - \color{blue}{1}} \]
      6. lower--.f64100.0

        \[\leadsto \frac{2 \cdot x}{\color{blue}{\frac{x}{y} - 1}} \]
    6. Applied rewrites100.0%

      \[\leadsto \frac{2 \cdot x}{\color{blue}{\frac{x}{y} - 1}} \]

    if -5.10000000000000006e-86 < y < 2.74999999999999996e-182

    1. Initial program 73.2%

      \[\frac{\left(x \cdot 2\right) \cdot y}{x - y} \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. lift-/.f64N/A

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

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

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

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

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

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

        \[\leadsto \color{blue}{\left(2 \cdot y\right) \cdot \frac{x}{x - y}} \]
      8. *-commutativeN/A

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

        \[\leadsto \color{blue}{\left(y \cdot 2\right)} \cdot \frac{x}{x - y} \]
      10. lower-/.f64100.0

        \[\leadsto \left(y \cdot 2\right) \cdot \color{blue}{\frac{x}{x - y}} \]
    4. Applied rewrites100.0%

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq -5.1 \cdot 10^{-86}:\\ \;\;\;\;\frac{x \cdot 2}{\frac{x}{y} - 1}\\ \mathbf{elif}\;y \leq 2.75 \cdot 10^{-182}:\\ \;\;\;\;\frac{x}{x - y} \cdot \left(2 \cdot y\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{x \cdot 2}{\frac{x}{y} - 1}\\ \end{array} \]
  5. Add Preprocessing

Alternative 2: 93.3% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;y \leq -2.15 \cdot 10^{+244}:\\ \;\;\;\;-2 \cdot \mathsf{fma}\left(\frac{x}{y}, x, x\right)\\ \mathbf{elif}\;y \leq 3.8 \cdot 10^{+167}:\\ \;\;\;\;\frac{x}{x - y} \cdot \left(2 \cdot y\right)\\ \mathbf{else}:\\ \;\;\;\;-2 \cdot x\\ \end{array} \end{array} \]
(FPCore (x y)
 :precision binary64
 (if (<= y -2.15e+244)
   (* -2.0 (fma (/ x y) x x))
   (if (<= y 3.8e+167) (* (/ x (- x y)) (* 2.0 y)) (* -2.0 x))))
double code(double x, double y) {
	double tmp;
	if (y <= -2.15e+244) {
		tmp = -2.0 * fma((x / y), x, x);
	} else if (y <= 3.8e+167) {
		tmp = (x / (x - y)) * (2.0 * y);
	} else {
		tmp = -2.0 * x;
	}
	return tmp;
}
function code(x, y)
	tmp = 0.0
	if (y <= -2.15e+244)
		tmp = Float64(-2.0 * fma(Float64(x / y), x, x));
	elseif (y <= 3.8e+167)
		tmp = Float64(Float64(x / Float64(x - y)) * Float64(2.0 * y));
	else
		tmp = Float64(-2.0 * x);
	end
	return tmp
end
code[x_, y_] := If[LessEqual[y, -2.15e+244], N[(-2.0 * N[(N[(x / y), $MachinePrecision] * x + x), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 3.8e+167], N[(N[(x / N[(x - y), $MachinePrecision]), $MachinePrecision] * N[(2.0 * y), $MachinePrecision]), $MachinePrecision], N[(-2.0 * x), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;y \leq -2.15 \cdot 10^{+244}:\\
\;\;\;\;-2 \cdot \mathsf{fma}\left(\frac{x}{y}, x, x\right)\\

\mathbf{elif}\;y \leq 3.8 \cdot 10^{+167}:\\
\;\;\;\;\frac{x}{x - y} \cdot \left(2 \cdot y\right)\\

\mathbf{else}:\\
\;\;\;\;-2 \cdot x\\


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

    1. Initial program 42.6%

      \[\frac{\left(x \cdot 2\right) \cdot y}{x - y} \]
    2. Add Preprocessing
    3. Taylor expanded in y around inf

      \[\leadsto \color{blue}{-2 \cdot x + -2 \cdot \frac{{x}^{2}}{y}} \]
    4. Step-by-step derivation
      1. distribute-lft-outN/A

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

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

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

        \[\leadsto \color{blue}{\left(\frac{{x}^{2}}{y} + x\right)} \cdot -2 \]
      5. unpow2N/A

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{y}, x, x\right)} \cdot -2 \]
      9. lower-/.f6494.4

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x}{y}}, x, x\right) \cdot -2 \]
    5. Applied rewrites94.4%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{y}, x, x\right) \cdot -2} \]

    if -2.1499999999999999e244 < y < 3.79999999999999994e167

    1. Initial program 78.8%

      \[\frac{\left(x \cdot 2\right) \cdot y}{x - y} \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. lift-/.f64N/A

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

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

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

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

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

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

        \[\leadsto \color{blue}{\left(2 \cdot y\right) \cdot \frac{x}{x - y}} \]
      8. *-commutativeN/A

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

        \[\leadsto \color{blue}{\left(y \cdot 2\right)} \cdot \frac{x}{x - y} \]
      10. lower-/.f6497.5

        \[\leadsto \left(y \cdot 2\right) \cdot \color{blue}{\frac{x}{x - y}} \]
    4. Applied rewrites97.5%

      \[\leadsto \color{blue}{\left(y \cdot 2\right) \cdot \frac{x}{x - y}} \]

    if 3.79999999999999994e167 < y

    1. Initial program 66.8%

      \[\frac{\left(x \cdot 2\right) \cdot y}{x - y} \]
    2. Add Preprocessing
    3. Taylor expanded in y around inf

      \[\leadsto \color{blue}{-2 \cdot x} \]
    4. Step-by-step derivation
      1. lower-*.f6497.5

        \[\leadsto \color{blue}{-2 \cdot x} \]
    5. Applied rewrites97.5%

      \[\leadsto \color{blue}{-2 \cdot x} \]
  3. Recombined 3 regimes into one program.
  4. Final simplification97.3%

    \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq -2.15 \cdot 10^{+244}:\\ \;\;\;\;-2 \cdot \mathsf{fma}\left(\frac{x}{y}, x, x\right)\\ \mathbf{elif}\;y \leq 3.8 \cdot 10^{+167}:\\ \;\;\;\;\frac{x}{x - y} \cdot \left(2 \cdot y\right)\\ \mathbf{else}:\\ \;\;\;\;-2 \cdot x\\ \end{array} \]
  5. Add Preprocessing

Alternative 3: 74.3% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;y \leq -1.65 \cdot 10^{-88}:\\ \;\;\;\;-2 \cdot \mathsf{fma}\left(\frac{x}{y}, x, x\right)\\ \mathbf{elif}\;y \leq 0.000125:\\ \;\;\;\;\mathsf{fma}\left(\frac{2}{x}, y, 2\right) \cdot y\\ \mathbf{else}:\\ \;\;\;\;-2 \cdot x\\ \end{array} \end{array} \]
(FPCore (x y)
 :precision binary64
 (if (<= y -1.65e-88)
   (* -2.0 (fma (/ x y) x x))
   (if (<= y 0.000125) (* (fma (/ 2.0 x) y 2.0) y) (* -2.0 x))))
double code(double x, double y) {
	double tmp;
	if (y <= -1.65e-88) {
		tmp = -2.0 * fma((x / y), x, x);
	} else if (y <= 0.000125) {
		tmp = fma((2.0 / x), y, 2.0) * y;
	} else {
		tmp = -2.0 * x;
	}
	return tmp;
}
function code(x, y)
	tmp = 0.0
	if (y <= -1.65e-88)
		tmp = Float64(-2.0 * fma(Float64(x / y), x, x));
	elseif (y <= 0.000125)
		tmp = Float64(fma(Float64(2.0 / x), y, 2.0) * y);
	else
		tmp = Float64(-2.0 * x);
	end
	return tmp
end
code[x_, y_] := If[LessEqual[y, -1.65e-88], N[(-2.0 * N[(N[(x / y), $MachinePrecision] * x + x), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 0.000125], N[(N[(N[(2.0 / x), $MachinePrecision] * y + 2.0), $MachinePrecision] * y), $MachinePrecision], N[(-2.0 * x), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;y \leq -1.65 \cdot 10^{-88}:\\
\;\;\;\;-2 \cdot \mathsf{fma}\left(\frac{x}{y}, x, x\right)\\

\mathbf{elif}\;y \leq 0.000125:\\
\;\;\;\;\mathsf{fma}\left(\frac{2}{x}, y, 2\right) \cdot y\\

\mathbf{else}:\\
\;\;\;\;-2 \cdot x\\


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

    1. Initial program 73.4%

      \[\frac{\left(x \cdot 2\right) \cdot y}{x - y} \]
    2. Add Preprocessing
    3. Taylor expanded in y around inf

      \[\leadsto \color{blue}{-2 \cdot x + -2 \cdot \frac{{x}^{2}}{y}} \]
    4. Step-by-step derivation
      1. distribute-lft-outN/A

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

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

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

        \[\leadsto \color{blue}{\left(\frac{{x}^{2}}{y} + x\right)} \cdot -2 \]
      5. unpow2N/A

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{y}, x, x\right)} \cdot -2 \]
      9. lower-/.f6473.7

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{x}{y}}, x, x\right) \cdot -2 \]
    5. Applied rewrites73.7%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x}{y}, x, x\right) \cdot -2} \]

    if -1.64999999999999997e-88 < y < 1.25e-4

    1. Initial program 77.9%

      \[\frac{\left(x \cdot 2\right) \cdot y}{x - y} \]
    2. Add Preprocessing
    3. Taylor expanded in y around 0

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

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

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

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

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

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

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(2 \cdot \frac{1}{x}, y, 2\right)} \cdot y \]
      10. associate-*r/N/A

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

        \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{2}}{x}, y, 2\right) \cdot y \]
      12. lower-/.f6481.2

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{2}{x}}, y, 2\right) \cdot y \]
    5. Applied rewrites81.2%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{2}{x}, y, 2\right) \cdot y} \]

    if 1.25e-4 < y

    1. Initial program 69.7%

      \[\frac{\left(x \cdot 2\right) \cdot y}{x - y} \]
    2. Add Preprocessing
    3. Taylor expanded in y around inf

      \[\leadsto \color{blue}{-2 \cdot x} \]
    4. Step-by-step derivation
      1. lower-*.f6480.7

        \[\leadsto \color{blue}{-2 \cdot x} \]
    5. Applied rewrites80.7%

      \[\leadsto \color{blue}{-2 \cdot x} \]
  3. Recombined 3 regimes into one program.
  4. Final simplification78.8%

    \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq -1.65 \cdot 10^{-88}:\\ \;\;\;\;-2 \cdot \mathsf{fma}\left(\frac{x}{y}, x, x\right)\\ \mathbf{elif}\;y \leq 0.000125:\\ \;\;\;\;\mathsf{fma}\left(\frac{2}{x}, y, 2\right) \cdot y\\ \mathbf{else}:\\ \;\;\;\;-2 \cdot x\\ \end{array} \]
  5. Add Preprocessing

Alternative 4: 74.4% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;y \leq -1.65 \cdot 10^{-88}:\\ \;\;\;\;-2 \cdot x\\ \mathbf{elif}\;y \leq 0.000125:\\ \;\;\;\;\mathsf{fma}\left(\frac{2}{x}, y, 2\right) \cdot y\\ \mathbf{else}:\\ \;\;\;\;-2 \cdot x\\ \end{array} \end{array} \]
(FPCore (x y)
 :precision binary64
 (if (<= y -1.65e-88)
   (* -2.0 x)
   (if (<= y 0.000125) (* (fma (/ 2.0 x) y 2.0) y) (* -2.0 x))))
double code(double x, double y) {
	double tmp;
	if (y <= -1.65e-88) {
		tmp = -2.0 * x;
	} else if (y <= 0.000125) {
		tmp = fma((2.0 / x), y, 2.0) * y;
	} else {
		tmp = -2.0 * x;
	}
	return tmp;
}
function code(x, y)
	tmp = 0.0
	if (y <= -1.65e-88)
		tmp = Float64(-2.0 * x);
	elseif (y <= 0.000125)
		tmp = Float64(fma(Float64(2.0 / x), y, 2.0) * y);
	else
		tmp = Float64(-2.0 * x);
	end
	return tmp
end
code[x_, y_] := If[LessEqual[y, -1.65e-88], N[(-2.0 * x), $MachinePrecision], If[LessEqual[y, 0.000125], N[(N[(N[(2.0 / x), $MachinePrecision] * y + 2.0), $MachinePrecision] * y), $MachinePrecision], N[(-2.0 * x), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;y \leq -1.65 \cdot 10^{-88}:\\
\;\;\;\;-2 \cdot x\\

\mathbf{elif}\;y \leq 0.000125:\\
\;\;\;\;\mathsf{fma}\left(\frac{2}{x}, y, 2\right) \cdot y\\

\mathbf{else}:\\
\;\;\;\;-2 \cdot x\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if y < -1.64999999999999997e-88 or 1.25e-4 < y

    1. Initial program 71.7%

      \[\frac{\left(x \cdot 2\right) \cdot y}{x - y} \]
    2. Add Preprocessing
    3. Taylor expanded in y around inf

      \[\leadsto \color{blue}{-2 \cdot x} \]
    4. Step-by-step derivation
      1. lower-*.f6476.5

        \[\leadsto \color{blue}{-2 \cdot x} \]
    5. Applied rewrites76.5%

      \[\leadsto \color{blue}{-2 \cdot x} \]

    if -1.64999999999999997e-88 < y < 1.25e-4

    1. Initial program 77.9%

      \[\frac{\left(x \cdot 2\right) \cdot y}{x - y} \]
    2. Add Preprocessing
    3. Taylor expanded in y around 0

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

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

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

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

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

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

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(2 \cdot \frac{1}{x}, y, 2\right)} \cdot y \]
      10. associate-*r/N/A

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

        \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{2}}{x}, y, 2\right) \cdot y \]
      12. lower-/.f6481.2

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{2}{x}}, y, 2\right) \cdot y \]
    5. Applied rewrites81.2%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{2}{x}, y, 2\right) \cdot y} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 5: 74.4% accurate, 1.4× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;y \leq -1.65 \cdot 10^{-88}:\\ \;\;\;\;-2 \cdot x\\ \mathbf{elif}\;y \leq 0.225:\\ \;\;\;\;2 \cdot y\\ \mathbf{else}:\\ \;\;\;\;-2 \cdot x\\ \end{array} \end{array} \]
(FPCore (x y)
 :precision binary64
 (if (<= y -1.65e-88) (* -2.0 x) (if (<= y 0.225) (* 2.0 y) (* -2.0 x))))
double code(double x, double y) {
	double tmp;
	if (y <= -1.65e-88) {
		tmp = -2.0 * x;
	} else if (y <= 0.225) {
		tmp = 2.0 * y;
	} else {
		tmp = -2.0 * x;
	}
	return tmp;
}
real(8) function code(x, y)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8) :: tmp
    if (y <= (-1.65d-88)) then
        tmp = (-2.0d0) * x
    else if (y <= 0.225d0) then
        tmp = 2.0d0 * y
    else
        tmp = (-2.0d0) * x
    end if
    code = tmp
end function
public static double code(double x, double y) {
	double tmp;
	if (y <= -1.65e-88) {
		tmp = -2.0 * x;
	} else if (y <= 0.225) {
		tmp = 2.0 * y;
	} else {
		tmp = -2.0 * x;
	}
	return tmp;
}
def code(x, y):
	tmp = 0
	if y <= -1.65e-88:
		tmp = -2.0 * x
	elif y <= 0.225:
		tmp = 2.0 * y
	else:
		tmp = -2.0 * x
	return tmp
function code(x, y)
	tmp = 0.0
	if (y <= -1.65e-88)
		tmp = Float64(-2.0 * x);
	elseif (y <= 0.225)
		tmp = Float64(2.0 * y);
	else
		tmp = Float64(-2.0 * x);
	end
	return tmp
end
function tmp_2 = code(x, y)
	tmp = 0.0;
	if (y <= -1.65e-88)
		tmp = -2.0 * x;
	elseif (y <= 0.225)
		tmp = 2.0 * y;
	else
		tmp = -2.0 * x;
	end
	tmp_2 = tmp;
end
code[x_, y_] := If[LessEqual[y, -1.65e-88], N[(-2.0 * x), $MachinePrecision], If[LessEqual[y, 0.225], N[(2.0 * y), $MachinePrecision], N[(-2.0 * x), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;y \leq -1.65 \cdot 10^{-88}:\\
\;\;\;\;-2 \cdot x\\

\mathbf{elif}\;y \leq 0.225:\\
\;\;\;\;2 \cdot y\\

\mathbf{else}:\\
\;\;\;\;-2 \cdot x\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if y < -1.64999999999999997e-88 or 0.225000000000000006 < y

    1. Initial program 71.7%

      \[\frac{\left(x \cdot 2\right) \cdot y}{x - y} \]
    2. Add Preprocessing
    3. Taylor expanded in y around inf

      \[\leadsto \color{blue}{-2 \cdot x} \]
    4. Step-by-step derivation
      1. lower-*.f6476.5

        \[\leadsto \color{blue}{-2 \cdot x} \]
    5. Applied rewrites76.5%

      \[\leadsto \color{blue}{-2 \cdot x} \]

    if -1.64999999999999997e-88 < y < 0.225000000000000006

    1. Initial program 77.9%

      \[\frac{\left(x \cdot 2\right) \cdot y}{x - y} \]
    2. Add Preprocessing
    3. Taylor expanded in y around 0

      \[\leadsto \color{blue}{2 \cdot y} \]
    4. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \color{blue}{y \cdot 2} \]
      2. lower-*.f6481.0

        \[\leadsto \color{blue}{y \cdot 2} \]
    5. Applied rewrites81.0%

      \[\leadsto \color{blue}{y \cdot 2} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification78.6%

    \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq -1.65 \cdot 10^{-88}:\\ \;\;\;\;-2 \cdot x\\ \mathbf{elif}\;y \leq 0.225:\\ \;\;\;\;2 \cdot y\\ \mathbf{else}:\\ \;\;\;\;-2 \cdot x\\ \end{array} \]
  5. Add Preprocessing

Alternative 6: 50.4% accurate, 4.2× speedup?

\[\begin{array}{l} \\ -2 \cdot x \end{array} \]
(FPCore (x y) :precision binary64 (* -2.0 x))
double code(double x, double y) {
	return -2.0 * x;
}
real(8) function code(x, y)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    code = (-2.0d0) * x
end function
public static double code(double x, double y) {
	return -2.0 * x;
}
def code(x, y):
	return -2.0 * x
function code(x, y)
	return Float64(-2.0 * x)
end
function tmp = code(x, y)
	tmp = -2.0 * x;
end
code[x_, y_] := N[(-2.0 * x), $MachinePrecision]
\begin{array}{l}

\\
-2 \cdot x
\end{array}
Derivation
  1. Initial program 74.5%

    \[\frac{\left(x \cdot 2\right) \cdot y}{x - y} \]
  2. Add Preprocessing
  3. Taylor expanded in y around inf

    \[\leadsto \color{blue}{-2 \cdot x} \]
  4. Step-by-step derivation
    1. lower-*.f6451.6

      \[\leadsto \color{blue}{-2 \cdot x} \]
  5. Applied rewrites51.6%

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

Developer Target 1: 99.5% accurate, 0.6× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{2 \cdot x}{x - y} \cdot y\\ \mathbf{if}\;x < -1.7210442634149447 \cdot 10^{+81}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;x < 83645045635564430:\\ \;\;\;\;\frac{x \cdot 2}{\frac{x - y}{y}}\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
(FPCore (x y)
 :precision binary64
 (let* ((t_0 (* (/ (* 2.0 x) (- x y)) y)))
   (if (< x -1.7210442634149447e+81)
     t_0
     (if (< x 83645045635564430.0) (/ (* x 2.0) (/ (- x y) y)) t_0))))
double code(double x, double y) {
	double t_0 = ((2.0 * x) / (x - y)) * y;
	double tmp;
	if (x < -1.7210442634149447e+81) {
		tmp = t_0;
	} else if (x < 83645045635564430.0) {
		tmp = (x * 2.0) / ((x - y) / y);
	} else {
		tmp = t_0;
	}
	return tmp;
}
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 = ((2.0d0 * x) / (x - y)) * y
    if (x < (-1.7210442634149447d+81)) then
        tmp = t_0
    else if (x < 83645045635564430.0d0) then
        tmp = (x * 2.0d0) / ((x - y) / y)
    else
        tmp = t_0
    end if
    code = tmp
end function
public static double code(double x, double y) {
	double t_0 = ((2.0 * x) / (x - y)) * y;
	double tmp;
	if (x < -1.7210442634149447e+81) {
		tmp = t_0;
	} else if (x < 83645045635564430.0) {
		tmp = (x * 2.0) / ((x - y) / y);
	} else {
		tmp = t_0;
	}
	return tmp;
}
def code(x, y):
	t_0 = ((2.0 * x) / (x - y)) * y
	tmp = 0
	if x < -1.7210442634149447e+81:
		tmp = t_0
	elif x < 83645045635564430.0:
		tmp = (x * 2.0) / ((x - y) / y)
	else:
		tmp = t_0
	return tmp
function code(x, y)
	t_0 = Float64(Float64(Float64(2.0 * x) / Float64(x - y)) * y)
	tmp = 0.0
	if (x < -1.7210442634149447e+81)
		tmp = t_0;
	elseif (x < 83645045635564430.0)
		tmp = Float64(Float64(x * 2.0) / Float64(Float64(x - y) / y));
	else
		tmp = t_0;
	end
	return tmp
end
function tmp_2 = code(x, y)
	t_0 = ((2.0 * x) / (x - y)) * y;
	tmp = 0.0;
	if (x < -1.7210442634149447e+81)
		tmp = t_0;
	elseif (x < 83645045635564430.0)
		tmp = (x * 2.0) / ((x - y) / y);
	else
		tmp = t_0;
	end
	tmp_2 = tmp;
end
code[x_, y_] := Block[{t$95$0 = N[(N[(N[(2.0 * x), $MachinePrecision] / N[(x - y), $MachinePrecision]), $MachinePrecision] * y), $MachinePrecision]}, If[Less[x, -1.7210442634149447e+81], t$95$0, If[Less[x, 83645045635564430.0], N[(N[(x * 2.0), $MachinePrecision] / N[(N[(x - y), $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \frac{2 \cdot x}{x - y} \cdot y\\
\mathbf{if}\;x < -1.7210442634149447 \cdot 10^{+81}:\\
\;\;\;\;t\_0\\

\mathbf{elif}\;x < 83645045635564430:\\
\;\;\;\;\frac{x \cdot 2}{\frac{x - y}{y}}\\

\mathbf{else}:\\
\;\;\;\;t\_0\\


\end{array}
\end{array}

Reproduce

?
herbie shell --seed 2024243 
(FPCore (x y)
  :name "Linear.Projection:perspective from linear-1.19.1.3, B"
  :precision binary64

  :alt
  (! :herbie-platform default (if (< x -1721044263414944700000000000000000000000000000000000000000000000000000000000000000) (* (/ (* 2 x) (- x y)) y) (if (< x 83645045635564430) (/ (* x 2) (/ (- x y) y)) (* (/ (* 2 x) (- x y)) y))))

  (/ (* (* x 2.0) y) (- x y)))