Average Error: 7.0 → 1.6
Time: 7.2s
Precision: binary64
\[[y, t] = \mathsf{sort}([y, t]) \\]
\[\left(x \cdot y - z \cdot y\right) \cdot t \]
\[\begin{array}{l} t_1 := x \cdot y - y \cdot z\\ \mathbf{if}\;t_1 \leq -\infty:\\ \;\;\;\;y \cdot \left(x \cdot t\right) - y \cdot \left(z \cdot t\right)\\ \mathbf{elif}\;t_1 \leq 2.4844802676307613 \cdot 10^{+153}:\\ \;\;\;\;t \cdot \left(y \cdot \left(x - z\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\left(x - z\right) \cdot \left(y \cdot t\right)\\ \end{array} \]
\left(x \cdot y - z \cdot y\right) \cdot t
\begin{array}{l}
t_1 := x \cdot y - y \cdot z\\
\mathbf{if}\;t_1 \leq -\infty:\\
\;\;\;\;y \cdot \left(x \cdot t\right) - y \cdot \left(z \cdot t\right)\\

\mathbf{elif}\;t_1 \leq 2.4844802676307613 \cdot 10^{+153}:\\
\;\;\;\;t \cdot \left(y \cdot \left(x - z\right)\right)\\

\mathbf{else}:\\
\;\;\;\;\left(x - z\right) \cdot \left(y \cdot t\right)\\


\end{array}
(FPCore (x y z t) :precision binary64 (* (- (* x y) (* z y)) t))
(FPCore (x y z t)
 :precision binary64
 (let* ((t_1 (- (* x y) (* y z))))
   (if (<= t_1 (- INFINITY))
     (- (* y (* x t)) (* y (* z t)))
     (if (<= t_1 2.4844802676307613e+153)
       (* t (* y (- x z)))
       (* (- x z) (* y t))))))
double code(double x, double y, double z, double t) {
	return ((x * y) - (z * y)) * t;
}
double code(double x, double y, double z, double t) {
	double t_1 = (x * y) - (y * z);
	double tmp;
	if (t_1 <= -((double) INFINITY)) {
		tmp = (y * (x * t)) - (y * (z * t));
	} else if (t_1 <= 2.4844802676307613e+153) {
		tmp = t * (y * (x - z));
	} else {
		tmp = (x - z) * (y * t);
	}
	return tmp;
}

Error

Bits error versus x

Bits error versus y

Bits error versus z

Bits error versus t

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Target

Original7.0
Target3.6
Herbie1.6
\[\begin{array}{l} \mathbf{if}\;t < -9.231879582886777 \cdot 10^{-80}:\\ \;\;\;\;\left(y \cdot t\right) \cdot \left(x - z\right)\\ \mathbf{elif}\;t < 2.543067051564877 \cdot 10^{+83}:\\ \;\;\;\;y \cdot \left(t \cdot \left(x - z\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\left(y \cdot \left(x - z\right)\right) \cdot t\\ \end{array} \]

Derivation

  1. Split input into 3 regimes
  2. if (-.f64 (*.f64 x y) (*.f64 z y)) < -inf.0

    1. Initial program 64.0

      \[\left(x \cdot y - z \cdot y\right) \cdot t \]
    2. Taylor expanded in x around 0 0.2

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

    if -inf.0 < (-.f64 (*.f64 x y) (*.f64 z y)) < 2.48448026763076128e153

    1. Initial program 1.6

      \[\left(x \cdot y - z \cdot y\right) \cdot t \]
    2. Taylor expanded in x around 0 8.5

      \[\leadsto \color{blue}{y \cdot \left(t \cdot x\right) - y \cdot \left(t \cdot z\right)} \]
    3. Simplified1.6

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

    if 2.48448026763076128e153 < (-.f64 (*.f64 x y) (*.f64 z y))

    1. Initial program 21.2

      \[\left(x \cdot y - z \cdot y\right) \cdot t \]
    2. Taylor expanded in y around inf 1.7

      \[\leadsto \color{blue}{\left(x - z\right) \cdot \left(y \cdot t\right)} \]
  3. Recombined 3 regimes into one program.
  4. Final simplification1.6

    \[\leadsto \begin{array}{l} \mathbf{if}\;x \cdot y - y \cdot z \leq -\infty:\\ \;\;\;\;y \cdot \left(x \cdot t\right) - y \cdot \left(z \cdot t\right)\\ \mathbf{elif}\;x \cdot y - y \cdot z \leq 2.4844802676307613 \cdot 10^{+153}:\\ \;\;\;\;t \cdot \left(y \cdot \left(x - z\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\left(x - z\right) \cdot \left(y \cdot t\right)\\ \end{array} \]

Reproduce

herbie shell --seed 2022081 
(FPCore (x y z t)
  :name "Linear.Projection:inverseInfinitePerspective from linear-1.19.1.3"
  :precision binary64

  :herbie-target
  (if (< t -9.231879582886777e-80) (* (* y t) (- x z)) (if (< t 2.543067051564877e+83) (* y (* t (- x z))) (* (* y (- x z)) t)))

  (* (- (* x y) (* z y)) t))