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

Percentage Accurate: 99.7% → 99.7%
Time: 9.4s
Alternatives: 14
Speedup: 1.1×

Specification

?
\[\begin{array}{l} \\ x + \left(\left(y - x\right) \cdot 6\right) \cdot z \end{array} \]
(FPCore (x y z) :precision binary64 (+ x (* (* (- y x) 6.0) z)))
double code(double x, double y, double z) {
	return x + (((y - x) * 6.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) * z)
end function
public static double code(double x, double y, double z) {
	return x + (((y - x) * 6.0) * z);
}
def code(x, y, z):
	return x + (((y - x) * 6.0) * z)
function code(x, y, z)
	return Float64(x + Float64(Float64(Float64(y - x) * 6.0) * z))
end
function tmp = code(x, y, z)
	tmp = x + (((y - x) * 6.0) * z);
end
code[x_, y_, z_] := N[(x + N[(N[(N[(y - x), $MachinePrecision] * 6.0), $MachinePrecision] * z), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
x + \left(\left(y - x\right) \cdot 6\right) \cdot z
\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 14 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.7% accurate, 1.0× speedup?

\[\begin{array}{l} \\ x + \left(\left(y - x\right) \cdot 6\right) \cdot z \end{array} \]
(FPCore (x y z) :precision binary64 (+ x (* (* (- y x) 6.0) z)))
double code(double x, double y, double z) {
	return x + (((y - x) * 6.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) * z)
end function
public static double code(double x, double y, double z) {
	return x + (((y - x) * 6.0) * z);
}
def code(x, y, z):
	return x + (((y - x) * 6.0) * z)
function code(x, y, z)
	return Float64(x + Float64(Float64(Float64(y - x) * 6.0) * z))
end
function tmp = code(x, y, z)
	tmp = x + (((y - x) * 6.0) * z);
end
code[x_, y_, z_] := N[(x + N[(N[(N[(y - x), $MachinePrecision] * 6.0), $MachinePrecision] * z), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

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

Alternative 1: 99.7% accurate, 1.0× speedup?

\[\begin{array}{l} \\ x + \left(\left(y - x\right) \cdot 6\right) \cdot z \end{array} \]
(FPCore (x y z) :precision binary64 (+ x (* (* (- y x) 6.0) z)))
double code(double x, double y, double z) {
	return x + (((y - x) * 6.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) * z)
end function
public static double code(double x, double y, double z) {
	return x + (((y - x) * 6.0) * z);
}
def code(x, y, z):
	return x + (((y - x) * 6.0) * z)
function code(x, y, z)
	return Float64(x + Float64(Float64(Float64(y - x) * 6.0) * z))
end
function tmp = code(x, y, z)
	tmp = x + (((y - x) * 6.0) * z);
end
code[x_, y_, z_] := N[(x + N[(N[(N[(y - x), $MachinePrecision] * 6.0), $MachinePrecision] * z), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

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

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

Alternative 2: 98.7% accurate, 0.7× speedup?

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

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

\mathbf{elif}\;z \leq 0.165:\\
\;\;\;\;x + z \cdot \left(y \cdot 6\right)\\

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


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

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \color{blue}{6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot \left(y - x\right)} \]
      2. distribute-lft-out--N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot y - \left(6 \cdot z\right) \cdot x} \]
      3. associate-*r*N/A

        \[\leadsto \color{blue}{6 \cdot \left(z \cdot y\right)} - \left(6 \cdot z\right) \cdot x \]
      4. *-commutativeN/A

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} - \left(6 \cdot z\right) \cdot x \]
      5. metadata-evalN/A

        \[\leadsto \color{blue}{\left(-1 \cdot -6\right)} \cdot \left(y \cdot z\right) - \left(6 \cdot z\right) \cdot x \]
      6. associate-*r*N/A

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

        \[\leadsto -1 \cdot \left(-6 \cdot \color{blue}{\left(z \cdot y\right)}\right) - \left(6 \cdot z\right) \cdot x \]
      8. associate-*r*N/A

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

        \[\leadsto -1 \cdot \color{blue}{\left(y \cdot \left(-6 \cdot z\right)\right)} - \left(6 \cdot z\right) \cdot x \]
      10. associate-*r*N/A

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

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{x \cdot \left(6 \cdot z\right)} \]
      12. metadata-evalN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \left(\color{blue}{\left(\mathsf{neg}\left(-6\right)\right)} \cdot z\right) \]
      13. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \color{blue}{\left(\mathsf{neg}\left(-6 \cdot z\right)\right)} \]
      14. distribute-rgt-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x \cdot \left(-6 \cdot z\right)\right)\right)} \]
      15. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x\right)\right) \cdot \left(-6 \cdot z\right)} \]
      16. mul-1-negN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(-1 \cdot x\right)} \cdot \left(-6 \cdot z\right) \]
      17. distribute-rgt-out--N/A

        \[\leadsto \color{blue}{\left(-6 \cdot z\right) \cdot \left(-1 \cdot y - -1 \cdot x\right)} \]
      18. distribute-lft-out--N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(-1 \cdot \left(y - x\right)\right)} \]
      19. neg-mul-1N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\left(y - x\right)\right)\right)} \]
      20. neg-sub0N/A

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\left(0 - y\right) + x\right)} \]
      22. neg-sub0N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} + x\right) \]
      23. mul-1-negN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{-1 \cdot y} + x\right) \]
      24. *-lft-identityN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{1 \cdot \left(-1 \cdot y\right)} + x\right) \]
      25. *-inversesN/A

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

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

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

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(x \cdot \left(-1 \cdot \frac{y}{x}\right) + \color{blue}{x \cdot 1}\right) \]
    5. Applied rewrites98.5%

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

    if -0.149999999999999994 < z < 0.165000000000000008

    1. Initial program 99.9%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in y around inf

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

        \[\leadsto x + \color{blue}{\left(6 \cdot y\right)} \cdot z \]
    5. Applied rewrites99.1%

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

    if 0.165000000000000008 < z

    1. Initial program 99.9%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \color{blue}{6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot \left(y - x\right)} \]
      2. distribute-lft-out--N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot y - \left(6 \cdot z\right) \cdot x} \]
      3. associate-*r*N/A

        \[\leadsto \color{blue}{6 \cdot \left(z \cdot y\right)} - \left(6 \cdot z\right) \cdot x \]
      4. *-commutativeN/A

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} - \left(6 \cdot z\right) \cdot x \]
      5. metadata-evalN/A

        \[\leadsto \color{blue}{\left(-1 \cdot -6\right)} \cdot \left(y \cdot z\right) - \left(6 \cdot z\right) \cdot x \]
      6. associate-*r*N/A

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

        \[\leadsto -1 \cdot \left(-6 \cdot \color{blue}{\left(z \cdot y\right)}\right) - \left(6 \cdot z\right) \cdot x \]
      8. associate-*r*N/A

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

        \[\leadsto -1 \cdot \color{blue}{\left(y \cdot \left(-6 \cdot z\right)\right)} - \left(6 \cdot z\right) \cdot x \]
      10. associate-*r*N/A

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

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{x \cdot \left(6 \cdot z\right)} \]
      12. metadata-evalN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \left(\color{blue}{\left(\mathsf{neg}\left(-6\right)\right)} \cdot z\right) \]
      13. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \color{blue}{\left(\mathsf{neg}\left(-6 \cdot z\right)\right)} \]
      14. distribute-rgt-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x \cdot \left(-6 \cdot z\right)\right)\right)} \]
      15. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x\right)\right) \cdot \left(-6 \cdot z\right)} \]
      16. mul-1-negN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(-1 \cdot x\right)} \cdot \left(-6 \cdot z\right) \]
      17. distribute-rgt-out--N/A

        \[\leadsto \color{blue}{\left(-6 \cdot z\right) \cdot \left(-1 \cdot y - -1 \cdot x\right)} \]
      18. distribute-lft-out--N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(-1 \cdot \left(y - x\right)\right)} \]
      19. neg-mul-1N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\left(y - x\right)\right)\right)} \]
      20. neg-sub0N/A

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\left(0 - y\right) + x\right)} \]
      22. neg-sub0N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} + x\right) \]
      23. mul-1-negN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{-1 \cdot y} + x\right) \]
      24. *-lft-identityN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{1 \cdot \left(-1 \cdot y\right)} + x\right) \]
      25. *-inversesN/A

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

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

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

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(x \cdot \left(-1 \cdot \frac{y}{x}\right) + \color{blue}{x \cdot 1}\right) \]
    5. Applied rewrites99.7%

      \[\leadsto \color{blue}{\left(z \cdot -6\right) \cdot \left(x - y\right)} \]
    6. Step-by-step derivation
      1. lift--.f64N/A

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

        \[\leadsto \color{blue}{z \cdot \left(-6 \cdot \left(x - y\right)\right)} \]
      3. *-commutativeN/A

        \[\leadsto \color{blue}{\left(-6 \cdot \left(x - y\right)\right) \cdot z} \]
      4. lift--.f64N/A

        \[\leadsto \left(-6 \cdot \color{blue}{\left(x - y\right)}\right) \cdot z \]
      5. sub-negN/A

        \[\leadsto \left(-6 \cdot \color{blue}{\left(x + \left(\mathsf{neg}\left(y\right)\right)\right)}\right) \cdot z \]
      6. +-commutativeN/A

        \[\leadsto \left(-6 \cdot \color{blue}{\left(\left(\mathsf{neg}\left(y\right)\right) + x\right)}\right) \cdot z \]
      7. distribute-lft-inN/A

        \[\leadsto \color{blue}{\left(-6 \cdot \left(\mathsf{neg}\left(y\right)\right) + -6 \cdot x\right)} \cdot z \]
      8. neg-mul-1N/A

        \[\leadsto \left(-6 \cdot \color{blue}{\left(-1 \cdot y\right)} + -6 \cdot x\right) \cdot z \]
      9. associate-*r*N/A

        \[\leadsto \left(\color{blue}{\left(-6 \cdot -1\right) \cdot y} + -6 \cdot x\right) \cdot z \]
      10. metadata-evalN/A

        \[\leadsto \left(\color{blue}{6} \cdot y + -6 \cdot x\right) \cdot z \]
      11. metadata-evalN/A

        \[\leadsto \left(6 \cdot y + \color{blue}{\left(6 \cdot -1\right)} \cdot x\right) \cdot z \]
      12. associate-*r*N/A

        \[\leadsto \left(6 \cdot y + \color{blue}{6 \cdot \left(-1 \cdot x\right)}\right) \cdot z \]
      13. neg-mul-1N/A

        \[\leadsto \left(6 \cdot y + 6 \cdot \color{blue}{\left(\mathsf{neg}\left(x\right)\right)}\right) \cdot z \]
      14. distribute-lft-inN/A

        \[\leadsto \color{blue}{\left(6 \cdot \left(y + \left(\mathsf{neg}\left(x\right)\right)\right)\right)} \cdot z \]
      15. sub-negN/A

        \[\leadsto \left(6 \cdot \color{blue}{\left(y - x\right)}\right) \cdot z \]
      16. lift--.f64N/A

        \[\leadsto \left(6 \cdot \color{blue}{\left(y - x\right)}\right) \cdot z \]
      17. *-commutativeN/A

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

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right)} \cdot z \]
      19. lower-*.f6499.9

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

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

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

Alternative 3: 98.8% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z \leq -0.17:\\ \;\;\;\;\left(z \cdot -6\right) \cdot \left(x - y\right)\\ \mathbf{elif}\;z \leq 0.165:\\ \;\;\;\;\mathsf{fma}\left(6 \cdot z, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\left(y - x\right) \cdot 6\right) \cdot z\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (<= z -0.17)
   (* (* z -6.0) (- x y))
   (if (<= z 0.165) (fma (* 6.0 z) y x) (* (* (- y x) 6.0) z))))
double code(double x, double y, double z) {
	double tmp;
	if (z <= -0.17) {
		tmp = (z * -6.0) * (x - y);
	} else if (z <= 0.165) {
		tmp = fma((6.0 * z), y, x);
	} else {
		tmp = ((y - x) * 6.0) * z;
	}
	return tmp;
}
function code(x, y, z)
	tmp = 0.0
	if (z <= -0.17)
		tmp = Float64(Float64(z * -6.0) * Float64(x - y));
	elseif (z <= 0.165)
		tmp = fma(Float64(6.0 * z), y, x);
	else
		tmp = Float64(Float64(Float64(y - x) * 6.0) * z);
	end
	return tmp
end
code[x_, y_, z_] := If[LessEqual[z, -0.17], N[(N[(z * -6.0), $MachinePrecision] * N[(x - y), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 0.165], N[(N[(6.0 * z), $MachinePrecision] * y + x), $MachinePrecision], N[(N[(N[(y - x), $MachinePrecision] * 6.0), $MachinePrecision] * z), $MachinePrecision]]]
\begin{array}{l}

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

\mathbf{elif}\;z \leq 0.165:\\
\;\;\;\;\mathsf{fma}\left(6 \cdot z, y, x\right)\\

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


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

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \color{blue}{6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot \left(y - x\right)} \]
      2. distribute-lft-out--N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot y - \left(6 \cdot z\right) \cdot x} \]
      3. associate-*r*N/A

        \[\leadsto \color{blue}{6 \cdot \left(z \cdot y\right)} - \left(6 \cdot z\right) \cdot x \]
      4. *-commutativeN/A

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} - \left(6 \cdot z\right) \cdot x \]
      5. metadata-evalN/A

        \[\leadsto \color{blue}{\left(-1 \cdot -6\right)} \cdot \left(y \cdot z\right) - \left(6 \cdot z\right) \cdot x \]
      6. associate-*r*N/A

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

        \[\leadsto -1 \cdot \left(-6 \cdot \color{blue}{\left(z \cdot y\right)}\right) - \left(6 \cdot z\right) \cdot x \]
      8. associate-*r*N/A

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

        \[\leadsto -1 \cdot \color{blue}{\left(y \cdot \left(-6 \cdot z\right)\right)} - \left(6 \cdot z\right) \cdot x \]
      10. associate-*r*N/A

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

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{x \cdot \left(6 \cdot z\right)} \]
      12. metadata-evalN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \left(\color{blue}{\left(\mathsf{neg}\left(-6\right)\right)} \cdot z\right) \]
      13. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \color{blue}{\left(\mathsf{neg}\left(-6 \cdot z\right)\right)} \]
      14. distribute-rgt-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x \cdot \left(-6 \cdot z\right)\right)\right)} \]
      15. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x\right)\right) \cdot \left(-6 \cdot z\right)} \]
      16. mul-1-negN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(-1 \cdot x\right)} \cdot \left(-6 \cdot z\right) \]
      17. distribute-rgt-out--N/A

        \[\leadsto \color{blue}{\left(-6 \cdot z\right) \cdot \left(-1 \cdot y - -1 \cdot x\right)} \]
      18. distribute-lft-out--N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(-1 \cdot \left(y - x\right)\right)} \]
      19. neg-mul-1N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\left(y - x\right)\right)\right)} \]
      20. neg-sub0N/A

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\left(0 - y\right) + x\right)} \]
      22. neg-sub0N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} + x\right) \]
      23. mul-1-negN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{-1 \cdot y} + x\right) \]
      24. *-lft-identityN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{1 \cdot \left(-1 \cdot y\right)} + x\right) \]
      25. *-inversesN/A

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

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

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

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(x \cdot \left(-1 \cdot \frac{y}{x}\right) + \color{blue}{x \cdot 1}\right) \]
    5. Applied rewrites98.5%

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

    if -0.170000000000000012 < z < 0.165000000000000008

    1. Initial program 99.9%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in y around inf

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

        \[\leadsto x + \color{blue}{\left(6 \cdot y\right)} \cdot z \]
    5. Applied rewrites99.1%

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

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

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

        \[\leadsto \color{blue}{\left(6 \cdot y\right) \cdot z + x} \]
      4. lift-*.f64N/A

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

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(z \cdot 6, y, x\right)} \]
      9. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{6 \cdot z}, y, x\right) \]
      10. lower-*.f6499.0

        \[\leadsto \mathsf{fma}\left(\color{blue}{6 \cdot z}, y, x\right) \]
    7. Applied rewrites99.0%

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

    if 0.165000000000000008 < z

    1. Initial program 99.9%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \color{blue}{6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot \left(y - x\right)} \]
      2. distribute-lft-out--N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot y - \left(6 \cdot z\right) \cdot x} \]
      3. associate-*r*N/A

        \[\leadsto \color{blue}{6 \cdot \left(z \cdot y\right)} - \left(6 \cdot z\right) \cdot x \]
      4. *-commutativeN/A

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} - \left(6 \cdot z\right) \cdot x \]
      5. metadata-evalN/A

        \[\leadsto \color{blue}{\left(-1 \cdot -6\right)} \cdot \left(y \cdot z\right) - \left(6 \cdot z\right) \cdot x \]
      6. associate-*r*N/A

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

        \[\leadsto -1 \cdot \left(-6 \cdot \color{blue}{\left(z \cdot y\right)}\right) - \left(6 \cdot z\right) \cdot x \]
      8. associate-*r*N/A

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

        \[\leadsto -1 \cdot \color{blue}{\left(y \cdot \left(-6 \cdot z\right)\right)} - \left(6 \cdot z\right) \cdot x \]
      10. associate-*r*N/A

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

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{x \cdot \left(6 \cdot z\right)} \]
      12. metadata-evalN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \left(\color{blue}{\left(\mathsf{neg}\left(-6\right)\right)} \cdot z\right) \]
      13. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \color{blue}{\left(\mathsf{neg}\left(-6 \cdot z\right)\right)} \]
      14. distribute-rgt-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x \cdot \left(-6 \cdot z\right)\right)\right)} \]
      15. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x\right)\right) \cdot \left(-6 \cdot z\right)} \]
      16. mul-1-negN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(-1 \cdot x\right)} \cdot \left(-6 \cdot z\right) \]
      17. distribute-rgt-out--N/A

        \[\leadsto \color{blue}{\left(-6 \cdot z\right) \cdot \left(-1 \cdot y - -1 \cdot x\right)} \]
      18. distribute-lft-out--N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(-1 \cdot \left(y - x\right)\right)} \]
      19. neg-mul-1N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\left(y - x\right)\right)\right)} \]
      20. neg-sub0N/A

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\left(0 - y\right) + x\right)} \]
      22. neg-sub0N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} + x\right) \]
      23. mul-1-negN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{-1 \cdot y} + x\right) \]
      24. *-lft-identityN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{1 \cdot \left(-1 \cdot y\right)} + x\right) \]
      25. *-inversesN/A

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

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

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

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(x \cdot \left(-1 \cdot \frac{y}{x}\right) + \color{blue}{x \cdot 1}\right) \]
    5. Applied rewrites99.7%

      \[\leadsto \color{blue}{\left(z \cdot -6\right) \cdot \left(x - y\right)} \]
    6. Step-by-step derivation
      1. lift--.f64N/A

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

        \[\leadsto \color{blue}{z \cdot \left(-6 \cdot \left(x - y\right)\right)} \]
      3. *-commutativeN/A

        \[\leadsto \color{blue}{\left(-6 \cdot \left(x - y\right)\right) \cdot z} \]
      4. lift--.f64N/A

        \[\leadsto \left(-6 \cdot \color{blue}{\left(x - y\right)}\right) \cdot z \]
      5. sub-negN/A

        \[\leadsto \left(-6 \cdot \color{blue}{\left(x + \left(\mathsf{neg}\left(y\right)\right)\right)}\right) \cdot z \]
      6. +-commutativeN/A

        \[\leadsto \left(-6 \cdot \color{blue}{\left(\left(\mathsf{neg}\left(y\right)\right) + x\right)}\right) \cdot z \]
      7. distribute-lft-inN/A

        \[\leadsto \color{blue}{\left(-6 \cdot \left(\mathsf{neg}\left(y\right)\right) + -6 \cdot x\right)} \cdot z \]
      8. neg-mul-1N/A

        \[\leadsto \left(-6 \cdot \color{blue}{\left(-1 \cdot y\right)} + -6 \cdot x\right) \cdot z \]
      9. associate-*r*N/A

        \[\leadsto \left(\color{blue}{\left(-6 \cdot -1\right) \cdot y} + -6 \cdot x\right) \cdot z \]
      10. metadata-evalN/A

        \[\leadsto \left(\color{blue}{6} \cdot y + -6 \cdot x\right) \cdot z \]
      11. metadata-evalN/A

        \[\leadsto \left(6 \cdot y + \color{blue}{\left(6 \cdot -1\right)} \cdot x\right) \cdot z \]
      12. associate-*r*N/A

        \[\leadsto \left(6 \cdot y + \color{blue}{6 \cdot \left(-1 \cdot x\right)}\right) \cdot z \]
      13. neg-mul-1N/A

        \[\leadsto \left(6 \cdot y + 6 \cdot \color{blue}{\left(\mathsf{neg}\left(x\right)\right)}\right) \cdot z \]
      14. distribute-lft-inN/A

        \[\leadsto \color{blue}{\left(6 \cdot \left(y + \left(\mathsf{neg}\left(x\right)\right)\right)\right)} \cdot z \]
      15. sub-negN/A

        \[\leadsto \left(6 \cdot \color{blue}{\left(y - x\right)}\right) \cdot z \]
      16. lift--.f64N/A

        \[\leadsto \left(6 \cdot \color{blue}{\left(y - x\right)}\right) \cdot z \]
      17. *-commutativeN/A

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

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right)} \cdot z \]
      19. lower-*.f6499.9

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

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

Alternative 4: 98.8% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(z \cdot -6\right) \cdot \left(x - y\right)\\ \mathbf{if}\;z \leq -0.17:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;z \leq 0.165:\\ \;\;\;\;\mathsf{fma}\left(6 \cdot z, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (let* ((t_0 (* (* z -6.0) (- x y))))
   (if (<= z -0.17) t_0 (if (<= z 0.165) (fma (* 6.0 z) y x) t_0))))
double code(double x, double y, double z) {
	double t_0 = (z * -6.0) * (x - y);
	double tmp;
	if (z <= -0.17) {
		tmp = t_0;
	} else if (z <= 0.165) {
		tmp = fma((6.0 * z), y, x);
	} else {
		tmp = t_0;
	}
	return tmp;
}
function code(x, y, z)
	t_0 = Float64(Float64(z * -6.0) * Float64(x - y))
	tmp = 0.0
	if (z <= -0.17)
		tmp = t_0;
	elseif (z <= 0.165)
		tmp = fma(Float64(6.0 * z), y, x);
	else
		tmp = t_0;
	end
	return tmp
end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(z * -6.0), $MachinePrecision] * N[(x - y), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[z, -0.17], t$95$0, If[LessEqual[z, 0.165], N[(N[(6.0 * z), $MachinePrecision] * y + x), $MachinePrecision], t$95$0]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \left(z \cdot -6\right) \cdot \left(x - y\right)\\
\mathbf{if}\;z \leq -0.17:\\
\;\;\;\;t\_0\\

\mathbf{elif}\;z \leq 0.165:\\
\;\;\;\;\mathsf{fma}\left(6 \cdot z, y, x\right)\\

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


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

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \color{blue}{6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot \left(y - x\right)} \]
      2. distribute-lft-out--N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot y - \left(6 \cdot z\right) \cdot x} \]
      3. associate-*r*N/A

        \[\leadsto \color{blue}{6 \cdot \left(z \cdot y\right)} - \left(6 \cdot z\right) \cdot x \]
      4. *-commutativeN/A

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} - \left(6 \cdot z\right) \cdot x \]
      5. metadata-evalN/A

        \[\leadsto \color{blue}{\left(-1 \cdot -6\right)} \cdot \left(y \cdot z\right) - \left(6 \cdot z\right) \cdot x \]
      6. associate-*r*N/A

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

        \[\leadsto -1 \cdot \left(-6 \cdot \color{blue}{\left(z \cdot y\right)}\right) - \left(6 \cdot z\right) \cdot x \]
      8. associate-*r*N/A

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

        \[\leadsto -1 \cdot \color{blue}{\left(y \cdot \left(-6 \cdot z\right)\right)} - \left(6 \cdot z\right) \cdot x \]
      10. associate-*r*N/A

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

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{x \cdot \left(6 \cdot z\right)} \]
      12. metadata-evalN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \left(\color{blue}{\left(\mathsf{neg}\left(-6\right)\right)} \cdot z\right) \]
      13. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \color{blue}{\left(\mathsf{neg}\left(-6 \cdot z\right)\right)} \]
      14. distribute-rgt-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x \cdot \left(-6 \cdot z\right)\right)\right)} \]
      15. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x\right)\right) \cdot \left(-6 \cdot z\right)} \]
      16. mul-1-negN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(-1 \cdot x\right)} \cdot \left(-6 \cdot z\right) \]
      17. distribute-rgt-out--N/A

        \[\leadsto \color{blue}{\left(-6 \cdot z\right) \cdot \left(-1 \cdot y - -1 \cdot x\right)} \]
      18. distribute-lft-out--N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(-1 \cdot \left(y - x\right)\right)} \]
      19. neg-mul-1N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\left(y - x\right)\right)\right)} \]
      20. neg-sub0N/A

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\left(0 - y\right) + x\right)} \]
      22. neg-sub0N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} + x\right) \]
      23. mul-1-negN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{-1 \cdot y} + x\right) \]
      24. *-lft-identityN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{1 \cdot \left(-1 \cdot y\right)} + x\right) \]
      25. *-inversesN/A

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

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

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

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(x \cdot \left(-1 \cdot \frac{y}{x}\right) + \color{blue}{x \cdot 1}\right) \]
    5. Applied rewrites99.2%

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

    if -0.170000000000000012 < z < 0.165000000000000008

    1. Initial program 99.9%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in y around inf

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

        \[\leadsto x + \color{blue}{\left(6 \cdot y\right)} \cdot z \]
    5. Applied rewrites99.1%

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

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

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

        \[\leadsto \color{blue}{\left(6 \cdot y\right) \cdot z + x} \]
      4. lift-*.f64N/A

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

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(z \cdot 6, y, x\right)} \]
      9. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{6 \cdot z}, y, x\right) \]
      10. lower-*.f6499.0

        \[\leadsto \mathsf{fma}\left(\color{blue}{6 \cdot z}, y, x\right) \]
    7. Applied rewrites99.0%

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

Alternative 5: 85.8% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \mathsf{fma}\left(x, z \cdot -6, x\right)\\ \mathbf{if}\;x \leq -1.4 \cdot 10^{+128}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;x \leq 3.2 \cdot 10^{+36}:\\ \;\;\;\;\mathsf{fma}\left(6 \cdot z, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (let* ((t_0 (fma x (* z -6.0) x)))
   (if (<= x -1.4e+128) t_0 (if (<= x 3.2e+36) (fma (* 6.0 z) y x) t_0))))
double code(double x, double y, double z) {
	double t_0 = fma(x, (z * -6.0), x);
	double tmp;
	if (x <= -1.4e+128) {
		tmp = t_0;
	} else if (x <= 3.2e+36) {
		tmp = fma((6.0 * z), y, x);
	} else {
		tmp = t_0;
	}
	return tmp;
}
function code(x, y, z)
	t_0 = fma(x, Float64(z * -6.0), x)
	tmp = 0.0
	if (x <= -1.4e+128)
		tmp = t_0;
	elseif (x <= 3.2e+36)
		tmp = fma(Float64(6.0 * z), y, x);
	else
		tmp = t_0;
	end
	return tmp
end
code[x_, y_, z_] := Block[{t$95$0 = N[(x * N[(z * -6.0), $MachinePrecision] + x), $MachinePrecision]}, If[LessEqual[x, -1.4e+128], t$95$0, If[LessEqual[x, 3.2e+36], N[(N[(6.0 * z), $MachinePrecision] * y + x), $MachinePrecision], t$95$0]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \mathsf{fma}\left(x, z \cdot -6, x\right)\\
\mathbf{if}\;x \leq -1.4 \cdot 10^{+128}:\\
\;\;\;\;t\_0\\

\mathbf{elif}\;x \leq 3.2 \cdot 10^{+36}:\\
\;\;\;\;\mathsf{fma}\left(6 \cdot z, y, x\right)\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < -1.39999999999999991e128 or 3.1999999999999999e36 < x

    1. Initial program 99.9%

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

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

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

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

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot z + x} \]
      5. lift-*.f64N/A

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot z} + x \]
      6. lower-fma.f6499.9

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

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

      \[\leadsto \color{blue}{x + -6 \cdot \left(x \cdot z\right)} \]
    6. Step-by-step derivation
      1. +-commutativeN/A

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

        \[\leadsto \color{blue}{\left(-6 \cdot x\right) \cdot z} + x \]
      3. *-commutativeN/A

        \[\leadsto \color{blue}{\left(x \cdot -6\right)} \cdot z + x \]
      4. associate-*r*N/A

        \[\leadsto \color{blue}{x \cdot \left(-6 \cdot z\right)} + x \]
      5. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left(x, -6 \cdot z, x\right)} \]
      6. lower-*.f6488.6

        \[\leadsto \mathsf{fma}\left(x, \color{blue}{-6 \cdot z}, x\right) \]
    7. Applied rewrites88.6%

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

    if -1.39999999999999991e128 < x < 3.1999999999999999e36

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in y around inf

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

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

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

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

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

        \[\leadsto \color{blue}{\left(6 \cdot y\right) \cdot z + x} \]
      4. lift-*.f64N/A

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

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(z \cdot 6, y, x\right)} \]
      9. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{6 \cdot z}, y, x\right) \]
      10. lower-*.f6485.6

        \[\leadsto \mathsf{fma}\left(\color{blue}{6 \cdot z}, y, x\right) \]
    7. Applied rewrites85.6%

      \[\leadsto \color{blue}{\mathsf{fma}\left(6 \cdot z, y, x\right)} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification86.8%

    \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -1.4 \cdot 10^{+128}:\\ \;\;\;\;\mathsf{fma}\left(x, z \cdot -6, x\right)\\ \mathbf{elif}\;x \leq 3.2 \cdot 10^{+36}:\\ \;\;\;\;\mathsf{fma}\left(6 \cdot z, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(x, z \cdot -6, x\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 6: 73.9% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -4 \cdot 10^{-145}:\\ \;\;\;\;\mathsf{fma}\left(z, x \cdot -6, x\right)\\ \mathbf{elif}\;x \leq 1.02 \cdot 10^{-41}:\\ \;\;\;\;z \cdot \left(y \cdot 6\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(x, z \cdot -6, x\right)\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (<= x -4e-145)
   (fma z (* x -6.0) x)
   (if (<= x 1.02e-41) (* z (* y 6.0)) (fma x (* z -6.0) x))))
double code(double x, double y, double z) {
	double tmp;
	if (x <= -4e-145) {
		tmp = fma(z, (x * -6.0), x);
	} else if (x <= 1.02e-41) {
		tmp = z * (y * 6.0);
	} else {
		tmp = fma(x, (z * -6.0), x);
	}
	return tmp;
}
function code(x, y, z)
	tmp = 0.0
	if (x <= -4e-145)
		tmp = fma(z, Float64(x * -6.0), x);
	elseif (x <= 1.02e-41)
		tmp = Float64(z * Float64(y * 6.0));
	else
		tmp = fma(x, Float64(z * -6.0), x);
	end
	return tmp
end
code[x_, y_, z_] := If[LessEqual[x, -4e-145], N[(z * N[(x * -6.0), $MachinePrecision] + x), $MachinePrecision], If[LessEqual[x, 1.02e-41], N[(z * N[(y * 6.0), $MachinePrecision]), $MachinePrecision], N[(x * N[(z * -6.0), $MachinePrecision] + x), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq -4 \cdot 10^{-145}:\\
\;\;\;\;\mathsf{fma}\left(z, x \cdot -6, x\right)\\

\mathbf{elif}\;x \leq 1.02 \cdot 10^{-41}:\\
\;\;\;\;z \cdot \left(y \cdot 6\right)\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if x < -3.99999999999999966e-145

    1. Initial program 99.9%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in x around inf

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

        \[\leadsto x \cdot \color{blue}{\left(-6 \cdot z + 1\right)} \]
      2. distribute-rgt-inN/A

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

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

        \[\leadsto \color{blue}{z \cdot \left(-6 \cdot x\right)} + 1 \cdot x \]
      5. *-lft-identityN/A

        \[\leadsto z \cdot \left(-6 \cdot x\right) + \color{blue}{x} \]
      6. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left(z, -6 \cdot x, x\right)} \]
      7. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(z, \color{blue}{x \cdot -6}, x\right) \]
      8. lower-*.f6477.6

        \[\leadsto \mathsf{fma}\left(z, \color{blue}{x \cdot -6}, x\right) \]
    5. Applied rewrites77.6%

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

    if -3.99999999999999966e-145 < x < 1.02e-41

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in x around 0

      \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
    4. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
      2. lower-*.f6479.2

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} \]
    5. Applied rewrites79.2%

      \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
    6. Step-by-step derivation
      1. associate-*r*N/A

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

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

        \[\leadsto \color{blue}{\left(6 \cdot y\right) \cdot z} \]
      4. lift-*.f64N/A

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

        \[\leadsto \color{blue}{\left(y \cdot 6\right)} \cdot z \]
      6. lower-*.f6479.4

        \[\leadsto \color{blue}{\left(y \cdot 6\right)} \cdot z \]
    7. Applied rewrites79.4%

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

    if 1.02e-41 < x

    1. Initial program 99.9%

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

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

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

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

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot z + x} \]
      5. lift-*.f64N/A

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot z} + x \]
      6. lower-fma.f6499.9

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

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

      \[\leadsto \color{blue}{x + -6 \cdot \left(x \cdot z\right)} \]
    6. Step-by-step derivation
      1. +-commutativeN/A

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

        \[\leadsto \color{blue}{\left(-6 \cdot x\right) \cdot z} + x \]
      3. *-commutativeN/A

        \[\leadsto \color{blue}{\left(x \cdot -6\right)} \cdot z + x \]
      4. associate-*r*N/A

        \[\leadsto \color{blue}{x \cdot \left(-6 \cdot z\right)} + x \]
      5. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left(x, -6 \cdot z, x\right)} \]
      6. lower-*.f6479.6

        \[\leadsto \mathsf{fma}\left(x, \color{blue}{-6 \cdot z}, x\right) \]
    7. Applied rewrites79.6%

      \[\leadsto \color{blue}{\mathsf{fma}\left(x, -6 \cdot z, x\right)} \]
  3. Recombined 3 regimes into one program.
  4. Final simplification78.8%

    \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -4 \cdot 10^{-145}:\\ \;\;\;\;\mathsf{fma}\left(z, x \cdot -6, x\right)\\ \mathbf{elif}\;x \leq 1.02 \cdot 10^{-41}:\\ \;\;\;\;z \cdot \left(y \cdot 6\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(x, z \cdot -6, x\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 7: 73.9% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \mathsf{fma}\left(x, z \cdot -6, x\right)\\ \mathbf{if}\;x \leq -4 \cdot 10^{-145}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;x \leq 1.02 \cdot 10^{-41}:\\ \;\;\;\;z \cdot \left(y \cdot 6\right)\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (let* ((t_0 (fma x (* z -6.0) x)))
   (if (<= x -4e-145) t_0 (if (<= x 1.02e-41) (* z (* y 6.0)) t_0))))
double code(double x, double y, double z) {
	double t_0 = fma(x, (z * -6.0), x);
	double tmp;
	if (x <= -4e-145) {
		tmp = t_0;
	} else if (x <= 1.02e-41) {
		tmp = z * (y * 6.0);
	} else {
		tmp = t_0;
	}
	return tmp;
}
function code(x, y, z)
	t_0 = fma(x, Float64(z * -6.0), x)
	tmp = 0.0
	if (x <= -4e-145)
		tmp = t_0;
	elseif (x <= 1.02e-41)
		tmp = Float64(z * Float64(y * 6.0));
	else
		tmp = t_0;
	end
	return tmp
end
code[x_, y_, z_] := Block[{t$95$0 = N[(x * N[(z * -6.0), $MachinePrecision] + x), $MachinePrecision]}, If[LessEqual[x, -4e-145], t$95$0, If[LessEqual[x, 1.02e-41], N[(z * N[(y * 6.0), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \mathsf{fma}\left(x, z \cdot -6, x\right)\\
\mathbf{if}\;x \leq -4 \cdot 10^{-145}:\\
\;\;\;\;t\_0\\

\mathbf{elif}\;x \leq 1.02 \cdot 10^{-41}:\\
\;\;\;\;z \cdot \left(y \cdot 6\right)\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < -3.99999999999999966e-145 or 1.02e-41 < x

    1. Initial program 99.9%

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

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

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

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

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot z + x} \]
      5. lift-*.f64N/A

        \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot z} + x \]
      6. lower-fma.f6499.9

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

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

      \[\leadsto \color{blue}{x + -6 \cdot \left(x \cdot z\right)} \]
    6. Step-by-step derivation
      1. +-commutativeN/A

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

        \[\leadsto \color{blue}{\left(-6 \cdot x\right) \cdot z} + x \]
      3. *-commutativeN/A

        \[\leadsto \color{blue}{\left(x \cdot -6\right)} \cdot z + x \]
      4. associate-*r*N/A

        \[\leadsto \color{blue}{x \cdot \left(-6 \cdot z\right)} + x \]
      5. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left(x, -6 \cdot z, x\right)} \]
      6. lower-*.f6478.5

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

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

    if -3.99999999999999966e-145 < x < 1.02e-41

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in x around 0

      \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
    4. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
      2. lower-*.f6479.2

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} \]
    5. Applied rewrites79.2%

      \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
    6. Step-by-step derivation
      1. associate-*r*N/A

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

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

        \[\leadsto \color{blue}{\left(6 \cdot y\right) \cdot z} \]
      4. lift-*.f64N/A

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

        \[\leadsto \color{blue}{\left(y \cdot 6\right)} \cdot z \]
      6. lower-*.f6479.4

        \[\leadsto \color{blue}{\left(y \cdot 6\right)} \cdot z \]
    7. Applied rewrites79.4%

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -4 \cdot 10^{-145}:\\ \;\;\;\;\mathsf{fma}\left(x, z \cdot -6, x\right)\\ \mathbf{elif}\;x \leq 1.02 \cdot 10^{-41}:\\ \;\;\;\;z \cdot \left(y \cdot 6\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(x, z \cdot -6, x\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 8: 52.2% accurate, 0.7× speedup?

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

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

\mathbf{elif}\;x \leq 6.5 \cdot 10^{+61}:\\
\;\;\;\;z \cdot \left(y \cdot 6\right)\\

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


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

    1. Initial program 100.0%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \color{blue}{6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot \left(y - x\right)} \]
      2. distribute-lft-out--N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot y - \left(6 \cdot z\right) \cdot x} \]
      3. associate-*r*N/A

        \[\leadsto \color{blue}{6 \cdot \left(z \cdot y\right)} - \left(6 \cdot z\right) \cdot x \]
      4. *-commutativeN/A

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} - \left(6 \cdot z\right) \cdot x \]
      5. metadata-evalN/A

        \[\leadsto \color{blue}{\left(-1 \cdot -6\right)} \cdot \left(y \cdot z\right) - \left(6 \cdot z\right) \cdot x \]
      6. associate-*r*N/A

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

        \[\leadsto -1 \cdot \left(-6 \cdot \color{blue}{\left(z \cdot y\right)}\right) - \left(6 \cdot z\right) \cdot x \]
      8. associate-*r*N/A

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

        \[\leadsto -1 \cdot \color{blue}{\left(y \cdot \left(-6 \cdot z\right)\right)} - \left(6 \cdot z\right) \cdot x \]
      10. associate-*r*N/A

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

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{x \cdot \left(6 \cdot z\right)} \]
      12. metadata-evalN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \left(\color{blue}{\left(\mathsf{neg}\left(-6\right)\right)} \cdot z\right) \]
      13. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \color{blue}{\left(\mathsf{neg}\left(-6 \cdot z\right)\right)} \]
      14. distribute-rgt-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x \cdot \left(-6 \cdot z\right)\right)\right)} \]
      15. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x\right)\right) \cdot \left(-6 \cdot z\right)} \]
      16. mul-1-negN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(-1 \cdot x\right)} \cdot \left(-6 \cdot z\right) \]
      17. distribute-rgt-out--N/A

        \[\leadsto \color{blue}{\left(-6 \cdot z\right) \cdot \left(-1 \cdot y - -1 \cdot x\right)} \]
      18. distribute-lft-out--N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(-1 \cdot \left(y - x\right)\right)} \]
      19. neg-mul-1N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\left(y - x\right)\right)\right)} \]
      20. neg-sub0N/A

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\left(0 - y\right) + x\right)} \]
      22. neg-sub0N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} + x\right) \]
      23. mul-1-negN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{-1 \cdot y} + x\right) \]
      24. *-lft-identityN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{1 \cdot \left(-1 \cdot y\right)} + x\right) \]
      25. *-inversesN/A

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

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

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

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(x \cdot \left(-1 \cdot \frac{y}{x}\right) + \color{blue}{x \cdot 1}\right) \]
    5. Applied rewrites43.2%

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

      \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
    7. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
      2. lower-*.f6438.3

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

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

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

        \[\leadsto \color{blue}{\left(-6 \cdot z\right) \cdot x} \]
      3. lower-*.f64N/A

        \[\leadsto \color{blue}{\left(-6 \cdot z\right) \cdot x} \]
      4. *-commutativeN/A

        \[\leadsto \color{blue}{\left(z \cdot -6\right)} \cdot x \]
      5. lower-*.f6438.4

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

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

    if -1.39999999999999991e128 < x < 6.4999999999999996e61

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in x around 0

      \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
    4. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
      2. lower-*.f6458.5

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} \]
    5. Applied rewrites58.5%

      \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
    6. Step-by-step derivation
      1. associate-*r*N/A

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

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

        \[\leadsto \color{blue}{\left(6 \cdot y\right) \cdot z} \]
      4. lift-*.f64N/A

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

        \[\leadsto \color{blue}{\left(y \cdot 6\right)} \cdot z \]
      6. lower-*.f6458.7

        \[\leadsto \color{blue}{\left(y \cdot 6\right)} \cdot z \]
    7. Applied rewrites58.7%

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

    if 6.4999999999999996e61 < x

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \color{blue}{6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot \left(y - x\right)} \]
      2. distribute-lft-out--N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot y - \left(6 \cdot z\right) \cdot x} \]
      3. associate-*r*N/A

        \[\leadsto \color{blue}{6 \cdot \left(z \cdot y\right)} - \left(6 \cdot z\right) \cdot x \]
      4. *-commutativeN/A

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} - \left(6 \cdot z\right) \cdot x \]
      5. metadata-evalN/A

        \[\leadsto \color{blue}{\left(-1 \cdot -6\right)} \cdot \left(y \cdot z\right) - \left(6 \cdot z\right) \cdot x \]
      6. associate-*r*N/A

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

        \[\leadsto -1 \cdot \left(-6 \cdot \color{blue}{\left(z \cdot y\right)}\right) - \left(6 \cdot z\right) \cdot x \]
      8. associate-*r*N/A

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

        \[\leadsto -1 \cdot \color{blue}{\left(y \cdot \left(-6 \cdot z\right)\right)} - \left(6 \cdot z\right) \cdot x \]
      10. associate-*r*N/A

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

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{x \cdot \left(6 \cdot z\right)} \]
      12. metadata-evalN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \left(\color{blue}{\left(\mathsf{neg}\left(-6\right)\right)} \cdot z\right) \]
      13. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \color{blue}{\left(\mathsf{neg}\left(-6 \cdot z\right)\right)} \]
      14. distribute-rgt-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x \cdot \left(-6 \cdot z\right)\right)\right)} \]
      15. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x\right)\right) \cdot \left(-6 \cdot z\right)} \]
      16. mul-1-negN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(-1 \cdot x\right)} \cdot \left(-6 \cdot z\right) \]
      17. distribute-rgt-out--N/A

        \[\leadsto \color{blue}{\left(-6 \cdot z\right) \cdot \left(-1 \cdot y - -1 \cdot x\right)} \]
      18. distribute-lft-out--N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(-1 \cdot \left(y - x\right)\right)} \]
      19. neg-mul-1N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\left(y - x\right)\right)\right)} \]
      20. neg-sub0N/A

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\left(0 - y\right) + x\right)} \]
      22. neg-sub0N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} + x\right) \]
      23. mul-1-negN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{-1 \cdot y} + x\right) \]
      24. *-lft-identityN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{1 \cdot \left(-1 \cdot y\right)} + x\right) \]
      25. *-inversesN/A

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

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

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

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(x \cdot \left(-1 \cdot \frac{y}{x}\right) + \color{blue}{x \cdot 1}\right) \]
    5. Applied rewrites71.2%

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

      \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
    7. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
      2. lower-*.f6459.9

        \[\leadsto -6 \cdot \color{blue}{\left(x \cdot z\right)} \]
    8. Applied rewrites59.9%

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -1.4 \cdot 10^{+128}:\\ \;\;\;\;x \cdot \left(z \cdot -6\right)\\ \mathbf{elif}\;x \leq 6.5 \cdot 10^{+61}:\\ \;\;\;\;z \cdot \left(y \cdot 6\right)\\ \mathbf{else}:\\ \;\;\;\;-6 \cdot \left(x \cdot z\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 9: 52.2% accurate, 0.7× speedup?

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

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

\mathbf{elif}\;x \leq 6.5 \cdot 10^{+61}:\\
\;\;\;\;z \cdot \left(y \cdot 6\right)\\

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


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

    1. Initial program 100.0%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \color{blue}{6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot \left(y - x\right)} \]
      2. distribute-lft-out--N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot y - \left(6 \cdot z\right) \cdot x} \]
      3. associate-*r*N/A

        \[\leadsto \color{blue}{6 \cdot \left(z \cdot y\right)} - \left(6 \cdot z\right) \cdot x \]
      4. *-commutativeN/A

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} - \left(6 \cdot z\right) \cdot x \]
      5. metadata-evalN/A

        \[\leadsto \color{blue}{\left(-1 \cdot -6\right)} \cdot \left(y \cdot z\right) - \left(6 \cdot z\right) \cdot x \]
      6. associate-*r*N/A

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

        \[\leadsto -1 \cdot \left(-6 \cdot \color{blue}{\left(z \cdot y\right)}\right) - \left(6 \cdot z\right) \cdot x \]
      8. associate-*r*N/A

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

        \[\leadsto -1 \cdot \color{blue}{\left(y \cdot \left(-6 \cdot z\right)\right)} - \left(6 \cdot z\right) \cdot x \]
      10. associate-*r*N/A

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

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{x \cdot \left(6 \cdot z\right)} \]
      12. metadata-evalN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \left(\color{blue}{\left(\mathsf{neg}\left(-6\right)\right)} \cdot z\right) \]
      13. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \color{blue}{\left(\mathsf{neg}\left(-6 \cdot z\right)\right)} \]
      14. distribute-rgt-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x \cdot \left(-6 \cdot z\right)\right)\right)} \]
      15. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x\right)\right) \cdot \left(-6 \cdot z\right)} \]
      16. mul-1-negN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(-1 \cdot x\right)} \cdot \left(-6 \cdot z\right) \]
      17. distribute-rgt-out--N/A

        \[\leadsto \color{blue}{\left(-6 \cdot z\right) \cdot \left(-1 \cdot y - -1 \cdot x\right)} \]
      18. distribute-lft-out--N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(-1 \cdot \left(y - x\right)\right)} \]
      19. neg-mul-1N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\left(y - x\right)\right)\right)} \]
      20. neg-sub0N/A

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\left(0 - y\right) + x\right)} \]
      22. neg-sub0N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} + x\right) \]
      23. mul-1-negN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{-1 \cdot y} + x\right) \]
      24. *-lft-identityN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{1 \cdot \left(-1 \cdot y\right)} + x\right) \]
      25. *-inversesN/A

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

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

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

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(x \cdot \left(-1 \cdot \frac{y}{x}\right) + \color{blue}{x \cdot 1}\right) \]
    5. Applied rewrites43.2%

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

      \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
    7. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
      2. lower-*.f6438.3

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

      \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
    9. Step-by-step derivation
      1. associate-*r*N/A

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

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

        \[\leadsto \color{blue}{\left(x \cdot -6\right)} \cdot z \]
      4. lower-*.f6438.4

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

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

    if -1.39999999999999991e128 < x < 6.4999999999999996e61

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in x around 0

      \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
    4. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
      2. lower-*.f6458.5

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} \]
    5. Applied rewrites58.5%

      \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
    6. Step-by-step derivation
      1. associate-*r*N/A

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

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

        \[\leadsto \color{blue}{\left(6 \cdot y\right) \cdot z} \]
      4. lift-*.f64N/A

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

        \[\leadsto \color{blue}{\left(y \cdot 6\right)} \cdot z \]
      6. lower-*.f6458.7

        \[\leadsto \color{blue}{\left(y \cdot 6\right)} \cdot z \]
    7. Applied rewrites58.7%

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

    if 6.4999999999999996e61 < x

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \color{blue}{6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot \left(y - x\right)} \]
      2. distribute-lft-out--N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot y - \left(6 \cdot z\right) \cdot x} \]
      3. associate-*r*N/A

        \[\leadsto \color{blue}{6 \cdot \left(z \cdot y\right)} - \left(6 \cdot z\right) \cdot x \]
      4. *-commutativeN/A

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} - \left(6 \cdot z\right) \cdot x \]
      5. metadata-evalN/A

        \[\leadsto \color{blue}{\left(-1 \cdot -6\right)} \cdot \left(y \cdot z\right) - \left(6 \cdot z\right) \cdot x \]
      6. associate-*r*N/A

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

        \[\leadsto -1 \cdot \left(-6 \cdot \color{blue}{\left(z \cdot y\right)}\right) - \left(6 \cdot z\right) \cdot x \]
      8. associate-*r*N/A

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

        \[\leadsto -1 \cdot \color{blue}{\left(y \cdot \left(-6 \cdot z\right)\right)} - \left(6 \cdot z\right) \cdot x \]
      10. associate-*r*N/A

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

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{x \cdot \left(6 \cdot z\right)} \]
      12. metadata-evalN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \left(\color{blue}{\left(\mathsf{neg}\left(-6\right)\right)} \cdot z\right) \]
      13. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \color{blue}{\left(\mathsf{neg}\left(-6 \cdot z\right)\right)} \]
      14. distribute-rgt-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x \cdot \left(-6 \cdot z\right)\right)\right)} \]
      15. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x\right)\right) \cdot \left(-6 \cdot z\right)} \]
      16. mul-1-negN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(-1 \cdot x\right)} \cdot \left(-6 \cdot z\right) \]
      17. distribute-rgt-out--N/A

        \[\leadsto \color{blue}{\left(-6 \cdot z\right) \cdot \left(-1 \cdot y - -1 \cdot x\right)} \]
      18. distribute-lft-out--N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(-1 \cdot \left(y - x\right)\right)} \]
      19. neg-mul-1N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\left(y - x\right)\right)\right)} \]
      20. neg-sub0N/A

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\left(0 - y\right) + x\right)} \]
      22. neg-sub0N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} + x\right) \]
      23. mul-1-negN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{-1 \cdot y} + x\right) \]
      24. *-lft-identityN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{1 \cdot \left(-1 \cdot y\right)} + x\right) \]
      25. *-inversesN/A

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

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

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

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(x \cdot \left(-1 \cdot \frac{y}{x}\right) + \color{blue}{x \cdot 1}\right) \]
    5. Applied rewrites71.2%

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

      \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
    7. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
      2. lower-*.f6459.9

        \[\leadsto -6 \cdot \color{blue}{\left(x \cdot z\right)} \]
    8. Applied rewrites59.9%

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -1.4 \cdot 10^{+128}:\\ \;\;\;\;z \cdot \left(x \cdot -6\right)\\ \mathbf{elif}\;x \leq 6.5 \cdot 10^{+61}:\\ \;\;\;\;z \cdot \left(y \cdot 6\right)\\ \mathbf{else}:\\ \;\;\;\;-6 \cdot \left(x \cdot z\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 10: 52.2% accurate, 0.7× speedup?

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

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

\mathbf{elif}\;x \leq 6.5 \cdot 10^{+61}:\\
\;\;\;\;y \cdot \left(6 \cdot z\right)\\

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


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

    1. Initial program 100.0%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \color{blue}{6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot \left(y - x\right)} \]
      2. distribute-lft-out--N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot y - \left(6 \cdot z\right) \cdot x} \]
      3. associate-*r*N/A

        \[\leadsto \color{blue}{6 \cdot \left(z \cdot y\right)} - \left(6 \cdot z\right) \cdot x \]
      4. *-commutativeN/A

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} - \left(6 \cdot z\right) \cdot x \]
      5. metadata-evalN/A

        \[\leadsto \color{blue}{\left(-1 \cdot -6\right)} \cdot \left(y \cdot z\right) - \left(6 \cdot z\right) \cdot x \]
      6. associate-*r*N/A

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

        \[\leadsto -1 \cdot \left(-6 \cdot \color{blue}{\left(z \cdot y\right)}\right) - \left(6 \cdot z\right) \cdot x \]
      8. associate-*r*N/A

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

        \[\leadsto -1 \cdot \color{blue}{\left(y \cdot \left(-6 \cdot z\right)\right)} - \left(6 \cdot z\right) \cdot x \]
      10. associate-*r*N/A

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

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{x \cdot \left(6 \cdot z\right)} \]
      12. metadata-evalN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \left(\color{blue}{\left(\mathsf{neg}\left(-6\right)\right)} \cdot z\right) \]
      13. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \color{blue}{\left(\mathsf{neg}\left(-6 \cdot z\right)\right)} \]
      14. distribute-rgt-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x \cdot \left(-6 \cdot z\right)\right)\right)} \]
      15. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x\right)\right) \cdot \left(-6 \cdot z\right)} \]
      16. mul-1-negN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(-1 \cdot x\right)} \cdot \left(-6 \cdot z\right) \]
      17. distribute-rgt-out--N/A

        \[\leadsto \color{blue}{\left(-6 \cdot z\right) \cdot \left(-1 \cdot y - -1 \cdot x\right)} \]
      18. distribute-lft-out--N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(-1 \cdot \left(y - x\right)\right)} \]
      19. neg-mul-1N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\left(y - x\right)\right)\right)} \]
      20. neg-sub0N/A

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\left(0 - y\right) + x\right)} \]
      22. neg-sub0N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} + x\right) \]
      23. mul-1-negN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{-1 \cdot y} + x\right) \]
      24. *-lft-identityN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{1 \cdot \left(-1 \cdot y\right)} + x\right) \]
      25. *-inversesN/A

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

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

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

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(x \cdot \left(-1 \cdot \frac{y}{x}\right) + \color{blue}{x \cdot 1}\right) \]
    5. Applied rewrites43.2%

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

      \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
    7. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
      2. lower-*.f6438.3

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

      \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
    9. Step-by-step derivation
      1. associate-*r*N/A

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

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

        \[\leadsto \color{blue}{\left(x \cdot -6\right)} \cdot z \]
      4. lower-*.f6438.4

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

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

    if -1.39999999999999991e128 < x < 6.4999999999999996e61

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in x around 0

      \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
    4. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
      2. lower-*.f6458.5

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} \]
    5. Applied rewrites58.5%

      \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
    6. Step-by-step derivation
      1. *-commutativeN/A

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

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot y} \]
      3. *-commutativeN/A

        \[\leadsto \color{blue}{\left(z \cdot 6\right)} \cdot y \]
      4. lower-*.f64N/A

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

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

        \[\leadsto \color{blue}{\left(6 \cdot z\right)} \cdot y \]
    7. Applied rewrites58.6%

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

    if 6.4999999999999996e61 < x

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \color{blue}{6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot \left(y - x\right)} \]
      2. distribute-lft-out--N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot y - \left(6 \cdot z\right) \cdot x} \]
      3. associate-*r*N/A

        \[\leadsto \color{blue}{6 \cdot \left(z \cdot y\right)} - \left(6 \cdot z\right) \cdot x \]
      4. *-commutativeN/A

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} - \left(6 \cdot z\right) \cdot x \]
      5. metadata-evalN/A

        \[\leadsto \color{blue}{\left(-1 \cdot -6\right)} \cdot \left(y \cdot z\right) - \left(6 \cdot z\right) \cdot x \]
      6. associate-*r*N/A

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

        \[\leadsto -1 \cdot \left(-6 \cdot \color{blue}{\left(z \cdot y\right)}\right) - \left(6 \cdot z\right) \cdot x \]
      8. associate-*r*N/A

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

        \[\leadsto -1 \cdot \color{blue}{\left(y \cdot \left(-6 \cdot z\right)\right)} - \left(6 \cdot z\right) \cdot x \]
      10. associate-*r*N/A

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

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{x \cdot \left(6 \cdot z\right)} \]
      12. metadata-evalN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \left(\color{blue}{\left(\mathsf{neg}\left(-6\right)\right)} \cdot z\right) \]
      13. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \color{blue}{\left(\mathsf{neg}\left(-6 \cdot z\right)\right)} \]
      14. distribute-rgt-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x \cdot \left(-6 \cdot z\right)\right)\right)} \]
      15. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x\right)\right) \cdot \left(-6 \cdot z\right)} \]
      16. mul-1-negN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(-1 \cdot x\right)} \cdot \left(-6 \cdot z\right) \]
      17. distribute-rgt-out--N/A

        \[\leadsto \color{blue}{\left(-6 \cdot z\right) \cdot \left(-1 \cdot y - -1 \cdot x\right)} \]
      18. distribute-lft-out--N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(-1 \cdot \left(y - x\right)\right)} \]
      19. neg-mul-1N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\left(y - x\right)\right)\right)} \]
      20. neg-sub0N/A

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\left(0 - y\right) + x\right)} \]
      22. neg-sub0N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} + x\right) \]
      23. mul-1-negN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{-1 \cdot y} + x\right) \]
      24. *-lft-identityN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{1 \cdot \left(-1 \cdot y\right)} + x\right) \]
      25. *-inversesN/A

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

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

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

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(x \cdot \left(-1 \cdot \frac{y}{x}\right) + \color{blue}{x \cdot 1}\right) \]
    5. Applied rewrites71.2%

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

      \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
    7. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
      2. lower-*.f6459.9

        \[\leadsto -6 \cdot \color{blue}{\left(x \cdot z\right)} \]
    8. Applied rewrites59.9%

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -1.4 \cdot 10^{+128}:\\ \;\;\;\;z \cdot \left(x \cdot -6\right)\\ \mathbf{elif}\;x \leq 6.5 \cdot 10^{+61}:\\ \;\;\;\;y \cdot \left(6 \cdot z\right)\\ \mathbf{else}:\\ \;\;\;\;-6 \cdot \left(x \cdot z\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 11: 52.2% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := -6 \cdot \left(x \cdot z\right)\\ \mathbf{if}\;x \leq -1.4 \cdot 10^{+128}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;x \leq 6.5 \cdot 10^{+61}:\\ \;\;\;\;y \cdot \left(6 \cdot z\right)\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (let* ((t_0 (* -6.0 (* x z))))
   (if (<= x -1.4e+128) t_0 (if (<= x 6.5e+61) (* y (* 6.0 z)) t_0))))
double code(double x, double y, double z) {
	double t_0 = -6.0 * (x * z);
	double tmp;
	if (x <= -1.4e+128) {
		tmp = t_0;
	} else if (x <= 6.5e+61) {
		tmp = y * (6.0 * z);
	} else {
		tmp = t_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) :: t_0
    real(8) :: tmp
    t_0 = (-6.0d0) * (x * z)
    if (x <= (-1.4d+128)) then
        tmp = t_0
    else if (x <= 6.5d+61) then
        tmp = y * (6.0d0 * z)
    else
        tmp = t_0
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double t_0 = -6.0 * (x * z);
	double tmp;
	if (x <= -1.4e+128) {
		tmp = t_0;
	} else if (x <= 6.5e+61) {
		tmp = y * (6.0 * z);
	} else {
		tmp = t_0;
	}
	return tmp;
}
def code(x, y, z):
	t_0 = -6.0 * (x * z)
	tmp = 0
	if x <= -1.4e+128:
		tmp = t_0
	elif x <= 6.5e+61:
		tmp = y * (6.0 * z)
	else:
		tmp = t_0
	return tmp
function code(x, y, z)
	t_0 = Float64(-6.0 * Float64(x * z))
	tmp = 0.0
	if (x <= -1.4e+128)
		tmp = t_0;
	elseif (x <= 6.5e+61)
		tmp = Float64(y * Float64(6.0 * z));
	else
		tmp = t_0;
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	t_0 = -6.0 * (x * z);
	tmp = 0.0;
	if (x <= -1.4e+128)
		tmp = t_0;
	elseif (x <= 6.5e+61)
		tmp = y * (6.0 * z);
	else
		tmp = t_0;
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := Block[{t$95$0 = N[(-6.0 * N[(x * z), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x, -1.4e+128], t$95$0, If[LessEqual[x, 6.5e+61], N[(y * N[(6.0 * z), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := -6 \cdot \left(x \cdot z\right)\\
\mathbf{if}\;x \leq -1.4 \cdot 10^{+128}:\\
\;\;\;\;t\_0\\

\mathbf{elif}\;x \leq 6.5 \cdot 10^{+61}:\\
\;\;\;\;y \cdot \left(6 \cdot z\right)\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < -1.39999999999999991e128 or 6.4999999999999996e61 < x

    1. Initial program 99.9%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \color{blue}{6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot \left(y - x\right)} \]
      2. distribute-lft-out--N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot y - \left(6 \cdot z\right) \cdot x} \]
      3. associate-*r*N/A

        \[\leadsto \color{blue}{6 \cdot \left(z \cdot y\right)} - \left(6 \cdot z\right) \cdot x \]
      4. *-commutativeN/A

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} - \left(6 \cdot z\right) \cdot x \]
      5. metadata-evalN/A

        \[\leadsto \color{blue}{\left(-1 \cdot -6\right)} \cdot \left(y \cdot z\right) - \left(6 \cdot z\right) \cdot x \]
      6. associate-*r*N/A

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

        \[\leadsto -1 \cdot \left(-6 \cdot \color{blue}{\left(z \cdot y\right)}\right) - \left(6 \cdot z\right) \cdot x \]
      8. associate-*r*N/A

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

        \[\leadsto -1 \cdot \color{blue}{\left(y \cdot \left(-6 \cdot z\right)\right)} - \left(6 \cdot z\right) \cdot x \]
      10. associate-*r*N/A

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

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{x \cdot \left(6 \cdot z\right)} \]
      12. metadata-evalN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \left(\color{blue}{\left(\mathsf{neg}\left(-6\right)\right)} \cdot z\right) \]
      13. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \color{blue}{\left(\mathsf{neg}\left(-6 \cdot z\right)\right)} \]
      14. distribute-rgt-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x \cdot \left(-6 \cdot z\right)\right)\right)} \]
      15. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x\right)\right) \cdot \left(-6 \cdot z\right)} \]
      16. mul-1-negN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(-1 \cdot x\right)} \cdot \left(-6 \cdot z\right) \]
      17. distribute-rgt-out--N/A

        \[\leadsto \color{blue}{\left(-6 \cdot z\right) \cdot \left(-1 \cdot y - -1 \cdot x\right)} \]
      18. distribute-lft-out--N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(-1 \cdot \left(y - x\right)\right)} \]
      19. neg-mul-1N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\left(y - x\right)\right)\right)} \]
      20. neg-sub0N/A

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\left(0 - y\right) + x\right)} \]
      22. neg-sub0N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} + x\right) \]
      23. mul-1-negN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{-1 \cdot y} + x\right) \]
      24. *-lft-identityN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{1 \cdot \left(-1 \cdot y\right)} + x\right) \]
      25. *-inversesN/A

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

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

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

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(x \cdot \left(-1 \cdot \frac{y}{x}\right) + \color{blue}{x \cdot 1}\right) \]
    5. Applied rewrites59.1%

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

      \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
    7. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
      2. lower-*.f6450.5

        \[\leadsto -6 \cdot \color{blue}{\left(x \cdot z\right)} \]
    8. Applied rewrites50.5%

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

    if -1.39999999999999991e128 < x < 6.4999999999999996e61

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in x around 0

      \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
    4. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
      2. lower-*.f6458.5

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} \]
    5. Applied rewrites58.5%

      \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
    6. Step-by-step derivation
      1. *-commutativeN/A

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

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot y} \]
      3. *-commutativeN/A

        \[\leadsto \color{blue}{\left(z \cdot 6\right)} \cdot y \]
      4. lower-*.f64N/A

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

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

        \[\leadsto \color{blue}{\left(6 \cdot z\right)} \cdot y \]
    7. Applied rewrites58.6%

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -1.4 \cdot 10^{+128}:\\ \;\;\;\;-6 \cdot \left(x \cdot z\right)\\ \mathbf{elif}\;x \leq 6.5 \cdot 10^{+61}:\\ \;\;\;\;y \cdot \left(6 \cdot z\right)\\ \mathbf{else}:\\ \;\;\;\;-6 \cdot \left(x \cdot z\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 12: 52.2% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := -6 \cdot \left(x \cdot z\right)\\ \mathbf{if}\;x \leq -1.4 \cdot 10^{+128}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;x \leq 6.5 \cdot 10^{+61}:\\ \;\;\;\;6 \cdot \left(y \cdot z\right)\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (let* ((t_0 (* -6.0 (* x z))))
   (if (<= x -1.4e+128) t_0 (if (<= x 6.5e+61) (* 6.0 (* y z)) t_0))))
double code(double x, double y, double z) {
	double t_0 = -6.0 * (x * z);
	double tmp;
	if (x <= -1.4e+128) {
		tmp = t_0;
	} else if (x <= 6.5e+61) {
		tmp = 6.0 * (y * z);
	} else {
		tmp = t_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) :: t_0
    real(8) :: tmp
    t_0 = (-6.0d0) * (x * z)
    if (x <= (-1.4d+128)) then
        tmp = t_0
    else if (x <= 6.5d+61) then
        tmp = 6.0d0 * (y * z)
    else
        tmp = t_0
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double t_0 = -6.0 * (x * z);
	double tmp;
	if (x <= -1.4e+128) {
		tmp = t_0;
	} else if (x <= 6.5e+61) {
		tmp = 6.0 * (y * z);
	} else {
		tmp = t_0;
	}
	return tmp;
}
def code(x, y, z):
	t_0 = -6.0 * (x * z)
	tmp = 0
	if x <= -1.4e+128:
		tmp = t_0
	elif x <= 6.5e+61:
		tmp = 6.0 * (y * z)
	else:
		tmp = t_0
	return tmp
function code(x, y, z)
	t_0 = Float64(-6.0 * Float64(x * z))
	tmp = 0.0
	if (x <= -1.4e+128)
		tmp = t_0;
	elseif (x <= 6.5e+61)
		tmp = Float64(6.0 * Float64(y * z));
	else
		tmp = t_0;
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	t_0 = -6.0 * (x * z);
	tmp = 0.0;
	if (x <= -1.4e+128)
		tmp = t_0;
	elseif (x <= 6.5e+61)
		tmp = 6.0 * (y * z);
	else
		tmp = t_0;
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := Block[{t$95$0 = N[(-6.0 * N[(x * z), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x, -1.4e+128], t$95$0, If[LessEqual[x, 6.5e+61], N[(6.0 * N[(y * z), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := -6 \cdot \left(x \cdot z\right)\\
\mathbf{if}\;x \leq -1.4 \cdot 10^{+128}:\\
\;\;\;\;t\_0\\

\mathbf{elif}\;x \leq 6.5 \cdot 10^{+61}:\\
\;\;\;\;6 \cdot \left(y \cdot z\right)\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < -1.39999999999999991e128 or 6.4999999999999996e61 < x

    1. Initial program 99.9%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \color{blue}{6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot \left(y - x\right)} \]
      2. distribute-lft-out--N/A

        \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot y - \left(6 \cdot z\right) \cdot x} \]
      3. associate-*r*N/A

        \[\leadsto \color{blue}{6 \cdot \left(z \cdot y\right)} - \left(6 \cdot z\right) \cdot x \]
      4. *-commutativeN/A

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} - \left(6 \cdot z\right) \cdot x \]
      5. metadata-evalN/A

        \[\leadsto \color{blue}{\left(-1 \cdot -6\right)} \cdot \left(y \cdot z\right) - \left(6 \cdot z\right) \cdot x \]
      6. associate-*r*N/A

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

        \[\leadsto -1 \cdot \left(-6 \cdot \color{blue}{\left(z \cdot y\right)}\right) - \left(6 \cdot z\right) \cdot x \]
      8. associate-*r*N/A

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

        \[\leadsto -1 \cdot \color{blue}{\left(y \cdot \left(-6 \cdot z\right)\right)} - \left(6 \cdot z\right) \cdot x \]
      10. associate-*r*N/A

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

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{x \cdot \left(6 \cdot z\right)} \]
      12. metadata-evalN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \left(\color{blue}{\left(\mathsf{neg}\left(-6\right)\right)} \cdot z\right) \]
      13. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \color{blue}{\left(\mathsf{neg}\left(-6 \cdot z\right)\right)} \]
      14. distribute-rgt-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x \cdot \left(-6 \cdot z\right)\right)\right)} \]
      15. distribute-lft-neg-inN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x\right)\right) \cdot \left(-6 \cdot z\right)} \]
      16. mul-1-negN/A

        \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(-1 \cdot x\right)} \cdot \left(-6 \cdot z\right) \]
      17. distribute-rgt-out--N/A

        \[\leadsto \color{blue}{\left(-6 \cdot z\right) \cdot \left(-1 \cdot y - -1 \cdot x\right)} \]
      18. distribute-lft-out--N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(-1 \cdot \left(y - x\right)\right)} \]
      19. neg-mul-1N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\left(y - x\right)\right)\right)} \]
      20. neg-sub0N/A

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\left(0 - y\right) + x\right)} \]
      22. neg-sub0N/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} + x\right) \]
      23. mul-1-negN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{-1 \cdot y} + x\right) \]
      24. *-lft-identityN/A

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{1 \cdot \left(-1 \cdot y\right)} + x\right) \]
      25. *-inversesN/A

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

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

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

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

        \[\leadsto \left(-6 \cdot z\right) \cdot \left(x \cdot \left(-1 \cdot \frac{y}{x}\right) + \color{blue}{x \cdot 1}\right) \]
    5. Applied rewrites59.1%

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

      \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
    7. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
      2. lower-*.f6450.5

        \[\leadsto -6 \cdot \color{blue}{\left(x \cdot z\right)} \]
    8. Applied rewrites50.5%

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

    if -1.39999999999999991e128 < x < 6.4999999999999996e61

    1. Initial program 99.8%

      \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
    2. Add Preprocessing
    3. Taylor expanded in x around 0

      \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
    4. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
      2. lower-*.f6458.5

        \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} \]
    5. Applied rewrites58.5%

      \[\leadsto \color{blue}{6 \cdot \left(y \cdot z\right)} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 13: 99.7% accurate, 1.1× speedup?

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

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

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

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

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

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

      \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot z + x} \]
    5. lift-*.f64N/A

      \[\leadsto \color{blue}{\left(\left(y - x\right) \cdot 6\right) \cdot z} + x \]
    6. lower-fma.f6499.9

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

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

Alternative 14: 26.7% accurate, 1.5× speedup?

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

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

    \[x + \left(\left(y - x\right) \cdot 6\right) \cdot z \]
  2. Add Preprocessing
  3. Taylor expanded in z around inf

    \[\leadsto \color{blue}{6 \cdot \left(z \cdot \left(y - x\right)\right)} \]
  4. Step-by-step derivation
    1. associate-*r*N/A

      \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot \left(y - x\right)} \]
    2. distribute-lft-out--N/A

      \[\leadsto \color{blue}{\left(6 \cdot z\right) \cdot y - \left(6 \cdot z\right) \cdot x} \]
    3. associate-*r*N/A

      \[\leadsto \color{blue}{6 \cdot \left(z \cdot y\right)} - \left(6 \cdot z\right) \cdot x \]
    4. *-commutativeN/A

      \[\leadsto 6 \cdot \color{blue}{\left(y \cdot z\right)} - \left(6 \cdot z\right) \cdot x \]
    5. metadata-evalN/A

      \[\leadsto \color{blue}{\left(-1 \cdot -6\right)} \cdot \left(y \cdot z\right) - \left(6 \cdot z\right) \cdot x \]
    6. associate-*r*N/A

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

      \[\leadsto -1 \cdot \left(-6 \cdot \color{blue}{\left(z \cdot y\right)}\right) - \left(6 \cdot z\right) \cdot x \]
    8. associate-*r*N/A

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

      \[\leadsto -1 \cdot \color{blue}{\left(y \cdot \left(-6 \cdot z\right)\right)} - \left(6 \cdot z\right) \cdot x \]
    10. associate-*r*N/A

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

      \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{x \cdot \left(6 \cdot z\right)} \]
    12. metadata-evalN/A

      \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \left(\color{blue}{\left(\mathsf{neg}\left(-6\right)\right)} \cdot z\right) \]
    13. distribute-lft-neg-inN/A

      \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - x \cdot \color{blue}{\left(\mathsf{neg}\left(-6 \cdot z\right)\right)} \]
    14. distribute-rgt-neg-inN/A

      \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x \cdot \left(-6 \cdot z\right)\right)\right)} \]
    15. distribute-lft-neg-inN/A

      \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(\mathsf{neg}\left(x\right)\right) \cdot \left(-6 \cdot z\right)} \]
    16. mul-1-negN/A

      \[\leadsto \left(-1 \cdot y\right) \cdot \left(-6 \cdot z\right) - \color{blue}{\left(-1 \cdot x\right)} \cdot \left(-6 \cdot z\right) \]
    17. distribute-rgt-out--N/A

      \[\leadsto \color{blue}{\left(-6 \cdot z\right) \cdot \left(-1 \cdot y - -1 \cdot x\right)} \]
    18. distribute-lft-out--N/A

      \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(-1 \cdot \left(y - x\right)\right)} \]
    19. neg-mul-1N/A

      \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\left(y - x\right)\right)\right)} \]
    20. neg-sub0N/A

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

      \[\leadsto \left(-6 \cdot z\right) \cdot \color{blue}{\left(\left(0 - y\right) + x\right)} \]
    22. neg-sub0N/A

      \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} + x\right) \]
    23. mul-1-negN/A

      \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{-1 \cdot y} + x\right) \]
    24. *-lft-identityN/A

      \[\leadsto \left(-6 \cdot z\right) \cdot \left(\color{blue}{1 \cdot \left(-1 \cdot y\right)} + x\right) \]
    25. *-inversesN/A

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

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

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

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

      \[\leadsto \left(-6 \cdot z\right) \cdot \left(x \cdot \left(-1 \cdot \frac{y}{x}\right) + \color{blue}{x \cdot 1}\right) \]
  5. Applied rewrites68.4%

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

    \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
  7. Step-by-step derivation
    1. lower-*.f64N/A

      \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
    2. lower-*.f6429.3

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

    \[\leadsto \color{blue}{-6 \cdot \left(x \cdot z\right)} \]
  9. Add Preprocessing

Developer Target 1: 99.8% accurate, 1.0× speedup?

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

\\
x - \left(6 \cdot z\right) \cdot \left(x - y\right)
\end{array}

Reproduce

?
herbie shell --seed 2024216 
(FPCore (x y z)
  :name "Data.Colour.RGBSpace.HSL:hsl from colour-2.3.3, E"
  :precision binary64

  :alt
  (! :herbie-platform default (- x (* (* 6 z) (- x y))))

  (+ x (* (* (- y x) 6.0) z)))