Data.Colour.RGBSpace.HSL:hsl from colour-2.3.3, D

Percentage Accurate: 99.5% → 99.8%
Time: 17.6s
Alternatives: 16
Speedup: 1.2×

Specification

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

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

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

\\
x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right)
\end{array}

Alternative 1: 99.8% accurate, 0.1× speedup?

\[\begin{array}{l} \\ \mathsf{fma}\left(y - x, \mathsf{fma}\left(z, -6, 4\right), x\right) \end{array} \]
(FPCore (x y z) :precision binary64 (fma (- y x) (fma z -6.0 4.0) x))
double code(double x, double y, double z) {
	return fma((y - x), fma(z, -6.0, 4.0), x);
}
function code(x, y, z)
	return fma(Float64(y - x), fma(z, -6.0, 4.0), x)
end
code[x_, y_, z_] := N[(N[(y - x), $MachinePrecision] * N[(z * -6.0 + 4.0), $MachinePrecision] + x), $MachinePrecision]
\begin{array}{l}

\\
\mathsf{fma}\left(y - x, \mathsf{fma}\left(z, -6, 4\right), x\right)
\end{array}
Derivation
  1. Initial program 99.5%

    \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
  2. Step-by-step derivation
    1. +-commutative99.5%

      \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
    2. associate-*l*99.8%

      \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
    3. fma-define99.8%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
    4. sub-neg99.8%

      \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
    5. +-commutative99.8%

      \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\left(-z\right) + \frac{2}{3}\right)}, x\right) \]
    6. distribute-lft-in99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{6 \cdot \left(-z\right) + 6 \cdot \frac{2}{3}}, x\right) \]
    7. *-commutative99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\left(-z\right) \cdot 6} + 6 \cdot \frac{2}{3}, x\right) \]
    8. distribute-lft-neg-out99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\left(-z \cdot 6\right)} + 6 \cdot \frac{2}{3}, x\right) \]
    9. distribute-rgt-neg-in99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{z \cdot \left(-6\right)} + 6 \cdot \frac{2}{3}, x\right) \]
    10. fma-define99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\mathsf{fma}\left(z, -6, 6 \cdot \frac{2}{3}\right)}, x\right) \]
    11. metadata-eval99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \mathsf{fma}\left(z, \color{blue}{-6}, 6 \cdot \frac{2}{3}\right), x\right) \]
    12. metadata-eval99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \mathsf{fma}\left(z, -6, 6 \cdot \color{blue}{0.6666666666666666}\right), x\right) \]
    13. metadata-eval99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \mathsf{fma}\left(z, -6, \color{blue}{4}\right), x\right) \]
  3. Simplified99.8%

    \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, \mathsf{fma}\left(z, -6, 4\right), x\right)} \]
  4. Add Preprocessing
  5. Add Preprocessing

Alternative 2: 99.8% accurate, 0.1× speedup?

\[\begin{array}{l} \\ \mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right) \end{array} \]
(FPCore (x y z) :precision binary64 (fma (- y x) (+ 4.0 (* z -6.0)) x))
double code(double x, double y, double z) {
	return fma((y - x), (4.0 + (z * -6.0)), x);
}
function code(x, y, z)
	return fma(Float64(y - x), Float64(4.0 + Float64(z * -6.0)), x)
end
code[x_, y_, z_] := N[(N[(y - x), $MachinePrecision] * N[(4.0 + N[(z * -6.0), $MachinePrecision]), $MachinePrecision] + x), $MachinePrecision]
\begin{array}{l}

\\
\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)
\end{array}
Derivation
  1. Initial program 99.5%

    \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
  2. Step-by-step derivation
    1. +-commutative99.5%

      \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
    2. associate-*l*99.8%

      \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
    3. fma-define99.8%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
    4. sub-neg99.8%

      \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
    5. distribute-rgt-in99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
    6. metadata-eval99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
    7. metadata-eval99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
    8. distribute-lft-neg-out99.8%

      \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
    9. distribute-rgt-neg-in99.8%

      \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
    10. metadata-eval99.8%

      \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
  3. Simplified99.8%

    \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
  4. Add Preprocessing
  5. Add Preprocessing

Alternative 3: 50.8% accurate, 0.4× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := x + y \cdot 4\\ t_1 := z \cdot \left(y \cdot -6\right)\\ \mathbf{if}\;z \leq -2.2 \cdot 10^{+92}:\\ \;\;\;\;6 \cdot \left(x \cdot z\right)\\ \mathbf{elif}\;z \leq -0.54:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;z \leq -9.5 \cdot 10^{-291}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;z \leq 3.8 \cdot 10^{-55}:\\ \;\;\;\;x \cdot -3\\ \mathbf{elif}\;z \leq 225:\\ \;\;\;\;t\_0\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (let* ((t_0 (+ x (* y 4.0))) (t_1 (* z (* y -6.0))))
   (if (<= z -2.2e+92)
     (* 6.0 (* x z))
     (if (<= z -0.54)
       t_1
       (if (<= z -9.5e-291)
         t_0
         (if (<= z 3.8e-55) (* x -3.0) (if (<= z 225.0) t_0 t_1)))))))
double code(double x, double y, double z) {
	double t_0 = x + (y * 4.0);
	double t_1 = z * (y * -6.0);
	double tmp;
	if (z <= -2.2e+92) {
		tmp = 6.0 * (x * z);
	} else if (z <= -0.54) {
		tmp = t_1;
	} else if (z <= -9.5e-291) {
		tmp = t_0;
	} else if (z <= 3.8e-55) {
		tmp = x * -3.0;
	} else if (z <= 225.0) {
		tmp = t_0;
	} else {
		tmp = t_1;
	}
	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) :: t_0
    real(8) :: t_1
    real(8) :: tmp
    t_0 = x + (y * 4.0d0)
    t_1 = z * (y * (-6.0d0))
    if (z <= (-2.2d+92)) then
        tmp = 6.0d0 * (x * z)
    else if (z <= (-0.54d0)) then
        tmp = t_1
    else if (z <= (-9.5d-291)) then
        tmp = t_0
    else if (z <= 3.8d-55) then
        tmp = x * (-3.0d0)
    else if (z <= 225.0d0) then
        tmp = t_0
    else
        tmp = t_1
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double t_0 = x + (y * 4.0);
	double t_1 = z * (y * -6.0);
	double tmp;
	if (z <= -2.2e+92) {
		tmp = 6.0 * (x * z);
	} else if (z <= -0.54) {
		tmp = t_1;
	} else if (z <= -9.5e-291) {
		tmp = t_0;
	} else if (z <= 3.8e-55) {
		tmp = x * -3.0;
	} else if (z <= 225.0) {
		tmp = t_0;
	} else {
		tmp = t_1;
	}
	return tmp;
}
def code(x, y, z):
	t_0 = x + (y * 4.0)
	t_1 = z * (y * -6.0)
	tmp = 0
	if z <= -2.2e+92:
		tmp = 6.0 * (x * z)
	elif z <= -0.54:
		tmp = t_1
	elif z <= -9.5e-291:
		tmp = t_0
	elif z <= 3.8e-55:
		tmp = x * -3.0
	elif z <= 225.0:
		tmp = t_0
	else:
		tmp = t_1
	return tmp
function code(x, y, z)
	t_0 = Float64(x + Float64(y * 4.0))
	t_1 = Float64(z * Float64(y * -6.0))
	tmp = 0.0
	if (z <= -2.2e+92)
		tmp = Float64(6.0 * Float64(x * z));
	elseif (z <= -0.54)
		tmp = t_1;
	elseif (z <= -9.5e-291)
		tmp = t_0;
	elseif (z <= 3.8e-55)
		tmp = Float64(x * -3.0);
	elseif (z <= 225.0)
		tmp = t_0;
	else
		tmp = t_1;
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	t_0 = x + (y * 4.0);
	t_1 = z * (y * -6.0);
	tmp = 0.0;
	if (z <= -2.2e+92)
		tmp = 6.0 * (x * z);
	elseif (z <= -0.54)
		tmp = t_1;
	elseif (z <= -9.5e-291)
		tmp = t_0;
	elseif (z <= 3.8e-55)
		tmp = x * -3.0;
	elseif (z <= 225.0)
		tmp = t_0;
	else
		tmp = t_1;
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := Block[{t$95$0 = N[(x + N[(y * 4.0), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[(z * N[(y * -6.0), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[z, -2.2e+92], N[(6.0 * N[(x * z), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, -0.54], t$95$1, If[LessEqual[z, -9.5e-291], t$95$0, If[LessEqual[z, 3.8e-55], N[(x * -3.0), $MachinePrecision], If[LessEqual[z, 225.0], t$95$0, t$95$1]]]]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := x + y \cdot 4\\
t_1 := z \cdot \left(y \cdot -6\right)\\
\mathbf{if}\;z \leq -2.2 \cdot 10^{+92}:\\
\;\;\;\;6 \cdot \left(x \cdot z\right)\\

\mathbf{elif}\;z \leq -0.54:\\
\;\;\;\;t\_1\\

\mathbf{elif}\;z \leq -9.5 \cdot 10^{-291}:\\
\;\;\;\;t\_0\\

\mathbf{elif}\;z \leq 3.8 \cdot 10^{-55}:\\
\;\;\;\;x \cdot -3\\

\mathbf{elif}\;z \leq 225:\\
\;\;\;\;t\_0\\

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


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

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. +-commutative99.8%

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.9%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.9%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 61.0%

      \[\leadsto \color{blue}{x + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right)} \]
    6. Step-by-step derivation
      1. *-lft-identity61.0%

        \[\leadsto \color{blue}{1 \cdot x} + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right) \]
      2. *-commutative61.0%

        \[\leadsto 1 \cdot x + -1 \cdot \color{blue}{\left(\left(4 + -6 \cdot z\right) \cdot x\right)} \]
      3. +-commutative61.0%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\left(-6 \cdot z + 4\right)} \cdot x\right) \]
      4. *-commutative61.0%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\left(\color{blue}{z \cdot -6} + 4\right) \cdot x\right) \]
      5. fma-define61.0%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\mathsf{fma}\left(z, -6, 4\right)} \cdot x\right) \]
      6. associate-*r*61.0%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \mathsf{fma}\left(z, -6, 4\right)\right) \cdot x} \]
      7. fma-define61.0%

        \[\leadsto 1 \cdot x + \left(-1 \cdot \color{blue}{\left(z \cdot -6 + 4\right)}\right) \cdot x \]
      8. distribute-lft-in61.0%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \left(z \cdot -6\right) + -1 \cdot 4\right)} \cdot x \]
      9. neg-mul-161.0%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z \cdot -6\right)} + -1 \cdot 4\right) \cdot x \]
      10. distribute-lft-neg-in61.0%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z\right) \cdot -6} + -1 \cdot 4\right) \cdot x \]
      11. metadata-eval61.0%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{-4}\right) \cdot x \]
      12. metadata-eval61.0%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{0.6666666666666666 \cdot -6}\right) \cdot x \]
      13. distribute-rgt-in61.0%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-6 \cdot \left(\left(-z\right) + 0.6666666666666666\right)\right)} \cdot x \]
      14. +-commutative61.0%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \cdot x \]
      15. sub-neg61.0%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 - z\right)}\right) \cdot x \]
      16. distribute-rgt-in61.0%

        \[\leadsto \color{blue}{x \cdot \left(1 + -6 \cdot \left(0.6666666666666666 - z\right)\right)} \]
      17. sub-neg61.0%

        \[\leadsto x \cdot \left(1 + -6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \]
      18. distribute-rgt-in61.0%

        \[\leadsto x \cdot \left(1 + \color{blue}{\left(0.6666666666666666 \cdot -6 + \left(-z\right) \cdot -6\right)}\right) \]
      19. metadata-eval61.0%

        \[\leadsto x \cdot \left(1 + \left(\color{blue}{-4} + \left(-z\right) \cdot -6\right)\right) \]
      20. distribute-lft-neg-in61.0%

        \[\leadsto x \cdot \left(1 + \left(-4 + \color{blue}{\left(-z \cdot -6\right)}\right)\right) \]
      21. associate-+r+61.0%

        \[\leadsto x \cdot \color{blue}{\left(\left(1 + -4\right) + \left(-z \cdot -6\right)\right)} \]
    7. Simplified61.0%

      \[\leadsto \color{blue}{x \cdot \left(-3 + 6 \cdot z\right)} \]
    8. Taylor expanded in z around inf 61.0%

      \[\leadsto \color{blue}{6 \cdot \left(x \cdot z\right)} \]

    if -2.19999999999999992e92 < z < -0.54000000000000004 or 225 < z

    1. Initial program 99.7%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. +-commutative99.7%

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.7%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.7%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.7%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.7%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in z around inf 99.7%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{z \cdot \left(4 \cdot \frac{1}{z} - 6\right)}, x\right) \]
    6. Step-by-step derivation
      1. sub-neg99.7%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \color{blue}{\left(4 \cdot \frac{1}{z} + \left(-6\right)\right)}, x\right) \]
      2. associate-*r/99.7%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\color{blue}{\frac{4 \cdot 1}{z}} + \left(-6\right)\right), x\right) \]
      3. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\frac{\color{blue}{4}}{z} + \left(-6\right)\right), x\right) \]
      4. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\frac{4}{z} + \color{blue}{-6}\right), x\right) \]
    7. Simplified99.7%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{z \cdot \left(\frac{4}{z} + -6\right)}, x\right) \]
    8. Taylor expanded in z around inf 98.3%

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

        \[\leadsto -6 \cdot \color{blue}{\left(\left(y - x\right) \cdot z\right)} \]
      2. associate-*l*98.4%

        \[\leadsto \color{blue}{\left(-6 \cdot \left(y - x\right)\right) \cdot z} \]
      3. *-commutative98.4%

        \[\leadsto \color{blue}{z \cdot \left(-6 \cdot \left(y - x\right)\right)} \]
    10. Simplified98.4%

      \[\leadsto \color{blue}{z \cdot \left(-6 \cdot \left(y - x\right)\right)} \]
    11. Taylor expanded in y around inf 55.4%

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

    if -0.54000000000000004 < z < -9.49999999999999938e-291 or 3.7999999999999997e-55 < z < 225

    1. Initial program 99.4%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. metadata-eval99.4%

        \[\leadsto x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\color{blue}{0.6666666666666666} - z\right) \]
    3. Simplified99.4%

      \[\leadsto \color{blue}{x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(0.6666666666666666 - z\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 55.9%

      \[\leadsto x + \color{blue}{6 \cdot \left(y \cdot \left(0.6666666666666666 - z\right)\right)} \]
    6. Taylor expanded in z around 0 55.4%

      \[\leadsto x + \color{blue}{4 \cdot y} \]

    if -9.49999999999999938e-291 < z < 3.7999999999999997e-55

    1. Initial program 99.4%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. +-commutative99.4%

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.9%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.9%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 61.1%

      \[\leadsto \color{blue}{x + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right)} \]
    6. Step-by-step derivation
      1. *-lft-identity61.1%

        \[\leadsto \color{blue}{1 \cdot x} + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right) \]
      2. *-commutative61.1%

        \[\leadsto 1 \cdot x + -1 \cdot \color{blue}{\left(\left(4 + -6 \cdot z\right) \cdot x\right)} \]
      3. +-commutative61.1%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\left(-6 \cdot z + 4\right)} \cdot x\right) \]
      4. *-commutative61.1%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\left(\color{blue}{z \cdot -6} + 4\right) \cdot x\right) \]
      5. fma-define61.1%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\mathsf{fma}\left(z, -6, 4\right)} \cdot x\right) \]
      6. associate-*r*61.1%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \mathsf{fma}\left(z, -6, 4\right)\right) \cdot x} \]
      7. fma-define61.1%

        \[\leadsto 1 \cdot x + \left(-1 \cdot \color{blue}{\left(z \cdot -6 + 4\right)}\right) \cdot x \]
      8. distribute-lft-in61.1%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \left(z \cdot -6\right) + -1 \cdot 4\right)} \cdot x \]
      9. neg-mul-161.1%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z \cdot -6\right)} + -1 \cdot 4\right) \cdot x \]
      10. distribute-lft-neg-in61.1%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z\right) \cdot -6} + -1 \cdot 4\right) \cdot x \]
      11. metadata-eval61.1%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{-4}\right) \cdot x \]
      12. metadata-eval61.1%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{0.6666666666666666 \cdot -6}\right) \cdot x \]
      13. distribute-rgt-in61.1%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-6 \cdot \left(\left(-z\right) + 0.6666666666666666\right)\right)} \cdot x \]
      14. +-commutative61.1%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \cdot x \]
      15. sub-neg61.1%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 - z\right)}\right) \cdot x \]
      16. distribute-rgt-in61.1%

        \[\leadsto \color{blue}{x \cdot \left(1 + -6 \cdot \left(0.6666666666666666 - z\right)\right)} \]
      17. sub-neg61.1%

        \[\leadsto x \cdot \left(1 + -6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \]
      18. distribute-rgt-in61.1%

        \[\leadsto x \cdot \left(1 + \color{blue}{\left(0.6666666666666666 \cdot -6 + \left(-z\right) \cdot -6\right)}\right) \]
      19. metadata-eval61.1%

        \[\leadsto x \cdot \left(1 + \left(\color{blue}{-4} + \left(-z\right) \cdot -6\right)\right) \]
      20. distribute-lft-neg-in61.1%

        \[\leadsto x \cdot \left(1 + \left(-4 + \color{blue}{\left(-z \cdot -6\right)}\right)\right) \]
      21. associate-+r+61.1%

        \[\leadsto x \cdot \color{blue}{\left(\left(1 + -4\right) + \left(-z \cdot -6\right)\right)} \]
    7. Simplified61.1%

      \[\leadsto \color{blue}{x \cdot \left(-3 + 6 \cdot z\right)} \]
    8. Taylor expanded in z around 0 61.1%

      \[\leadsto \color{blue}{-3 \cdot x} \]
    9. Step-by-step derivation
      1. *-commutative61.1%

        \[\leadsto \color{blue}{x \cdot -3} \]
    10. Simplified61.1%

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -2.2 \cdot 10^{+92}:\\ \;\;\;\;6 \cdot \left(x \cdot z\right)\\ \mathbf{elif}\;z \leq -0.54:\\ \;\;\;\;z \cdot \left(y \cdot -6\right)\\ \mathbf{elif}\;z \leq -9.5 \cdot 10^{-291}:\\ \;\;\;\;x + y \cdot 4\\ \mathbf{elif}\;z \leq 3.8 \cdot 10^{-55}:\\ \;\;\;\;x \cdot -3\\ \mathbf{elif}\;z \leq 225:\\ \;\;\;\;x + y \cdot 4\\ \mathbf{else}:\\ \;\;\;\;z \cdot \left(y \cdot -6\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 4: 49.4% accurate, 0.6× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -6.1 \cdot 10^{+91}:\\ \;\;\;\;6 \cdot \left(x \cdot z\right)\\ \mathbf{elif}\;z \leq -3.1 \cdot 10^{-31} \lor \neg \left(z \leq 0.56\right):\\ \;\;\;\;z \cdot \left(y \cdot -6\right)\\ \mathbf{else}:\\ \;\;\;\;x \cdot -3\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (<= z -6.1e+91)
   (* 6.0 (* x z))
   (if (or (<= z -3.1e-31) (not (<= z 0.56))) (* z (* y -6.0)) (* x -3.0))))
double code(double x, double y, double z) {
	double tmp;
	if (z <= -6.1e+91) {
		tmp = 6.0 * (x * z);
	} else if ((z <= -3.1e-31) || !(z <= 0.56)) {
		tmp = z * (y * -6.0);
	} else {
		tmp = x * -3.0;
	}
	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 <= (-6.1d+91)) then
        tmp = 6.0d0 * (x * z)
    else if ((z <= (-3.1d-31)) .or. (.not. (z <= 0.56d0))) then
        tmp = z * (y * (-6.0d0))
    else
        tmp = x * (-3.0d0)
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if (z <= -6.1e+91) {
		tmp = 6.0 * (x * z);
	} else if ((z <= -3.1e-31) || !(z <= 0.56)) {
		tmp = z * (y * -6.0);
	} else {
		tmp = x * -3.0;
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if z <= -6.1e+91:
		tmp = 6.0 * (x * z)
	elif (z <= -3.1e-31) or not (z <= 0.56):
		tmp = z * (y * -6.0)
	else:
		tmp = x * -3.0
	return tmp
function code(x, y, z)
	tmp = 0.0
	if (z <= -6.1e+91)
		tmp = Float64(6.0 * Float64(x * z));
	elseif ((z <= -3.1e-31) || !(z <= 0.56))
		tmp = Float64(z * Float64(y * -6.0));
	else
		tmp = Float64(x * -3.0);
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if (z <= -6.1e+91)
		tmp = 6.0 * (x * z);
	elseif ((z <= -3.1e-31) || ~((z <= 0.56)))
		tmp = z * (y * -6.0);
	else
		tmp = x * -3.0;
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[LessEqual[z, -6.1e+91], N[(6.0 * N[(x * z), $MachinePrecision]), $MachinePrecision], If[Or[LessEqual[z, -3.1e-31], N[Not[LessEqual[z, 0.56]], $MachinePrecision]], N[(z * N[(y * -6.0), $MachinePrecision]), $MachinePrecision], N[(x * -3.0), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;z \leq -6.1 \cdot 10^{+91}:\\
\;\;\;\;6 \cdot \left(x \cdot z\right)\\

\mathbf{elif}\;z \leq -3.1 \cdot 10^{-31} \lor \neg \left(z \leq 0.56\right):\\
\;\;\;\;z \cdot \left(y \cdot -6\right)\\

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


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

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. +-commutative99.8%

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.9%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.9%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 61.0%

      \[\leadsto \color{blue}{x + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right)} \]
    6. Step-by-step derivation
      1. *-lft-identity61.0%

        \[\leadsto \color{blue}{1 \cdot x} + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right) \]
      2. *-commutative61.0%

        \[\leadsto 1 \cdot x + -1 \cdot \color{blue}{\left(\left(4 + -6 \cdot z\right) \cdot x\right)} \]
      3. +-commutative61.0%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\left(-6 \cdot z + 4\right)} \cdot x\right) \]
      4. *-commutative61.0%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\left(\color{blue}{z \cdot -6} + 4\right) \cdot x\right) \]
      5. fma-define61.0%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\mathsf{fma}\left(z, -6, 4\right)} \cdot x\right) \]
      6. associate-*r*61.0%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \mathsf{fma}\left(z, -6, 4\right)\right) \cdot x} \]
      7. fma-define61.0%

        \[\leadsto 1 \cdot x + \left(-1 \cdot \color{blue}{\left(z \cdot -6 + 4\right)}\right) \cdot x \]
      8. distribute-lft-in61.0%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \left(z \cdot -6\right) + -1 \cdot 4\right)} \cdot x \]
      9. neg-mul-161.0%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z \cdot -6\right)} + -1 \cdot 4\right) \cdot x \]
      10. distribute-lft-neg-in61.0%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z\right) \cdot -6} + -1 \cdot 4\right) \cdot x \]
      11. metadata-eval61.0%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{-4}\right) \cdot x \]
      12. metadata-eval61.0%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{0.6666666666666666 \cdot -6}\right) \cdot x \]
      13. distribute-rgt-in61.0%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-6 \cdot \left(\left(-z\right) + 0.6666666666666666\right)\right)} \cdot x \]
      14. +-commutative61.0%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \cdot x \]
      15. sub-neg61.0%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 - z\right)}\right) \cdot x \]
      16. distribute-rgt-in61.0%

        \[\leadsto \color{blue}{x \cdot \left(1 + -6 \cdot \left(0.6666666666666666 - z\right)\right)} \]
      17. sub-neg61.0%

        \[\leadsto x \cdot \left(1 + -6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \]
      18. distribute-rgt-in61.0%

        \[\leadsto x \cdot \left(1 + \color{blue}{\left(0.6666666666666666 \cdot -6 + \left(-z\right) \cdot -6\right)}\right) \]
      19. metadata-eval61.0%

        \[\leadsto x \cdot \left(1 + \left(\color{blue}{-4} + \left(-z\right) \cdot -6\right)\right) \]
      20. distribute-lft-neg-in61.0%

        \[\leadsto x \cdot \left(1 + \left(-4 + \color{blue}{\left(-z \cdot -6\right)}\right)\right) \]
      21. associate-+r+61.0%

        \[\leadsto x \cdot \color{blue}{\left(\left(1 + -4\right) + \left(-z \cdot -6\right)\right)} \]
    7. Simplified61.0%

      \[\leadsto \color{blue}{x \cdot \left(-3 + 6 \cdot z\right)} \]
    8. Taylor expanded in z around inf 61.0%

      \[\leadsto \color{blue}{6 \cdot \left(x \cdot z\right)} \]

    if -6.1e91 < z < -3.1e-31 or 0.56000000000000005 < z

    1. Initial program 99.7%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. +-commutative99.7%

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.7%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.7%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.7%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.7%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in z around inf 99.7%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{z \cdot \left(4 \cdot \frac{1}{z} - 6\right)}, x\right) \]
    6. Step-by-step derivation
      1. sub-neg99.7%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \color{blue}{\left(4 \cdot \frac{1}{z} + \left(-6\right)\right)}, x\right) \]
      2. associate-*r/99.7%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\color{blue}{\frac{4 \cdot 1}{z}} + \left(-6\right)\right), x\right) \]
      3. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\frac{\color{blue}{4}}{z} + \left(-6\right)\right), x\right) \]
      4. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\frac{4}{z} + \color{blue}{-6}\right), x\right) \]
    7. Simplified99.7%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{z \cdot \left(\frac{4}{z} + -6\right)}, x\right) \]
    8. Taylor expanded in z around inf 92.3%

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

        \[\leadsto -6 \cdot \color{blue}{\left(\left(y - x\right) \cdot z\right)} \]
      2. associate-*l*92.4%

        \[\leadsto \color{blue}{\left(-6 \cdot \left(y - x\right)\right) \cdot z} \]
      3. *-commutative92.4%

        \[\leadsto \color{blue}{z \cdot \left(-6 \cdot \left(y - x\right)\right)} \]
    10. Simplified92.4%

      \[\leadsto \color{blue}{z \cdot \left(-6 \cdot \left(y - x\right)\right)} \]
    11. Taylor expanded in y around inf 51.9%

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

    if -3.1e-31 < z < 0.56000000000000005

    1. Initial program 99.4%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. +-commutative99.4%

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.9%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.9%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 53.2%

      \[\leadsto \color{blue}{x + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right)} \]
    6. Step-by-step derivation
      1. *-lft-identity53.2%

        \[\leadsto \color{blue}{1 \cdot x} + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right) \]
      2. *-commutative53.2%

        \[\leadsto 1 \cdot x + -1 \cdot \color{blue}{\left(\left(4 + -6 \cdot z\right) \cdot x\right)} \]
      3. +-commutative53.2%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\left(-6 \cdot z + 4\right)} \cdot x\right) \]
      4. *-commutative53.2%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\left(\color{blue}{z \cdot -6} + 4\right) \cdot x\right) \]
      5. fma-define53.2%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\mathsf{fma}\left(z, -6, 4\right)} \cdot x\right) \]
      6. associate-*r*53.2%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \mathsf{fma}\left(z, -6, 4\right)\right) \cdot x} \]
      7. fma-define53.2%

        \[\leadsto 1 \cdot x + \left(-1 \cdot \color{blue}{\left(z \cdot -6 + 4\right)}\right) \cdot x \]
      8. distribute-lft-in53.2%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \left(z \cdot -6\right) + -1 \cdot 4\right)} \cdot x \]
      9. neg-mul-153.2%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z \cdot -6\right)} + -1 \cdot 4\right) \cdot x \]
      10. distribute-lft-neg-in53.2%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z\right) \cdot -6} + -1 \cdot 4\right) \cdot x \]
      11. metadata-eval53.2%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{-4}\right) \cdot x \]
      12. metadata-eval53.2%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{0.6666666666666666 \cdot -6}\right) \cdot x \]
      13. distribute-rgt-in53.1%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-6 \cdot \left(\left(-z\right) + 0.6666666666666666\right)\right)} \cdot x \]
      14. +-commutative53.1%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \cdot x \]
      15. sub-neg53.1%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 - z\right)}\right) \cdot x \]
      16. distribute-rgt-in53.1%

        \[\leadsto \color{blue}{x \cdot \left(1 + -6 \cdot \left(0.6666666666666666 - z\right)\right)} \]
      17. sub-neg53.1%

        \[\leadsto x \cdot \left(1 + -6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \]
      18. distribute-rgt-in53.2%

        \[\leadsto x \cdot \left(1 + \color{blue}{\left(0.6666666666666666 \cdot -6 + \left(-z\right) \cdot -6\right)}\right) \]
      19. metadata-eval53.2%

        \[\leadsto x \cdot \left(1 + \left(\color{blue}{-4} + \left(-z\right) \cdot -6\right)\right) \]
      20. distribute-lft-neg-in53.2%

        \[\leadsto x \cdot \left(1 + \left(-4 + \color{blue}{\left(-z \cdot -6\right)}\right)\right) \]
      21. associate-+r+53.2%

        \[\leadsto x \cdot \color{blue}{\left(\left(1 + -4\right) + \left(-z \cdot -6\right)\right)} \]
    7. Simplified53.2%

      \[\leadsto \color{blue}{x \cdot \left(-3 + 6 \cdot z\right)} \]
    8. Taylor expanded in z around 0 52.6%

      \[\leadsto \color{blue}{-3 \cdot x} \]
    9. Step-by-step derivation
      1. *-commutative52.6%

        \[\leadsto \color{blue}{x \cdot -3} \]
    10. Simplified52.6%

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -6.1 \cdot 10^{+91}:\\ \;\;\;\;6 \cdot \left(x \cdot z\right)\\ \mathbf{elif}\;z \leq -3.1 \cdot 10^{-31} \lor \neg \left(z \leq 0.56\right):\\ \;\;\;\;z \cdot \left(y \cdot -6\right)\\ \mathbf{else}:\\ \;\;\;\;x \cdot -3\\ \end{array} \]
  5. Add Preprocessing

Alternative 5: 49.4% accurate, 0.6× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -1.32 \cdot 10^{+91}:\\ \;\;\;\;6 \cdot \left(x \cdot z\right)\\ \mathbf{elif}\;z \leq -3.1 \cdot 10^{-31} \lor \neg \left(z \leq 0.5\right):\\ \;\;\;\;-6 \cdot \left(y \cdot z\right)\\ \mathbf{else}:\\ \;\;\;\;x \cdot -3\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (<= z -1.32e+91)
   (* 6.0 (* x z))
   (if (or (<= z -3.1e-31) (not (<= z 0.5))) (* -6.0 (* y z)) (* x -3.0))))
double code(double x, double y, double z) {
	double tmp;
	if (z <= -1.32e+91) {
		tmp = 6.0 * (x * z);
	} else if ((z <= -3.1e-31) || !(z <= 0.5)) {
		tmp = -6.0 * (y * z);
	} else {
		tmp = x * -3.0;
	}
	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 <= (-1.32d+91)) then
        tmp = 6.0d0 * (x * z)
    else if ((z <= (-3.1d-31)) .or. (.not. (z <= 0.5d0))) then
        tmp = (-6.0d0) * (y * z)
    else
        tmp = x * (-3.0d0)
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if (z <= -1.32e+91) {
		tmp = 6.0 * (x * z);
	} else if ((z <= -3.1e-31) || !(z <= 0.5)) {
		tmp = -6.0 * (y * z);
	} else {
		tmp = x * -3.0;
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if z <= -1.32e+91:
		tmp = 6.0 * (x * z)
	elif (z <= -3.1e-31) or not (z <= 0.5):
		tmp = -6.0 * (y * z)
	else:
		tmp = x * -3.0
	return tmp
function code(x, y, z)
	tmp = 0.0
	if (z <= -1.32e+91)
		tmp = Float64(6.0 * Float64(x * z));
	elseif ((z <= -3.1e-31) || !(z <= 0.5))
		tmp = Float64(-6.0 * Float64(y * z));
	else
		tmp = Float64(x * -3.0);
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if (z <= -1.32e+91)
		tmp = 6.0 * (x * z);
	elseif ((z <= -3.1e-31) || ~((z <= 0.5)))
		tmp = -6.0 * (y * z);
	else
		tmp = x * -3.0;
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[LessEqual[z, -1.32e+91], N[(6.0 * N[(x * z), $MachinePrecision]), $MachinePrecision], If[Or[LessEqual[z, -3.1e-31], N[Not[LessEqual[z, 0.5]], $MachinePrecision]], N[(-6.0 * N[(y * z), $MachinePrecision]), $MachinePrecision], N[(x * -3.0), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;z \leq -1.32 \cdot 10^{+91}:\\
\;\;\;\;6 \cdot \left(x \cdot z\right)\\

\mathbf{elif}\;z \leq -3.1 \cdot 10^{-31} \lor \neg \left(z \leq 0.5\right):\\
\;\;\;\;-6 \cdot \left(y \cdot z\right)\\

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


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

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. +-commutative99.8%

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.9%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.9%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 61.0%

      \[\leadsto \color{blue}{x + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right)} \]
    6. Step-by-step derivation
      1. *-lft-identity61.0%

        \[\leadsto \color{blue}{1 \cdot x} + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right) \]
      2. *-commutative61.0%

        \[\leadsto 1 \cdot x + -1 \cdot \color{blue}{\left(\left(4 + -6 \cdot z\right) \cdot x\right)} \]
      3. +-commutative61.0%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\left(-6 \cdot z + 4\right)} \cdot x\right) \]
      4. *-commutative61.0%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\left(\color{blue}{z \cdot -6} + 4\right) \cdot x\right) \]
      5. fma-define61.0%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\mathsf{fma}\left(z, -6, 4\right)} \cdot x\right) \]
      6. associate-*r*61.0%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \mathsf{fma}\left(z, -6, 4\right)\right) \cdot x} \]
      7. fma-define61.0%

        \[\leadsto 1 \cdot x + \left(-1 \cdot \color{blue}{\left(z \cdot -6 + 4\right)}\right) \cdot x \]
      8. distribute-lft-in61.0%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \left(z \cdot -6\right) + -1 \cdot 4\right)} \cdot x \]
      9. neg-mul-161.0%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z \cdot -6\right)} + -1 \cdot 4\right) \cdot x \]
      10. distribute-lft-neg-in61.0%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z\right) \cdot -6} + -1 \cdot 4\right) \cdot x \]
      11. metadata-eval61.0%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{-4}\right) \cdot x \]
      12. metadata-eval61.0%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{0.6666666666666666 \cdot -6}\right) \cdot x \]
      13. distribute-rgt-in61.0%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-6 \cdot \left(\left(-z\right) + 0.6666666666666666\right)\right)} \cdot x \]
      14. +-commutative61.0%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \cdot x \]
      15. sub-neg61.0%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 - z\right)}\right) \cdot x \]
      16. distribute-rgt-in61.0%

        \[\leadsto \color{blue}{x \cdot \left(1 + -6 \cdot \left(0.6666666666666666 - z\right)\right)} \]
      17. sub-neg61.0%

        \[\leadsto x \cdot \left(1 + -6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \]
      18. distribute-rgt-in61.0%

        \[\leadsto x \cdot \left(1 + \color{blue}{\left(0.6666666666666666 \cdot -6 + \left(-z\right) \cdot -6\right)}\right) \]
      19. metadata-eval61.0%

        \[\leadsto x \cdot \left(1 + \left(\color{blue}{-4} + \left(-z\right) \cdot -6\right)\right) \]
      20. distribute-lft-neg-in61.0%

        \[\leadsto x \cdot \left(1 + \left(-4 + \color{blue}{\left(-z \cdot -6\right)}\right)\right) \]
      21. associate-+r+61.0%

        \[\leadsto x \cdot \color{blue}{\left(\left(1 + -4\right) + \left(-z \cdot -6\right)\right)} \]
    7. Simplified61.0%

      \[\leadsto \color{blue}{x \cdot \left(-3 + 6 \cdot z\right)} \]
    8. Taylor expanded in z around inf 61.0%

      \[\leadsto \color{blue}{6 \cdot \left(x \cdot z\right)} \]

    if -1.32000000000000003e91 < z < -3.1e-31 or 0.5 < z

    1. Initial program 99.7%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. +-commutative99.7%

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.7%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.7%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.7%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.7%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in z around inf 99.7%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{z \cdot \left(4 \cdot \frac{1}{z} - 6\right)}, x\right) \]
    6. Step-by-step derivation
      1. sub-neg99.7%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \color{blue}{\left(4 \cdot \frac{1}{z} + \left(-6\right)\right)}, x\right) \]
      2. associate-*r/99.7%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\color{blue}{\frac{4 \cdot 1}{z}} + \left(-6\right)\right), x\right) \]
      3. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\frac{\color{blue}{4}}{z} + \left(-6\right)\right), x\right) \]
      4. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\frac{4}{z} + \color{blue}{-6}\right), x\right) \]
    7. Simplified99.7%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{z \cdot \left(\frac{4}{z} + -6\right)}, x\right) \]
    8. Taylor expanded in z around inf 92.3%

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

        \[\leadsto -6 \cdot \color{blue}{\left(\left(y - x\right) \cdot z\right)} \]
      2. associate-*l*92.4%

        \[\leadsto \color{blue}{\left(-6 \cdot \left(y - x\right)\right) \cdot z} \]
      3. *-commutative92.4%

        \[\leadsto \color{blue}{z \cdot \left(-6 \cdot \left(y - x\right)\right)} \]
    10. Simplified92.4%

      \[\leadsto \color{blue}{z \cdot \left(-6 \cdot \left(y - x\right)\right)} \]
    11. Taylor expanded in y around inf 51.9%

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

    if -3.1e-31 < z < 0.5

    1. Initial program 99.4%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. +-commutative99.4%

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.9%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.9%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 53.2%

      \[\leadsto \color{blue}{x + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right)} \]
    6. Step-by-step derivation
      1. *-lft-identity53.2%

        \[\leadsto \color{blue}{1 \cdot x} + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right) \]
      2. *-commutative53.2%

        \[\leadsto 1 \cdot x + -1 \cdot \color{blue}{\left(\left(4 + -6 \cdot z\right) \cdot x\right)} \]
      3. +-commutative53.2%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\left(-6 \cdot z + 4\right)} \cdot x\right) \]
      4. *-commutative53.2%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\left(\color{blue}{z \cdot -6} + 4\right) \cdot x\right) \]
      5. fma-define53.2%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\mathsf{fma}\left(z, -6, 4\right)} \cdot x\right) \]
      6. associate-*r*53.2%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \mathsf{fma}\left(z, -6, 4\right)\right) \cdot x} \]
      7. fma-define53.2%

        \[\leadsto 1 \cdot x + \left(-1 \cdot \color{blue}{\left(z \cdot -6 + 4\right)}\right) \cdot x \]
      8. distribute-lft-in53.2%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \left(z \cdot -6\right) + -1 \cdot 4\right)} \cdot x \]
      9. neg-mul-153.2%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z \cdot -6\right)} + -1 \cdot 4\right) \cdot x \]
      10. distribute-lft-neg-in53.2%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z\right) \cdot -6} + -1 \cdot 4\right) \cdot x \]
      11. metadata-eval53.2%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{-4}\right) \cdot x \]
      12. metadata-eval53.2%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{0.6666666666666666 \cdot -6}\right) \cdot x \]
      13. distribute-rgt-in53.1%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-6 \cdot \left(\left(-z\right) + 0.6666666666666666\right)\right)} \cdot x \]
      14. +-commutative53.1%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \cdot x \]
      15. sub-neg53.1%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 - z\right)}\right) \cdot x \]
      16. distribute-rgt-in53.1%

        \[\leadsto \color{blue}{x \cdot \left(1 + -6 \cdot \left(0.6666666666666666 - z\right)\right)} \]
      17. sub-neg53.1%

        \[\leadsto x \cdot \left(1 + -6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \]
      18. distribute-rgt-in53.2%

        \[\leadsto x \cdot \left(1 + \color{blue}{\left(0.6666666666666666 \cdot -6 + \left(-z\right) \cdot -6\right)}\right) \]
      19. metadata-eval53.2%

        \[\leadsto x \cdot \left(1 + \left(\color{blue}{-4} + \left(-z\right) \cdot -6\right)\right) \]
      20. distribute-lft-neg-in53.2%

        \[\leadsto x \cdot \left(1 + \left(-4 + \color{blue}{\left(-z \cdot -6\right)}\right)\right) \]
      21. associate-+r+53.2%

        \[\leadsto x \cdot \color{blue}{\left(\left(1 + -4\right) + \left(-z \cdot -6\right)\right)} \]
    7. Simplified53.2%

      \[\leadsto \color{blue}{x \cdot \left(-3 + 6 \cdot z\right)} \]
    8. Taylor expanded in z around 0 52.6%

      \[\leadsto \color{blue}{-3 \cdot x} \]
    9. Step-by-step derivation
      1. *-commutative52.6%

        \[\leadsto \color{blue}{x \cdot -3} \]
    10. Simplified52.6%

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -1.32 \cdot 10^{+91}:\\ \;\;\;\;6 \cdot \left(x \cdot z\right)\\ \mathbf{elif}\;z \leq -3.1 \cdot 10^{-31} \lor \neg \left(z \leq 0.5\right):\\ \;\;\;\;-6 \cdot \left(y \cdot z\right)\\ \mathbf{else}:\\ \;\;\;\;x \cdot -3\\ \end{array} \]
  5. Add Preprocessing

Alternative 6: 97.6% accurate, 0.8× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -0.62 \lor \neg \left(z \leq 0.6\right):\\ \;\;\;\;z \cdot \left(\left(y - x\right) \cdot -6\right)\\ \mathbf{else}:\\ \;\;\;\;y \cdot 4 + x \cdot -3\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (or (<= z -0.62) (not (<= z 0.6)))
   (* z (* (- y x) -6.0))
   (+ (* y 4.0) (* x -3.0))))
double code(double x, double y, double z) {
	double tmp;
	if ((z <= -0.62) || !(z <= 0.6)) {
		tmp = z * ((y - x) * -6.0);
	} else {
		tmp = (y * 4.0) + (x * -3.0);
	}
	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 <= (-0.62d0)) .or. (.not. (z <= 0.6d0))) then
        tmp = z * ((y - x) * (-6.0d0))
    else
        tmp = (y * 4.0d0) + (x * (-3.0d0))
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if ((z <= -0.62) || !(z <= 0.6)) {
		tmp = z * ((y - x) * -6.0);
	} else {
		tmp = (y * 4.0) + (x * -3.0);
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if (z <= -0.62) or not (z <= 0.6):
		tmp = z * ((y - x) * -6.0)
	else:
		tmp = (y * 4.0) + (x * -3.0)
	return tmp
function code(x, y, z)
	tmp = 0.0
	if ((z <= -0.62) || !(z <= 0.6))
		tmp = Float64(z * Float64(Float64(y - x) * -6.0));
	else
		tmp = Float64(Float64(y * 4.0) + Float64(x * -3.0));
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if ((z <= -0.62) || ~((z <= 0.6)))
		tmp = z * ((y - x) * -6.0);
	else
		tmp = (y * 4.0) + (x * -3.0);
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[Or[LessEqual[z, -0.62], N[Not[LessEqual[z, 0.6]], $MachinePrecision]], N[(z * N[(N[(y - x), $MachinePrecision] * -6.0), $MachinePrecision]), $MachinePrecision], N[(N[(y * 4.0), $MachinePrecision] + N[(x * -3.0), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;z \leq -0.62 \lor \neg \left(z \leq 0.6\right):\\
\;\;\;\;z \cdot \left(\left(y - x\right) \cdot -6\right)\\

\mathbf{else}:\\
\;\;\;\;y \cdot 4 + x \cdot -3\\


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

    1. Initial program 99.7%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. +-commutative99.7%

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.8%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.8%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.8%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in z around inf 99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{z \cdot \left(4 \cdot \frac{1}{z} - 6\right)}, x\right) \]
    6. Step-by-step derivation
      1. sub-neg99.8%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \color{blue}{\left(4 \cdot \frac{1}{z} + \left(-6\right)\right)}, x\right) \]
      2. associate-*r/99.8%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\color{blue}{\frac{4 \cdot 1}{z}} + \left(-6\right)\right), x\right) \]
      3. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\frac{\color{blue}{4}}{z} + \left(-6\right)\right), x\right) \]
      4. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\frac{4}{z} + \color{blue}{-6}\right), x\right) \]
    7. Simplified99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{z \cdot \left(\frac{4}{z} + -6\right)}, x\right) \]
    8. Taylor expanded in z around inf 97.6%

      \[\leadsto \color{blue}{-6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    9. Step-by-step derivation
      1. *-commutative97.6%

        \[\leadsto -6 \cdot \color{blue}{\left(\left(y - x\right) \cdot z\right)} \]
      2. associate-*l*97.7%

        \[\leadsto \color{blue}{\left(-6 \cdot \left(y - x\right)\right) \cdot z} \]
      3. *-commutative97.7%

        \[\leadsto \color{blue}{z \cdot \left(-6 \cdot \left(y - x\right)\right)} \]
    10. Simplified97.7%

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

    if -0.619999999999999996 < z < 0.599999999999999978

    1. Initial program 99.4%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. metadata-eval99.4%

        \[\leadsto x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\color{blue}{0.6666666666666666} - z\right) \]
    3. Simplified99.4%

      \[\leadsto \color{blue}{x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(0.6666666666666666 - z\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in z around 0 98.9%

      \[\leadsto x + \color{blue}{4 \cdot \left(y - x\right)} \]
    6. Taylor expanded in x around 0 98.9%

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -0.62 \lor \neg \left(z \leq 0.6\right):\\ \;\;\;\;z \cdot \left(\left(y - x\right) \cdot -6\right)\\ \mathbf{else}:\\ \;\;\;\;y \cdot 4 + x \cdot -3\\ \end{array} \]
  5. Add Preprocessing

Alternative 7: 97.6% accurate, 0.8× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -0.58 \lor \neg \left(z \leq 0.65\right):\\ \;\;\;\;z \cdot \left(\left(y - x\right) \cdot -6\right)\\ \mathbf{else}:\\ \;\;\;\;x + \left(y - x\right) \cdot 4\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (or (<= z -0.58) (not (<= z 0.65)))
   (* z (* (- y x) -6.0))
   (+ x (* (- y x) 4.0))))
double code(double x, double y, double z) {
	double tmp;
	if ((z <= -0.58) || !(z <= 0.65)) {
		tmp = z * ((y - x) * -6.0);
	} else {
		tmp = x + ((y - x) * 4.0);
	}
	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 <= (-0.58d0)) .or. (.not. (z <= 0.65d0))) then
        tmp = z * ((y - x) * (-6.0d0))
    else
        tmp = x + ((y - x) * 4.0d0)
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if ((z <= -0.58) || !(z <= 0.65)) {
		tmp = z * ((y - x) * -6.0);
	} else {
		tmp = x + ((y - x) * 4.0);
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if (z <= -0.58) or not (z <= 0.65):
		tmp = z * ((y - x) * -6.0)
	else:
		tmp = x + ((y - x) * 4.0)
	return tmp
function code(x, y, z)
	tmp = 0.0
	if ((z <= -0.58) || !(z <= 0.65))
		tmp = Float64(z * Float64(Float64(y - x) * -6.0));
	else
		tmp = Float64(x + Float64(Float64(y - x) * 4.0));
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if ((z <= -0.58) || ~((z <= 0.65)))
		tmp = z * ((y - x) * -6.0);
	else
		tmp = x + ((y - x) * 4.0);
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[Or[LessEqual[z, -0.58], N[Not[LessEqual[z, 0.65]], $MachinePrecision]], N[(z * N[(N[(y - x), $MachinePrecision] * -6.0), $MachinePrecision]), $MachinePrecision], N[(x + N[(N[(y - x), $MachinePrecision] * 4.0), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;z \leq -0.58 \lor \neg \left(z \leq 0.65\right):\\
\;\;\;\;z \cdot \left(\left(y - x\right) \cdot -6\right)\\

\mathbf{else}:\\
\;\;\;\;x + \left(y - x\right) \cdot 4\\


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

    1. Initial program 99.7%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. +-commutative99.7%

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.8%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.8%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.8%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in z around inf 99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{z \cdot \left(4 \cdot \frac{1}{z} - 6\right)}, x\right) \]
    6. Step-by-step derivation
      1. sub-neg99.8%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \color{blue}{\left(4 \cdot \frac{1}{z} + \left(-6\right)\right)}, x\right) \]
      2. associate-*r/99.8%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\color{blue}{\frac{4 \cdot 1}{z}} + \left(-6\right)\right), x\right) \]
      3. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\frac{\color{blue}{4}}{z} + \left(-6\right)\right), x\right) \]
      4. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\frac{4}{z} + \color{blue}{-6}\right), x\right) \]
    7. Simplified99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{z \cdot \left(\frac{4}{z} + -6\right)}, x\right) \]
    8. Taylor expanded in z around inf 97.6%

      \[\leadsto \color{blue}{-6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    9. Step-by-step derivation
      1. *-commutative97.6%

        \[\leadsto -6 \cdot \color{blue}{\left(\left(y - x\right) \cdot z\right)} \]
      2. associate-*l*97.7%

        \[\leadsto \color{blue}{\left(-6 \cdot \left(y - x\right)\right) \cdot z} \]
      3. *-commutative97.7%

        \[\leadsto \color{blue}{z \cdot \left(-6 \cdot \left(y - x\right)\right)} \]
    10. Simplified97.7%

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

    if -0.57999999999999996 < z < 0.650000000000000022

    1. Initial program 99.4%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. metadata-eval99.4%

        \[\leadsto x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\color{blue}{0.6666666666666666} - z\right) \]
    3. Simplified99.4%

      \[\leadsto \color{blue}{x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(0.6666666666666666 - z\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in z around 0 98.9%

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -0.58 \lor \neg \left(z \leq 0.65\right):\\ \;\;\;\;z \cdot \left(\left(y - x\right) \cdot -6\right)\\ \mathbf{else}:\\ \;\;\;\;x + \left(y - x\right) \cdot 4\\ \end{array} \]
  5. Add Preprocessing

Alternative 8: 75.8% accurate, 0.8× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -5.5 \cdot 10^{-9} \lor \neg \left(x \leq 1.3 \cdot 10^{+19}\right):\\ \;\;\;\;x \cdot \left(-3 + z \cdot 6\right)\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(4 + z \cdot -6\right)\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (or (<= x -5.5e-9) (not (<= x 1.3e+19)))
   (* x (+ -3.0 (* z 6.0)))
   (* y (+ 4.0 (* z -6.0)))))
double code(double x, double y, double z) {
	double tmp;
	if ((x <= -5.5e-9) || !(x <= 1.3e+19)) {
		tmp = x * (-3.0 + (z * 6.0));
	} else {
		tmp = y * (4.0 + (z * -6.0));
	}
	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 ((x <= (-5.5d-9)) .or. (.not. (x <= 1.3d+19))) then
        tmp = x * ((-3.0d0) + (z * 6.0d0))
    else
        tmp = y * (4.0d0 + (z * (-6.0d0)))
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if ((x <= -5.5e-9) || !(x <= 1.3e+19)) {
		tmp = x * (-3.0 + (z * 6.0));
	} else {
		tmp = y * (4.0 + (z * -6.0));
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if (x <= -5.5e-9) or not (x <= 1.3e+19):
		tmp = x * (-3.0 + (z * 6.0))
	else:
		tmp = y * (4.0 + (z * -6.0))
	return tmp
function code(x, y, z)
	tmp = 0.0
	if ((x <= -5.5e-9) || !(x <= 1.3e+19))
		tmp = Float64(x * Float64(-3.0 + Float64(z * 6.0)));
	else
		tmp = Float64(y * Float64(4.0 + Float64(z * -6.0)));
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if ((x <= -5.5e-9) || ~((x <= 1.3e+19)))
		tmp = x * (-3.0 + (z * 6.0));
	else
		tmp = y * (4.0 + (z * -6.0));
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[Or[LessEqual[x, -5.5e-9], N[Not[LessEqual[x, 1.3e+19]], $MachinePrecision]], N[(x * N[(-3.0 + N[(z * 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(y * N[(4.0 + N[(z * -6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq -5.5 \cdot 10^{-9} \lor \neg \left(x \leq 1.3 \cdot 10^{+19}\right):\\
\;\;\;\;x \cdot \left(-3 + z \cdot 6\right)\\

\mathbf{else}:\\
\;\;\;\;y \cdot \left(4 + z \cdot -6\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < -5.4999999999999996e-9 or 1.3e19 < x

    1. Initial program 99.6%

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

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.8%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.8%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.8%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 83.0%

      \[\leadsto \color{blue}{x + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right)} \]
    6. Step-by-step derivation
      1. *-lft-identity83.0%

        \[\leadsto \color{blue}{1 \cdot x} + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right) \]
      2. *-commutative83.0%

        \[\leadsto 1 \cdot x + -1 \cdot \color{blue}{\left(\left(4 + -6 \cdot z\right) \cdot x\right)} \]
      3. +-commutative83.0%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\left(-6 \cdot z + 4\right)} \cdot x\right) \]
      4. *-commutative83.0%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\left(\color{blue}{z \cdot -6} + 4\right) \cdot x\right) \]
      5. fma-define83.0%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\mathsf{fma}\left(z, -6, 4\right)} \cdot x\right) \]
      6. associate-*r*83.0%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \mathsf{fma}\left(z, -6, 4\right)\right) \cdot x} \]
      7. fma-define83.0%

        \[\leadsto 1 \cdot x + \left(-1 \cdot \color{blue}{\left(z \cdot -6 + 4\right)}\right) \cdot x \]
      8. distribute-lft-in83.0%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \left(z \cdot -6\right) + -1 \cdot 4\right)} \cdot x \]
      9. neg-mul-183.0%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z \cdot -6\right)} + -1 \cdot 4\right) \cdot x \]
      10. distribute-lft-neg-in83.0%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z\right) \cdot -6} + -1 \cdot 4\right) \cdot x \]
      11. metadata-eval83.0%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{-4}\right) \cdot x \]
      12. metadata-eval83.0%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{0.6666666666666666 \cdot -6}\right) \cdot x \]
      13. distribute-rgt-in83.0%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-6 \cdot \left(\left(-z\right) + 0.6666666666666666\right)\right)} \cdot x \]
      14. +-commutative83.0%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \cdot x \]
      15. sub-neg83.0%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 - z\right)}\right) \cdot x \]
      16. distribute-rgt-in83.0%

        \[\leadsto \color{blue}{x \cdot \left(1 + -6 \cdot \left(0.6666666666666666 - z\right)\right)} \]
      17. sub-neg83.0%

        \[\leadsto x \cdot \left(1 + -6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \]
      18. distribute-rgt-in83.0%

        \[\leadsto x \cdot \left(1 + \color{blue}{\left(0.6666666666666666 \cdot -6 + \left(-z\right) \cdot -6\right)}\right) \]
      19. metadata-eval83.0%

        \[\leadsto x \cdot \left(1 + \left(\color{blue}{-4} + \left(-z\right) \cdot -6\right)\right) \]
      20. distribute-lft-neg-in83.0%

        \[\leadsto x \cdot \left(1 + \left(-4 + \color{blue}{\left(-z \cdot -6\right)}\right)\right) \]
      21. associate-+r+83.0%

        \[\leadsto x \cdot \color{blue}{\left(\left(1 + -4\right) + \left(-z \cdot -6\right)\right)} \]
    7. Simplified83.0%

      \[\leadsto \color{blue}{x \cdot \left(-3 + 6 \cdot z\right)} \]

    if -5.4999999999999996e-9 < x < 1.3e19

    1. Initial program 99.5%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. +-commutative99.5%

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.8%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.8%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.8%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 77.4%

      \[\leadsto \color{blue}{y \cdot \left(4 + -6 \cdot z\right)} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification80.0%

    \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -5.5 \cdot 10^{-9} \lor \neg \left(x \leq 1.3 \cdot 10^{+19}\right):\\ \;\;\;\;x \cdot \left(-3 + z \cdot 6\right)\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(4 + z \cdot -6\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 9: 75.7% accurate, 0.8× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -1.25 \cdot 10^{-8} \lor \neg \left(x \leq 3 \cdot 10^{+19}\right):\\ \;\;\;\;x \cdot \left(-3 + z \cdot 6\right)\\ \mathbf{else}:\\ \;\;\;\;6 \cdot \left(y \cdot \left(0.6666666666666666 - z\right)\right)\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (or (<= x -1.25e-8) (not (<= x 3e+19)))
   (* x (+ -3.0 (* z 6.0)))
   (* 6.0 (* y (- 0.6666666666666666 z)))))
double code(double x, double y, double z) {
	double tmp;
	if ((x <= -1.25e-8) || !(x <= 3e+19)) {
		tmp = x * (-3.0 + (z * 6.0));
	} else {
		tmp = 6.0 * (y * (0.6666666666666666 - z));
	}
	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 ((x <= (-1.25d-8)) .or. (.not. (x <= 3d+19))) then
        tmp = x * ((-3.0d0) + (z * 6.0d0))
    else
        tmp = 6.0d0 * (y * (0.6666666666666666d0 - z))
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if ((x <= -1.25e-8) || !(x <= 3e+19)) {
		tmp = x * (-3.0 + (z * 6.0));
	} else {
		tmp = 6.0 * (y * (0.6666666666666666 - z));
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if (x <= -1.25e-8) or not (x <= 3e+19):
		tmp = x * (-3.0 + (z * 6.0))
	else:
		tmp = 6.0 * (y * (0.6666666666666666 - z))
	return tmp
function code(x, y, z)
	tmp = 0.0
	if ((x <= -1.25e-8) || !(x <= 3e+19))
		tmp = Float64(x * Float64(-3.0 + Float64(z * 6.0)));
	else
		tmp = Float64(6.0 * Float64(y * Float64(0.6666666666666666 - z)));
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if ((x <= -1.25e-8) || ~((x <= 3e+19)))
		tmp = x * (-3.0 + (z * 6.0));
	else
		tmp = 6.0 * (y * (0.6666666666666666 - z));
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[Or[LessEqual[x, -1.25e-8], N[Not[LessEqual[x, 3e+19]], $MachinePrecision]], N[(x * N[(-3.0 + N[(z * 6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(6.0 * N[(y * N[(0.6666666666666666 - z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq -1.25 \cdot 10^{-8} \lor \neg \left(x \leq 3 \cdot 10^{+19}\right):\\
\;\;\;\;x \cdot \left(-3 + z \cdot 6\right)\\

\mathbf{else}:\\
\;\;\;\;6 \cdot \left(y \cdot \left(0.6666666666666666 - z\right)\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < -1.2499999999999999e-8 or 3e19 < x

    1. Initial program 99.6%

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

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.8%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.8%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.8%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 83.0%

      \[\leadsto \color{blue}{x + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right)} \]
    6. Step-by-step derivation
      1. *-lft-identity83.0%

        \[\leadsto \color{blue}{1 \cdot x} + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right) \]
      2. *-commutative83.0%

        \[\leadsto 1 \cdot x + -1 \cdot \color{blue}{\left(\left(4 + -6 \cdot z\right) \cdot x\right)} \]
      3. +-commutative83.0%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\left(-6 \cdot z + 4\right)} \cdot x\right) \]
      4. *-commutative83.0%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\left(\color{blue}{z \cdot -6} + 4\right) \cdot x\right) \]
      5. fma-define83.0%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\mathsf{fma}\left(z, -6, 4\right)} \cdot x\right) \]
      6. associate-*r*83.0%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \mathsf{fma}\left(z, -6, 4\right)\right) \cdot x} \]
      7. fma-define83.0%

        \[\leadsto 1 \cdot x + \left(-1 \cdot \color{blue}{\left(z \cdot -6 + 4\right)}\right) \cdot x \]
      8. distribute-lft-in83.0%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \left(z \cdot -6\right) + -1 \cdot 4\right)} \cdot x \]
      9. neg-mul-183.0%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z \cdot -6\right)} + -1 \cdot 4\right) \cdot x \]
      10. distribute-lft-neg-in83.0%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z\right) \cdot -6} + -1 \cdot 4\right) \cdot x \]
      11. metadata-eval83.0%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{-4}\right) \cdot x \]
      12. metadata-eval83.0%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{0.6666666666666666 \cdot -6}\right) \cdot x \]
      13. distribute-rgt-in83.0%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-6 \cdot \left(\left(-z\right) + 0.6666666666666666\right)\right)} \cdot x \]
      14. +-commutative83.0%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \cdot x \]
      15. sub-neg83.0%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 - z\right)}\right) \cdot x \]
      16. distribute-rgt-in83.0%

        \[\leadsto \color{blue}{x \cdot \left(1 + -6 \cdot \left(0.6666666666666666 - z\right)\right)} \]
      17. sub-neg83.0%

        \[\leadsto x \cdot \left(1 + -6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \]
      18. distribute-rgt-in83.0%

        \[\leadsto x \cdot \left(1 + \color{blue}{\left(0.6666666666666666 \cdot -6 + \left(-z\right) \cdot -6\right)}\right) \]
      19. metadata-eval83.0%

        \[\leadsto x \cdot \left(1 + \left(\color{blue}{-4} + \left(-z\right) \cdot -6\right)\right) \]
      20. distribute-lft-neg-in83.0%

        \[\leadsto x \cdot \left(1 + \left(-4 + \color{blue}{\left(-z \cdot -6\right)}\right)\right) \]
      21. associate-+r+83.0%

        \[\leadsto x \cdot \color{blue}{\left(\left(1 + -4\right) + \left(-z \cdot -6\right)\right)} \]
    7. Simplified83.0%

      \[\leadsto \color{blue}{x \cdot \left(-3 + 6 \cdot z\right)} \]

    if -1.2499999999999999e-8 < x < 3e19

    1. Initial program 99.5%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. metadata-eval99.5%

        \[\leadsto x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\color{blue}{0.6666666666666666} - z\right) \]
    3. Simplified99.5%

      \[\leadsto \color{blue}{x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(0.6666666666666666 - z\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 77.0%

      \[\leadsto x + \color{blue}{6 \cdot \left(y \cdot \left(0.6666666666666666 - z\right)\right)} \]
    6. Taylor expanded in x around 0 77.1%

      \[\leadsto \color{blue}{6 \cdot \left(y \cdot \left(0.6666666666666666 - z\right)\right)} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification79.9%

    \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -1.25 \cdot 10^{-8} \lor \neg \left(x \leq 3 \cdot 10^{+19}\right):\\ \;\;\;\;x \cdot \left(-3 + z \cdot 6\right)\\ \mathbf{else}:\\ \;\;\;\;6 \cdot \left(y \cdot \left(0.6666666666666666 - z\right)\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 10: 97.6% accurate, 0.8× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -0.65:\\ \;\;\;\;x + \left(y - x\right) \cdot \left(z \cdot -6\right)\\ \mathbf{elif}\;z \leq 0.62:\\ \;\;\;\;y \cdot 4 + x \cdot -3\\ \mathbf{else}:\\ \;\;\;\;z \cdot \left(\left(y - x\right) \cdot -6\right)\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (<= z -0.65)
   (+ x (* (- y x) (* z -6.0)))
   (if (<= z 0.62) (+ (* y 4.0) (* x -3.0)) (* z (* (- y x) -6.0)))))
double code(double x, double y, double z) {
	double tmp;
	if (z <= -0.65) {
		tmp = x + ((y - x) * (z * -6.0));
	} else if (z <= 0.62) {
		tmp = (y * 4.0) + (x * -3.0);
	} else {
		tmp = z * ((y - x) * -6.0);
	}
	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 <= (-0.65d0)) then
        tmp = x + ((y - x) * (z * (-6.0d0)))
    else if (z <= 0.62d0) then
        tmp = (y * 4.0d0) + (x * (-3.0d0))
    else
        tmp = z * ((y - x) * (-6.0d0))
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if (z <= -0.65) {
		tmp = x + ((y - x) * (z * -6.0));
	} else if (z <= 0.62) {
		tmp = (y * 4.0) + (x * -3.0);
	} else {
		tmp = z * ((y - x) * -6.0);
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if z <= -0.65:
		tmp = x + ((y - x) * (z * -6.0))
	elif z <= 0.62:
		tmp = (y * 4.0) + (x * -3.0)
	else:
		tmp = z * ((y - x) * -6.0)
	return tmp
function code(x, y, z)
	tmp = 0.0
	if (z <= -0.65)
		tmp = Float64(x + Float64(Float64(y - x) * Float64(z * -6.0)));
	elseif (z <= 0.62)
		tmp = Float64(Float64(y * 4.0) + Float64(x * -3.0));
	else
		tmp = Float64(z * Float64(Float64(y - x) * -6.0));
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if (z <= -0.65)
		tmp = x + ((y - x) * (z * -6.0));
	elseif (z <= 0.62)
		tmp = (y * 4.0) + (x * -3.0);
	else
		tmp = z * ((y - x) * -6.0);
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[LessEqual[z, -0.65], N[(x + N[(N[(y - x), $MachinePrecision] * N[(z * -6.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 0.62], N[(N[(y * 4.0), $MachinePrecision] + N[(x * -3.0), $MachinePrecision]), $MachinePrecision], N[(z * N[(N[(y - x), $MachinePrecision] * -6.0), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;z \leq -0.65:\\
\;\;\;\;x + \left(y - x\right) \cdot \left(z \cdot -6\right)\\

\mathbf{elif}\;z \leq 0.62:\\
\;\;\;\;y \cdot 4 + x \cdot -3\\

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


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

    1. Initial program 99.7%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. metadata-eval99.7%

        \[\leadsto x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\color{blue}{0.6666666666666666} - z\right) \]
    3. Simplified99.7%

      \[\leadsto \color{blue}{x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(0.6666666666666666 - z\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in z around inf 99.6%

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

        \[\leadsto x + \color{blue}{\left(z \cdot \left(y - x\right)\right) \cdot -6} \]
      2. *-commutative99.6%

        \[\leadsto x + \color{blue}{\left(\left(y - x\right) \cdot z\right)} \cdot -6 \]
      3. associate-*l*99.7%

        \[\leadsto x + \color{blue}{\left(y - x\right) \cdot \left(z \cdot -6\right)} \]
      4. *-commutative99.7%

        \[\leadsto x + \left(y - x\right) \cdot \color{blue}{\left(-6 \cdot z\right)} \]
    7. Simplified99.7%

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

    if -0.650000000000000022 < z < 0.619999999999999996

    1. Initial program 99.4%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. metadata-eval99.4%

        \[\leadsto x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\color{blue}{0.6666666666666666} - z\right) \]
    3. Simplified99.4%

      \[\leadsto \color{blue}{x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(0.6666666666666666 - z\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in z around 0 98.9%

      \[\leadsto x + \color{blue}{4 \cdot \left(y - x\right)} \]
    6. Taylor expanded in x around 0 98.9%

      \[\leadsto \color{blue}{-3 \cdot x + 4 \cdot y} \]

    if 0.619999999999999996 < z

    1. Initial program 99.7%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. +-commutative99.7%

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.7%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.7%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.7%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.7%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in z around inf 99.7%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{z \cdot \left(4 \cdot \frac{1}{z} - 6\right)}, x\right) \]
    6. Step-by-step derivation
      1. sub-neg99.7%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \color{blue}{\left(4 \cdot \frac{1}{z} + \left(-6\right)\right)}, x\right) \]
      2. associate-*r/99.7%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\color{blue}{\frac{4 \cdot 1}{z}} + \left(-6\right)\right), x\right) \]
      3. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\frac{\color{blue}{4}}{z} + \left(-6\right)\right), x\right) \]
      4. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\frac{4}{z} + \color{blue}{-6}\right), x\right) \]
    7. Simplified99.7%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{z \cdot \left(\frac{4}{z} + -6\right)}, x\right) \]
    8. Taylor expanded in z around inf 96.0%

      \[\leadsto \color{blue}{-6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    9. Step-by-step derivation
      1. *-commutative96.0%

        \[\leadsto -6 \cdot \color{blue}{\left(\left(y - x\right) \cdot z\right)} \]
      2. associate-*l*96.0%

        \[\leadsto \color{blue}{\left(-6 \cdot \left(y - x\right)\right) \cdot z} \]
      3. *-commutative96.0%

        \[\leadsto \color{blue}{z \cdot \left(-6 \cdot \left(y - x\right)\right)} \]
    10. Simplified96.0%

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -0.65:\\ \;\;\;\;x + \left(y - x\right) \cdot \left(z \cdot -6\right)\\ \mathbf{elif}\;z \leq 0.62:\\ \;\;\;\;y \cdot 4 + x \cdot -3\\ \mathbf{else}:\\ \;\;\;\;z \cdot \left(\left(y - x\right) \cdot -6\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 11: 58.6% accurate, 0.8× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -1.45 \cdot 10^{+144}:\\ \;\;\;\;6 \cdot \left(x \cdot z\right)\\ \mathbf{elif}\;x \leq 1.75 \cdot 10^{+26}:\\ \;\;\;\;6 \cdot \left(y \cdot \left(0.6666666666666666 - z\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x \cdot -3\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (<= x -1.45e+144)
   (* 6.0 (* x z))
   (if (<= x 1.75e+26) (* 6.0 (* y (- 0.6666666666666666 z))) (* x -3.0))))
double code(double x, double y, double z) {
	double tmp;
	if (x <= -1.45e+144) {
		tmp = 6.0 * (x * z);
	} else if (x <= 1.75e+26) {
		tmp = 6.0 * (y * (0.6666666666666666 - z));
	} else {
		tmp = x * -3.0;
	}
	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 (x <= (-1.45d+144)) then
        tmp = 6.0d0 * (x * z)
    else if (x <= 1.75d+26) then
        tmp = 6.0d0 * (y * (0.6666666666666666d0 - z))
    else
        tmp = x * (-3.0d0)
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if (x <= -1.45e+144) {
		tmp = 6.0 * (x * z);
	} else if (x <= 1.75e+26) {
		tmp = 6.0 * (y * (0.6666666666666666 - z));
	} else {
		tmp = x * -3.0;
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if x <= -1.45e+144:
		tmp = 6.0 * (x * z)
	elif x <= 1.75e+26:
		tmp = 6.0 * (y * (0.6666666666666666 - z))
	else:
		tmp = x * -3.0
	return tmp
function code(x, y, z)
	tmp = 0.0
	if (x <= -1.45e+144)
		tmp = Float64(6.0 * Float64(x * z));
	elseif (x <= 1.75e+26)
		tmp = Float64(6.0 * Float64(y * Float64(0.6666666666666666 - z)));
	else
		tmp = Float64(x * -3.0);
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if (x <= -1.45e+144)
		tmp = 6.0 * (x * z);
	elseif (x <= 1.75e+26)
		tmp = 6.0 * (y * (0.6666666666666666 - z));
	else
		tmp = x * -3.0;
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[LessEqual[x, -1.45e+144], N[(6.0 * N[(x * z), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 1.75e+26], N[(6.0 * N[(y * N[(0.6666666666666666 - z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x * -3.0), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq -1.45 \cdot 10^{+144}:\\
\;\;\;\;6 \cdot \left(x \cdot z\right)\\

\mathbf{elif}\;x \leq 1.75 \cdot 10^{+26}:\\
\;\;\;\;6 \cdot \left(y \cdot \left(0.6666666666666666 - z\right)\right)\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if x < -1.44999999999999999e144

    1. Initial program 99.7%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. +-commutative99.7%

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.7%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.7%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.7%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.7%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.7%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 96.7%

      \[\leadsto \color{blue}{x + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right)} \]
    6. Step-by-step derivation
      1. *-lft-identity96.7%

        \[\leadsto \color{blue}{1 \cdot x} + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right) \]
      2. *-commutative96.7%

        \[\leadsto 1 \cdot x + -1 \cdot \color{blue}{\left(\left(4 + -6 \cdot z\right) \cdot x\right)} \]
      3. +-commutative96.7%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\left(-6 \cdot z + 4\right)} \cdot x\right) \]
      4. *-commutative96.7%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\left(\color{blue}{z \cdot -6} + 4\right) \cdot x\right) \]
      5. fma-define96.7%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\mathsf{fma}\left(z, -6, 4\right)} \cdot x\right) \]
      6. associate-*r*96.7%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \mathsf{fma}\left(z, -6, 4\right)\right) \cdot x} \]
      7. fma-define96.7%

        \[\leadsto 1 \cdot x + \left(-1 \cdot \color{blue}{\left(z \cdot -6 + 4\right)}\right) \cdot x \]
      8. distribute-lft-in96.7%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \left(z \cdot -6\right) + -1 \cdot 4\right)} \cdot x \]
      9. neg-mul-196.7%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z \cdot -6\right)} + -1 \cdot 4\right) \cdot x \]
      10. distribute-lft-neg-in96.7%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z\right) \cdot -6} + -1 \cdot 4\right) \cdot x \]
      11. metadata-eval96.7%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{-4}\right) \cdot x \]
      12. metadata-eval96.7%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{0.6666666666666666 \cdot -6}\right) \cdot x \]
      13. distribute-rgt-in96.7%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-6 \cdot \left(\left(-z\right) + 0.6666666666666666\right)\right)} \cdot x \]
      14. +-commutative96.7%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \cdot x \]
      15. sub-neg96.7%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 - z\right)}\right) \cdot x \]
      16. distribute-rgt-in96.7%

        \[\leadsto \color{blue}{x \cdot \left(1 + -6 \cdot \left(0.6666666666666666 - z\right)\right)} \]
      17. sub-neg96.7%

        \[\leadsto x \cdot \left(1 + -6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \]
      18. distribute-rgt-in96.7%

        \[\leadsto x \cdot \left(1 + \color{blue}{\left(0.6666666666666666 \cdot -6 + \left(-z\right) \cdot -6\right)}\right) \]
      19. metadata-eval96.7%

        \[\leadsto x \cdot \left(1 + \left(\color{blue}{-4} + \left(-z\right) \cdot -6\right)\right) \]
      20. distribute-lft-neg-in96.7%

        \[\leadsto x \cdot \left(1 + \left(-4 + \color{blue}{\left(-z \cdot -6\right)}\right)\right) \]
      21. associate-+r+96.7%

        \[\leadsto x \cdot \color{blue}{\left(\left(1 + -4\right) + \left(-z \cdot -6\right)\right)} \]
    7. Simplified96.7%

      \[\leadsto \color{blue}{x \cdot \left(-3 + 6 \cdot z\right)} \]
    8. Taylor expanded in z around inf 64.6%

      \[\leadsto \color{blue}{6 \cdot \left(x \cdot z\right)} \]

    if -1.44999999999999999e144 < x < 1.75e26

    1. Initial program 99.5%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. metadata-eval99.5%

        \[\leadsto x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\color{blue}{0.6666666666666666} - z\right) \]
    3. Simplified99.5%

      \[\leadsto \color{blue}{x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(0.6666666666666666 - z\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in y around inf 71.1%

      \[\leadsto x + \color{blue}{6 \cdot \left(y \cdot \left(0.6666666666666666 - z\right)\right)} \]
    6. Taylor expanded in x around 0 71.3%

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

    if 1.75e26 < x

    1. Initial program 99.6%

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

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.9%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.9%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 85.8%

      \[\leadsto \color{blue}{x + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right)} \]
    6. Step-by-step derivation
      1. *-lft-identity85.8%

        \[\leadsto \color{blue}{1 \cdot x} + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right) \]
      2. *-commutative85.8%

        \[\leadsto 1 \cdot x + -1 \cdot \color{blue}{\left(\left(4 + -6 \cdot z\right) \cdot x\right)} \]
      3. +-commutative85.8%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\left(-6 \cdot z + 4\right)} \cdot x\right) \]
      4. *-commutative85.8%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\left(\color{blue}{z \cdot -6} + 4\right) \cdot x\right) \]
      5. fma-define85.8%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\mathsf{fma}\left(z, -6, 4\right)} \cdot x\right) \]
      6. associate-*r*85.8%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \mathsf{fma}\left(z, -6, 4\right)\right) \cdot x} \]
      7. fma-define85.8%

        \[\leadsto 1 \cdot x + \left(-1 \cdot \color{blue}{\left(z \cdot -6 + 4\right)}\right) \cdot x \]
      8. distribute-lft-in85.8%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \left(z \cdot -6\right) + -1 \cdot 4\right)} \cdot x \]
      9. neg-mul-185.8%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z \cdot -6\right)} + -1 \cdot 4\right) \cdot x \]
      10. distribute-lft-neg-in85.8%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z\right) \cdot -6} + -1 \cdot 4\right) \cdot x \]
      11. metadata-eval85.8%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{-4}\right) \cdot x \]
      12. metadata-eval85.8%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{0.6666666666666666 \cdot -6}\right) \cdot x \]
      13. distribute-rgt-in85.8%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-6 \cdot \left(\left(-z\right) + 0.6666666666666666\right)\right)} \cdot x \]
      14. +-commutative85.8%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \cdot x \]
      15. sub-neg85.8%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 - z\right)}\right) \cdot x \]
      16. distribute-rgt-in85.8%

        \[\leadsto \color{blue}{x \cdot \left(1 + -6 \cdot \left(0.6666666666666666 - z\right)\right)} \]
      17. sub-neg85.8%

        \[\leadsto x \cdot \left(1 + -6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \]
      18. distribute-rgt-in85.8%

        \[\leadsto x \cdot \left(1 + \color{blue}{\left(0.6666666666666666 \cdot -6 + \left(-z\right) \cdot -6\right)}\right) \]
      19. metadata-eval85.8%

        \[\leadsto x \cdot \left(1 + \left(\color{blue}{-4} + \left(-z\right) \cdot -6\right)\right) \]
      20. distribute-lft-neg-in85.8%

        \[\leadsto x \cdot \left(1 + \left(-4 + \color{blue}{\left(-z \cdot -6\right)}\right)\right) \]
      21. associate-+r+85.8%

        \[\leadsto x \cdot \color{blue}{\left(\left(1 + -4\right) + \left(-z \cdot -6\right)\right)} \]
    7. Simplified85.8%

      \[\leadsto \color{blue}{x \cdot \left(-3 + 6 \cdot z\right)} \]
    8. Taylor expanded in z around 0 55.7%

      \[\leadsto \color{blue}{-3 \cdot x} \]
    9. Step-by-step derivation
      1. *-commutative55.7%

        \[\leadsto \color{blue}{x \cdot -3} \]
    10. Simplified55.7%

      \[\leadsto \color{blue}{x \cdot -3} \]
  3. Recombined 3 regimes into one program.
  4. Add Preprocessing

Alternative 12: 49.3% accurate, 0.9× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -3.1 \cdot 10^{-31} \lor \neg \left(z \leq 0.6\right):\\ \;\;\;\;-6 \cdot \left(y \cdot z\right)\\ \mathbf{else}:\\ \;\;\;\;x \cdot -3\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (or (<= z -3.1e-31) (not (<= z 0.6))) (* -6.0 (* y z)) (* x -3.0)))
double code(double x, double y, double z) {
	double tmp;
	if ((z <= -3.1e-31) || !(z <= 0.6)) {
		tmp = -6.0 * (y * z);
	} else {
		tmp = x * -3.0;
	}
	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.1d-31)) .or. (.not. (z <= 0.6d0))) then
        tmp = (-6.0d0) * (y * z)
    else
        tmp = x * (-3.0d0)
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if ((z <= -3.1e-31) || !(z <= 0.6)) {
		tmp = -6.0 * (y * z);
	} else {
		tmp = x * -3.0;
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if (z <= -3.1e-31) or not (z <= 0.6):
		tmp = -6.0 * (y * z)
	else:
		tmp = x * -3.0
	return tmp
function code(x, y, z)
	tmp = 0.0
	if ((z <= -3.1e-31) || !(z <= 0.6))
		tmp = Float64(-6.0 * Float64(y * z));
	else
		tmp = Float64(x * -3.0);
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if ((z <= -3.1e-31) || ~((z <= 0.6)))
		tmp = -6.0 * (y * z);
	else
		tmp = x * -3.0;
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[Or[LessEqual[z, -3.1e-31], N[Not[LessEqual[z, 0.6]], $MachinePrecision]], N[(-6.0 * N[(y * z), $MachinePrecision]), $MachinePrecision], N[(x * -3.0), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;z \leq -3.1 \cdot 10^{-31} \lor \neg \left(z \leq 0.6\right):\\
\;\;\;\;-6 \cdot \left(y \cdot z\right)\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if z < -3.1e-31 or 0.599999999999999978 < z

    1. Initial program 99.7%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. +-commutative99.7%

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.8%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.8%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.8%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in z around inf 99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{z \cdot \left(4 \cdot \frac{1}{z} - 6\right)}, x\right) \]
    6. Step-by-step derivation
      1. sub-neg99.8%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \color{blue}{\left(4 \cdot \frac{1}{z} + \left(-6\right)\right)}, x\right) \]
      2. associate-*r/99.8%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\color{blue}{\frac{4 \cdot 1}{z}} + \left(-6\right)\right), x\right) \]
      3. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\frac{\color{blue}{4}}{z} + \left(-6\right)\right), x\right) \]
      4. metadata-eval99.8%

        \[\leadsto \mathsf{fma}\left(y - x, z \cdot \left(\frac{4}{z} + \color{blue}{-6}\right), x\right) \]
    7. Simplified99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{z \cdot \left(\frac{4}{z} + -6\right)}, x\right) \]
    8. Taylor expanded in z around inf 94.8%

      \[\leadsto \color{blue}{-6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    9. Step-by-step derivation
      1. *-commutative94.8%

        \[\leadsto -6 \cdot \color{blue}{\left(\left(y - x\right) \cdot z\right)} \]
      2. associate-*l*94.8%

        \[\leadsto \color{blue}{\left(-6 \cdot \left(y - x\right)\right) \cdot z} \]
      3. *-commutative94.8%

        \[\leadsto \color{blue}{z \cdot \left(-6 \cdot \left(y - x\right)\right)} \]
    10. Simplified94.8%

      \[\leadsto \color{blue}{z \cdot \left(-6 \cdot \left(y - x\right)\right)} \]
    11. Taylor expanded in y around inf 50.8%

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

    if -3.1e-31 < z < 0.599999999999999978

    1. Initial program 99.4%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
    2. Step-by-step derivation
      1. +-commutative99.4%

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
      2. associate-*l*99.9%

        \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
      3. fma-define99.9%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
      4. sub-neg99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
      5. distribute-rgt-in99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
      6. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
      7. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
      8. distribute-lft-neg-out99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
      9. distribute-rgt-neg-in99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
      10. metadata-eval99.9%

        \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in y around 0 53.2%

      \[\leadsto \color{blue}{x + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right)} \]
    6. Step-by-step derivation
      1. *-lft-identity53.2%

        \[\leadsto \color{blue}{1 \cdot x} + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right) \]
      2. *-commutative53.2%

        \[\leadsto 1 \cdot x + -1 \cdot \color{blue}{\left(\left(4 + -6 \cdot z\right) \cdot x\right)} \]
      3. +-commutative53.2%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\left(-6 \cdot z + 4\right)} \cdot x\right) \]
      4. *-commutative53.2%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\left(\color{blue}{z \cdot -6} + 4\right) \cdot x\right) \]
      5. fma-define53.2%

        \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\mathsf{fma}\left(z, -6, 4\right)} \cdot x\right) \]
      6. associate-*r*53.2%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \mathsf{fma}\left(z, -6, 4\right)\right) \cdot x} \]
      7. fma-define53.2%

        \[\leadsto 1 \cdot x + \left(-1 \cdot \color{blue}{\left(z \cdot -6 + 4\right)}\right) \cdot x \]
      8. distribute-lft-in53.2%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \left(z \cdot -6\right) + -1 \cdot 4\right)} \cdot x \]
      9. neg-mul-153.2%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z \cdot -6\right)} + -1 \cdot 4\right) \cdot x \]
      10. distribute-lft-neg-in53.2%

        \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z\right) \cdot -6} + -1 \cdot 4\right) \cdot x \]
      11. metadata-eval53.2%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{-4}\right) \cdot x \]
      12. metadata-eval53.2%

        \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{0.6666666666666666 \cdot -6}\right) \cdot x \]
      13. distribute-rgt-in53.1%

        \[\leadsto 1 \cdot x + \color{blue}{\left(-6 \cdot \left(\left(-z\right) + 0.6666666666666666\right)\right)} \cdot x \]
      14. +-commutative53.1%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \cdot x \]
      15. sub-neg53.1%

        \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 - z\right)}\right) \cdot x \]
      16. distribute-rgt-in53.1%

        \[\leadsto \color{blue}{x \cdot \left(1 + -6 \cdot \left(0.6666666666666666 - z\right)\right)} \]
      17. sub-neg53.1%

        \[\leadsto x \cdot \left(1 + -6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \]
      18. distribute-rgt-in53.2%

        \[\leadsto x \cdot \left(1 + \color{blue}{\left(0.6666666666666666 \cdot -6 + \left(-z\right) \cdot -6\right)}\right) \]
      19. metadata-eval53.2%

        \[\leadsto x \cdot \left(1 + \left(\color{blue}{-4} + \left(-z\right) \cdot -6\right)\right) \]
      20. distribute-lft-neg-in53.2%

        \[\leadsto x \cdot \left(1 + \left(-4 + \color{blue}{\left(-z \cdot -6\right)}\right)\right) \]
      21. associate-+r+53.2%

        \[\leadsto x \cdot \color{blue}{\left(\left(1 + -4\right) + \left(-z \cdot -6\right)\right)} \]
    7. Simplified53.2%

      \[\leadsto \color{blue}{x \cdot \left(-3 + 6 \cdot z\right)} \]
    8. Taylor expanded in z around 0 52.6%

      \[\leadsto \color{blue}{-3 \cdot x} \]
    9. Step-by-step derivation
      1. *-commutative52.6%

        \[\leadsto \color{blue}{x \cdot -3} \]
    10. Simplified52.6%

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -3.1 \cdot 10^{-31} \lor \neg \left(z \leq 0.6\right):\\ \;\;\;\;-6 \cdot \left(y \cdot z\right)\\ \mathbf{else}:\\ \;\;\;\;x \cdot -3\\ \end{array} \]
  5. Add Preprocessing

Alternative 13: 99.5% accurate, 1.0× speedup?

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

\\
x + \left(x \cdot -6 + y \cdot 6\right) \cdot \left(0.6666666666666666 - z\right)
\end{array}
Derivation
  1. Initial program 99.5%

    \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
  2. Step-by-step derivation
    1. metadata-eval99.5%

      \[\leadsto x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\color{blue}{0.6666666666666666} - z\right) \]
  3. Simplified99.5%

    \[\leadsto \color{blue}{x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(0.6666666666666666 - z\right)} \]
  4. Add Preprocessing
  5. Taylor expanded in y around 0 99.5%

    \[\leadsto x + \color{blue}{\left(-6 \cdot x + 6 \cdot y\right)} \cdot \left(0.6666666666666666 - z\right) \]
  6. Final simplification99.5%

    \[\leadsto x + \left(x \cdot -6 + y \cdot 6\right) \cdot \left(0.6666666666666666 - z\right) \]
  7. Add Preprocessing

Alternative 14: 99.5% accurate, 1.2× speedup?

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

\\
x + \left(0.6666666666666666 - z\right) \cdot \left(\left(y - x\right) \cdot 6\right)
\end{array}
Derivation
  1. Initial program 99.5%

    \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
  2. Step-by-step derivation
    1. metadata-eval99.5%

      \[\leadsto x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\color{blue}{0.6666666666666666} - z\right) \]
  3. Simplified99.5%

    \[\leadsto \color{blue}{x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(0.6666666666666666 - z\right)} \]
  4. Add Preprocessing
  5. Final simplification99.5%

    \[\leadsto x + \left(0.6666666666666666 - z\right) \cdot \left(\left(y - x\right) \cdot 6\right) \]
  6. Add Preprocessing

Alternative 15: 25.8% accurate, 4.3× speedup?

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

\\
x \cdot -3
\end{array}
Derivation
  1. Initial program 99.5%

    \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
  2. Step-by-step derivation
    1. +-commutative99.5%

      \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) + x} \]
    2. associate-*l*99.8%

      \[\leadsto \color{blue}{\left(y - x\right) \cdot \left(6 \cdot \left(\frac{2}{3} - z\right)\right)} + x \]
    3. fma-define99.8%

      \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 6 \cdot \left(\frac{2}{3} - z\right), x\right)} \]
    4. sub-neg99.8%

      \[\leadsto \mathsf{fma}\left(y - x, 6 \cdot \color{blue}{\left(\frac{2}{3} + \left(-z\right)\right)}, x\right) \]
    5. distribute-rgt-in99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{\frac{2}{3} \cdot 6 + \left(-z\right) \cdot 6}, x\right) \]
    6. metadata-eval99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{0.6666666666666666} \cdot 6 + \left(-z\right) \cdot 6, x\right) \]
    7. metadata-eval99.8%

      \[\leadsto \mathsf{fma}\left(y - x, \color{blue}{4} + \left(-z\right) \cdot 6, x\right) \]
    8. distribute-lft-neg-out99.8%

      \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{\left(-z \cdot 6\right)}, x\right) \]
    9. distribute-rgt-neg-in99.8%

      \[\leadsto \mathsf{fma}\left(y - x, 4 + \color{blue}{z \cdot \left(-6\right)}, x\right) \]
    10. metadata-eval99.8%

      \[\leadsto \mathsf{fma}\left(y - x, 4 + z \cdot \color{blue}{-6}, x\right) \]
  3. Simplified99.8%

    \[\leadsto \color{blue}{\mathsf{fma}\left(y - x, 4 + z \cdot -6, x\right)} \]
  4. Add Preprocessing
  5. Taylor expanded in y around 0 51.5%

    \[\leadsto \color{blue}{x + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right)} \]
  6. Step-by-step derivation
    1. *-lft-identity51.5%

      \[\leadsto \color{blue}{1 \cdot x} + -1 \cdot \left(x \cdot \left(4 + -6 \cdot z\right)\right) \]
    2. *-commutative51.5%

      \[\leadsto 1 \cdot x + -1 \cdot \color{blue}{\left(\left(4 + -6 \cdot z\right) \cdot x\right)} \]
    3. +-commutative51.5%

      \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\left(-6 \cdot z + 4\right)} \cdot x\right) \]
    4. *-commutative51.5%

      \[\leadsto 1 \cdot x + -1 \cdot \left(\left(\color{blue}{z \cdot -6} + 4\right) \cdot x\right) \]
    5. fma-define51.5%

      \[\leadsto 1 \cdot x + -1 \cdot \left(\color{blue}{\mathsf{fma}\left(z, -6, 4\right)} \cdot x\right) \]
    6. associate-*r*51.5%

      \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \mathsf{fma}\left(z, -6, 4\right)\right) \cdot x} \]
    7. fma-define51.5%

      \[\leadsto 1 \cdot x + \left(-1 \cdot \color{blue}{\left(z \cdot -6 + 4\right)}\right) \cdot x \]
    8. distribute-lft-in51.5%

      \[\leadsto 1 \cdot x + \color{blue}{\left(-1 \cdot \left(z \cdot -6\right) + -1 \cdot 4\right)} \cdot x \]
    9. neg-mul-151.5%

      \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z \cdot -6\right)} + -1 \cdot 4\right) \cdot x \]
    10. distribute-lft-neg-in51.5%

      \[\leadsto 1 \cdot x + \left(\color{blue}{\left(-z\right) \cdot -6} + -1 \cdot 4\right) \cdot x \]
    11. metadata-eval51.5%

      \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{-4}\right) \cdot x \]
    12. metadata-eval51.5%

      \[\leadsto 1 \cdot x + \left(\left(-z\right) \cdot -6 + \color{blue}{0.6666666666666666 \cdot -6}\right) \cdot x \]
    13. distribute-rgt-in51.5%

      \[\leadsto 1 \cdot x + \color{blue}{\left(-6 \cdot \left(\left(-z\right) + 0.6666666666666666\right)\right)} \cdot x \]
    14. +-commutative51.5%

      \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \cdot x \]
    15. sub-neg51.5%

      \[\leadsto 1 \cdot x + \left(-6 \cdot \color{blue}{\left(0.6666666666666666 - z\right)}\right) \cdot x \]
    16. distribute-rgt-in51.5%

      \[\leadsto \color{blue}{x \cdot \left(1 + -6 \cdot \left(0.6666666666666666 - z\right)\right)} \]
    17. sub-neg51.5%

      \[\leadsto x \cdot \left(1 + -6 \cdot \color{blue}{\left(0.6666666666666666 + \left(-z\right)\right)}\right) \]
    18. distribute-rgt-in51.5%

      \[\leadsto x \cdot \left(1 + \color{blue}{\left(0.6666666666666666 \cdot -6 + \left(-z\right) \cdot -6\right)}\right) \]
    19. metadata-eval51.5%

      \[\leadsto x \cdot \left(1 + \left(\color{blue}{-4} + \left(-z\right) \cdot -6\right)\right) \]
    20. distribute-lft-neg-in51.5%

      \[\leadsto x \cdot \left(1 + \left(-4 + \color{blue}{\left(-z \cdot -6\right)}\right)\right) \]
    21. associate-+r+51.5%

      \[\leadsto x \cdot \color{blue}{\left(\left(1 + -4\right) + \left(-z \cdot -6\right)\right)} \]
  7. Simplified51.5%

    \[\leadsto \color{blue}{x \cdot \left(-3 + 6 \cdot z\right)} \]
  8. Taylor expanded in z around 0 28.7%

    \[\leadsto \color{blue}{-3 \cdot x} \]
  9. Step-by-step derivation
    1. *-commutative28.7%

      \[\leadsto \color{blue}{x \cdot -3} \]
  10. Simplified28.7%

    \[\leadsto \color{blue}{x \cdot -3} \]
  11. Add Preprocessing

Alternative 16: 2.6% accurate, 13.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 99.5%

    \[x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\frac{2}{3} - z\right) \]
  2. Step-by-step derivation
    1. metadata-eval99.5%

      \[\leadsto x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(\color{blue}{0.6666666666666666} - z\right) \]
  3. Simplified99.5%

    \[\leadsto \color{blue}{x + \left(\left(y - x\right) \cdot 6\right) \cdot \left(0.6666666666666666 - z\right)} \]
  4. Add Preprocessing
  5. Taylor expanded in y around inf 50.8%

    \[\leadsto x + \color{blue}{6 \cdot \left(y \cdot \left(0.6666666666666666 - z\right)\right)} \]
  6. Taylor expanded in x around inf 2.7%

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

Reproduce

?
herbie shell --seed 2024180 
(FPCore (x y z)
  :name "Data.Colour.RGBSpace.HSL:hsl from colour-2.3.3, D"
  :precision binary64
  (+ x (* (* (- y x) 6.0) (- (/ 2.0 3.0) z))))