Optimisation.CirclePacking:place from circle-packing-0.1.0.4, F

Percentage Accurate: 93.0% → 95.3%
Time: 7.5s
Alternatives: 9
Speedup: 1.1×

Specification

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

\\
x - \frac{y \cdot \left(z - t\right)}{a}
\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 9 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: 93.0% accurate, 1.0× speedup?

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

\\
x - \frac{y \cdot \left(z - t\right)}{a}
\end{array}

Alternative 1: 95.3% accurate, 0.9× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;t \leq 1.3 \cdot 10^{-164}:\\ \;\;\;\;\mathsf{fma}\left(\frac{t - z}{a}, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(t - z, \frac{y}{a}, x\right)\\ \end{array} \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (if (<= t 1.3e-164) (fma (/ (- t z) a) y x) (fma (- t z) (/ y a) x)))
double code(double x, double y, double z, double t, double a) {
	double tmp;
	if (t <= 1.3e-164) {
		tmp = fma(((t - z) / a), y, x);
	} else {
		tmp = fma((t - z), (y / a), x);
	}
	return tmp;
}
function code(x, y, z, t, a)
	tmp = 0.0
	if (t <= 1.3e-164)
		tmp = fma(Float64(Float64(t - z) / a), y, x);
	else
		tmp = fma(Float64(t - z), Float64(y / a), x);
	end
	return tmp
end
code[x_, y_, z_, t_, a_] := If[LessEqual[t, 1.3e-164], N[(N[(N[(t - z), $MachinePrecision] / a), $MachinePrecision] * y + x), $MachinePrecision], N[(N[(t - z), $MachinePrecision] * N[(y / a), $MachinePrecision] + x), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;t \leq 1.3 \cdot 10^{-164}:\\
\;\;\;\;\mathsf{fma}\left(\frac{t - z}{a}, y, x\right)\\

\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(t - z, \frac{y}{a}, x\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if t < 1.3000000000000001e-164

    1. Initial program 92.3%

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

      \[\leadsto \color{blue}{\frac{a \cdot x - y \cdot \left(z - t\right)}{a}} \]
    4. Step-by-step derivation
      1. div-subN/A

        \[\leadsto \color{blue}{\frac{a \cdot x}{a} - \frac{y \cdot \left(z - t\right)}{a}} \]
      2. sub-negN/A

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

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

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

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

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

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

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

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(-1 \cdot \left(z - t\right), \frac{y}{a}, x\right)} \]
      13. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{neg}\left(\left(z - t\right)\right)}, \frac{y}{a}, x\right) \]
      14. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{0 - \left(z - t\right)}, \frac{y}{a}, x\right) \]
      15. associate-+l-N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\left(0 - z\right) + t}, \frac{y}{a}, x\right) \]
      16. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\left(\mathsf{neg}\left(z\right)\right)} + t, \frac{y}{a}, x\right) \]
      17. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{-1 \cdot z} + t, \frac{y}{a}, x\right) \]
      18. +-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{t + -1 \cdot z}, \frac{y}{a}, x\right) \]
      19. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(t + \color{blue}{\left(\mathsf{neg}\left(z\right)\right)}, \frac{y}{a}, x\right) \]
      20. sub-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{t - z}, \frac{y}{a}, x\right) \]
      21. lower--.f64N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{t - z}, \frac{y}{a}, x\right) \]
      22. lower-/.f6495.6

        \[\leadsto \mathsf{fma}\left(t - z, \color{blue}{\frac{y}{a}}, x\right) \]
    5. Applied rewrites95.6%

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

      \[\leadsto \color{blue}{\frac{a \cdot x - y \cdot \left(z - t\right)}{a}} \]
    7. Step-by-step derivation
      1. div-subN/A

        \[\leadsto \color{blue}{\frac{a \cdot x}{a} - \frac{y \cdot \left(z - t\right)}{a}} \]
      2. sub-negN/A

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

        \[\leadsto \frac{\color{blue}{x \cdot a}}{a} + \left(\mathsf{neg}\left(\frac{y \cdot \left(z - t\right)}{a}\right)\right) \]
      4. associate-/l*N/A

        \[\leadsto \color{blue}{x \cdot \frac{a}{a}} + \left(\mathsf{neg}\left(\frac{y \cdot \left(z - t\right)}{a}\right)\right) \]
      5. *-inversesN/A

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

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

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

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

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

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

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(-1 \cdot \frac{z - t}{a}, y, x\right)} \]
      15. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{neg}\left(\frac{z - t}{a}\right)}, y, x\right) \]
      16. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{0 - \frac{z - t}{a}}, y, x\right) \]
      17. div-subN/A

        \[\leadsto \mathsf{fma}\left(0 - \color{blue}{\left(\frac{z}{a} - \frac{t}{a}\right)}, y, x\right) \]
      18. associate-+l-N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\left(0 - \frac{z}{a}\right) + \frac{t}{a}}, y, x\right) \]
      19. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{z}{a}\right)\right)} + \frac{t}{a}, y, x\right) \]
      20. +-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{t}{a} + \left(\mathsf{neg}\left(\frac{z}{a}\right)\right)}, y, x\right) \]
      21. sub-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{t}{a} - \frac{z}{a}}, y, x\right) \]
      22. div-subN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{t - z}{a}}, y, x\right) \]
      23. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{t - z}{a}}, y, x\right) \]
      24. lower--.f6498.8

        \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{t - z}}{a}, y, x\right) \]
    8. Applied rewrites98.8%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{t - z}{a}, y, x\right)} \]

    if 1.3000000000000001e-164 < t

    1. Initial program 91.8%

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

      \[\leadsto \color{blue}{\frac{a \cdot x - y \cdot \left(z - t\right)}{a}} \]
    4. Step-by-step derivation
      1. div-subN/A

        \[\leadsto \color{blue}{\frac{a \cdot x}{a} - \frac{y \cdot \left(z - t\right)}{a}} \]
      2. sub-negN/A

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

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

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

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

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

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

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

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(-1 \cdot \left(z - t\right), \frac{y}{a}, x\right)} \]
      13. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{neg}\left(\left(z - t\right)\right)}, \frac{y}{a}, x\right) \]
      14. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{0 - \left(z - t\right)}, \frac{y}{a}, x\right) \]
      15. associate-+l-N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\left(0 - z\right) + t}, \frac{y}{a}, x\right) \]
      16. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\left(\mathsf{neg}\left(z\right)\right)} + t, \frac{y}{a}, x\right) \]
      17. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{-1 \cdot z} + t, \frac{y}{a}, x\right) \]
      18. +-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{t + -1 \cdot z}, \frac{y}{a}, x\right) \]
      19. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(t + \color{blue}{\left(\mathsf{neg}\left(z\right)\right)}, \frac{y}{a}, x\right) \]
      20. sub-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{t - z}, \frac{y}{a}, x\right) \]
      21. lower--.f64N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{t - z}, \frac{y}{a}, x\right) \]
      22. lower-/.f6498.9

        \[\leadsto \mathsf{fma}\left(t - z, \color{blue}{\frac{y}{a}}, x\right) \]
    5. Applied rewrites98.9%

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

Alternative 2: 86.7% accurate, 0.3× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{\left(z - t\right) \cdot y}{a}\\ t_2 := \frac{y}{a} \cdot \left(t - z\right)\\ \mathbf{if}\;t\_1 \leq -5 \cdot 10^{+133}:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;t\_1 \leq 10^{+56}:\\ \;\;\;\;x - \frac{z \cdot y}{a}\\ \mathbf{else}:\\ \;\;\;\;t\_2\\ \end{array} \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (let* ((t_1 (/ (* (- z t) y) a)) (t_2 (* (/ y a) (- t z))))
   (if (<= t_1 -5e+133) t_2 (if (<= t_1 1e+56) (- x (/ (* z y) a)) t_2))))
double code(double x, double y, double z, double t, double a) {
	double t_1 = ((z - t) * y) / a;
	double t_2 = (y / a) * (t - z);
	double tmp;
	if (t_1 <= -5e+133) {
		tmp = t_2;
	} else if (t_1 <= 1e+56) {
		tmp = x - ((z * y) / a);
	} else {
		tmp = t_2;
	}
	return tmp;
}
real(8) function code(x, y, z, t, a)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8), intent (in) :: a
    real(8) :: t_1
    real(8) :: t_2
    real(8) :: tmp
    t_1 = ((z - t) * y) / a
    t_2 = (y / a) * (t - z)
    if (t_1 <= (-5d+133)) then
        tmp = t_2
    else if (t_1 <= 1d+56) then
        tmp = x - ((z * y) / a)
    else
        tmp = t_2
    end if
    code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
	double t_1 = ((z - t) * y) / a;
	double t_2 = (y / a) * (t - z);
	double tmp;
	if (t_1 <= -5e+133) {
		tmp = t_2;
	} else if (t_1 <= 1e+56) {
		tmp = x - ((z * y) / a);
	} else {
		tmp = t_2;
	}
	return tmp;
}
def code(x, y, z, t, a):
	t_1 = ((z - t) * y) / a
	t_2 = (y / a) * (t - z)
	tmp = 0
	if t_1 <= -5e+133:
		tmp = t_2
	elif t_1 <= 1e+56:
		tmp = x - ((z * y) / a)
	else:
		tmp = t_2
	return tmp
function code(x, y, z, t, a)
	t_1 = Float64(Float64(Float64(z - t) * y) / a)
	t_2 = Float64(Float64(y / a) * Float64(t - z))
	tmp = 0.0
	if (t_1 <= -5e+133)
		tmp = t_2;
	elseif (t_1 <= 1e+56)
		tmp = Float64(x - Float64(Float64(z * y) / a));
	else
		tmp = t_2;
	end
	return tmp
end
function tmp_2 = code(x, y, z, t, a)
	t_1 = ((z - t) * y) / a;
	t_2 = (y / a) * (t - z);
	tmp = 0.0;
	if (t_1 <= -5e+133)
		tmp = t_2;
	elseif (t_1 <= 1e+56)
		tmp = x - ((z * y) / a);
	else
		tmp = t_2;
	end
	tmp_2 = tmp;
end
code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(N[(N[(z - t), $MachinePrecision] * y), $MachinePrecision] / a), $MachinePrecision]}, Block[{t$95$2 = N[(N[(y / a), $MachinePrecision] * N[(t - z), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$1, -5e+133], t$95$2, If[LessEqual[t$95$1, 1e+56], N[(x - N[(N[(z * y), $MachinePrecision] / a), $MachinePrecision]), $MachinePrecision], t$95$2]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_1 := \frac{\left(z - t\right) \cdot y}{a}\\
t_2 := \frac{y}{a} \cdot \left(t - z\right)\\
\mathbf{if}\;t\_1 \leq -5 \cdot 10^{+133}:\\
\;\;\;\;t\_2\\

\mathbf{elif}\;t\_1 \leq 10^{+56}:\\
\;\;\;\;x - \frac{z \cdot y}{a}\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (/.f64 (*.f64 y (-.f64 z t)) a) < -4.99999999999999961e133 or 1.00000000000000009e56 < (/.f64 (*.f64 y (-.f64 z t)) a)

    1. Initial program 86.0%

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

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

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

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

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

        \[\leadsto \color{blue}{\left(-1 \cdot \left(z - t\right)\right) \cdot \frac{y}{a}} \]
      5. mul-1-negN/A

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

        \[\leadsto \color{blue}{\left(0 - \left(z - t\right)\right)} \cdot \frac{y}{a} \]
      7. associate-+l-N/A

        \[\leadsto \color{blue}{\left(\left(0 - z\right) + t\right)} \cdot \frac{y}{a} \]
      8. neg-sub0N/A

        \[\leadsto \left(\color{blue}{\left(\mathsf{neg}\left(z\right)\right)} + t\right) \cdot \frac{y}{a} \]
      9. mul-1-negN/A

        \[\leadsto \left(\color{blue}{-1 \cdot z} + t\right) \cdot \frac{y}{a} \]
      10. +-commutativeN/A

        \[\leadsto \color{blue}{\left(t + -1 \cdot z\right)} \cdot \frac{y}{a} \]
      11. mul-1-negN/A

        \[\leadsto \left(t + \color{blue}{\left(\mathsf{neg}\left(z\right)\right)}\right) \cdot \frac{y}{a} \]
      12. sub-negN/A

        \[\leadsto \color{blue}{\left(t - z\right)} \cdot \frac{y}{a} \]
      13. lower--.f64N/A

        \[\leadsto \color{blue}{\left(t - z\right)} \cdot \frac{y}{a} \]
      14. lower-/.f6491.8

        \[\leadsto \left(t - z\right) \cdot \color{blue}{\frac{y}{a}} \]
    5. Applied rewrites91.8%

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

    if -4.99999999999999961e133 < (/.f64 (*.f64 y (-.f64 z t)) a) < 1.00000000000000009e56

    1. Initial program 100.0%

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

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

        \[\leadsto x - \frac{\color{blue}{z \cdot y}}{a} \]
      2. lower-*.f6491.4

        \[\leadsto x - \frac{\color{blue}{z \cdot y}}{a} \]
    5. Applied rewrites91.4%

      \[\leadsto x - \frac{\color{blue}{z \cdot y}}{a} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification91.6%

    \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{\left(z - t\right) \cdot y}{a} \leq -5 \cdot 10^{+133}:\\ \;\;\;\;\frac{y}{a} \cdot \left(t - z\right)\\ \mathbf{elif}\;\frac{\left(z - t\right) \cdot y}{a} \leq 10^{+56}:\\ \;\;\;\;x - \frac{z \cdot y}{a}\\ \mathbf{else}:\\ \;\;\;\;\frac{y}{a} \cdot \left(t - z\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 3: 85.9% accurate, 0.3× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{\left(z - t\right) \cdot y}{a}\\ t_2 := \frac{y}{a} \cdot \left(t - z\right)\\ \mathbf{if}\;t\_1 \leq -4 \cdot 10^{+80}:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;t\_1 \leq 10^{+56}:\\ \;\;\;\;\mathsf{fma}\left(\frac{t}{a}, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;t\_2\\ \end{array} \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (let* ((t_1 (/ (* (- z t) y) a)) (t_2 (* (/ y a) (- t z))))
   (if (<= t_1 -4e+80) t_2 (if (<= t_1 1e+56) (fma (/ t a) y x) t_2))))
double code(double x, double y, double z, double t, double a) {
	double t_1 = ((z - t) * y) / a;
	double t_2 = (y / a) * (t - z);
	double tmp;
	if (t_1 <= -4e+80) {
		tmp = t_2;
	} else if (t_1 <= 1e+56) {
		tmp = fma((t / a), y, x);
	} else {
		tmp = t_2;
	}
	return tmp;
}
function code(x, y, z, t, a)
	t_1 = Float64(Float64(Float64(z - t) * y) / a)
	t_2 = Float64(Float64(y / a) * Float64(t - z))
	tmp = 0.0
	if (t_1 <= -4e+80)
		tmp = t_2;
	elseif (t_1 <= 1e+56)
		tmp = fma(Float64(t / a), y, x);
	else
		tmp = t_2;
	end
	return tmp
end
code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(N[(N[(z - t), $MachinePrecision] * y), $MachinePrecision] / a), $MachinePrecision]}, Block[{t$95$2 = N[(N[(y / a), $MachinePrecision] * N[(t - z), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$1, -4e+80], t$95$2, If[LessEqual[t$95$1, 1e+56], N[(N[(t / a), $MachinePrecision] * y + x), $MachinePrecision], t$95$2]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_1 := \frac{\left(z - t\right) \cdot y}{a}\\
t_2 := \frac{y}{a} \cdot \left(t - z\right)\\
\mathbf{if}\;t\_1 \leq -4 \cdot 10^{+80}:\\
\;\;\;\;t\_2\\

\mathbf{elif}\;t\_1 \leq 10^{+56}:\\
\;\;\;\;\mathsf{fma}\left(\frac{t}{a}, y, x\right)\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (/.f64 (*.f64 y (-.f64 z t)) a) < -4e80 or 1.00000000000000009e56 < (/.f64 (*.f64 y (-.f64 z t)) a)

    1. Initial program 86.5%

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

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

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

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

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

        \[\leadsto \color{blue}{\left(-1 \cdot \left(z - t\right)\right) \cdot \frac{y}{a}} \]
      5. mul-1-negN/A

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

        \[\leadsto \color{blue}{\left(0 - \left(z - t\right)\right)} \cdot \frac{y}{a} \]
      7. associate-+l-N/A

        \[\leadsto \color{blue}{\left(\left(0 - z\right) + t\right)} \cdot \frac{y}{a} \]
      8. neg-sub0N/A

        \[\leadsto \left(\color{blue}{\left(\mathsf{neg}\left(z\right)\right)} + t\right) \cdot \frac{y}{a} \]
      9. mul-1-negN/A

        \[\leadsto \left(\color{blue}{-1 \cdot z} + t\right) \cdot \frac{y}{a} \]
      10. +-commutativeN/A

        \[\leadsto \color{blue}{\left(t + -1 \cdot z\right)} \cdot \frac{y}{a} \]
      11. mul-1-negN/A

        \[\leadsto \left(t + \color{blue}{\left(\mathsf{neg}\left(z\right)\right)}\right) \cdot \frac{y}{a} \]
      12. sub-negN/A

        \[\leadsto \color{blue}{\left(t - z\right)} \cdot \frac{y}{a} \]
      13. lower--.f64N/A

        \[\leadsto \color{blue}{\left(t - z\right)} \cdot \frac{y}{a} \]
      14. lower-/.f6491.4

        \[\leadsto \left(t - z\right) \cdot \color{blue}{\frac{y}{a}} \]
    5. Applied rewrites91.4%

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

    if -4e80 < (/.f64 (*.f64 y (-.f64 z t)) a) < 1.00000000000000009e56

    1. Initial program 100.0%

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

      \[\leadsto \color{blue}{\frac{a \cdot x - y \cdot \left(z - t\right)}{a}} \]
    4. Step-by-step derivation
      1. div-subN/A

        \[\leadsto \color{blue}{\frac{a \cdot x}{a} - \frac{y \cdot \left(z - t\right)}{a}} \]
      2. sub-negN/A

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

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

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

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

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

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

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

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(-1 \cdot \left(z - t\right), \frac{y}{a}, x\right)} \]
      13. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{neg}\left(\left(z - t\right)\right)}, \frac{y}{a}, x\right) \]
      14. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{0 - \left(z - t\right)}, \frac{y}{a}, x\right) \]
      15. associate-+l-N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\left(0 - z\right) + t}, \frac{y}{a}, x\right) \]
      16. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\left(\mathsf{neg}\left(z\right)\right)} + t, \frac{y}{a}, x\right) \]
      17. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{-1 \cdot z} + t, \frac{y}{a}, x\right) \]
      18. +-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{t + -1 \cdot z}, \frac{y}{a}, x\right) \]
      19. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(t + \color{blue}{\left(\mathsf{neg}\left(z\right)\right)}, \frac{y}{a}, x\right) \]
      20. sub-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{t - z}, \frac{y}{a}, x\right) \]
      21. lower--.f64N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{t - z}, \frac{y}{a}, x\right) \]
      22. lower-/.f6496.6

        \[\leadsto \mathsf{fma}\left(t - z, \color{blue}{\frac{y}{a}}, x\right) \]
    5. Applied rewrites96.6%

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

      \[\leadsto \color{blue}{\frac{a \cdot x - y \cdot \left(z - t\right)}{a}} \]
    7. Step-by-step derivation
      1. div-subN/A

        \[\leadsto \color{blue}{\frac{a \cdot x}{a} - \frac{y \cdot \left(z - t\right)}{a}} \]
      2. sub-negN/A

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

        \[\leadsto \frac{\color{blue}{x \cdot a}}{a} + \left(\mathsf{neg}\left(\frac{y \cdot \left(z - t\right)}{a}\right)\right) \]
      4. associate-/l*N/A

        \[\leadsto \color{blue}{x \cdot \frac{a}{a}} + \left(\mathsf{neg}\left(\frac{y \cdot \left(z - t\right)}{a}\right)\right) \]
      5. *-inversesN/A

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

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

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

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

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

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

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(-1 \cdot \frac{z - t}{a}, y, x\right)} \]
      15. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{neg}\left(\frac{z - t}{a}\right)}, y, x\right) \]
      16. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{0 - \frac{z - t}{a}}, y, x\right) \]
      17. div-subN/A

        \[\leadsto \mathsf{fma}\left(0 - \color{blue}{\left(\frac{z}{a} - \frac{t}{a}\right)}, y, x\right) \]
      18. associate-+l-N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\left(0 - \frac{z}{a}\right) + \frac{t}{a}}, y, x\right) \]
      19. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{z}{a}\right)\right)} + \frac{t}{a}, y, x\right) \]
      20. +-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{t}{a} + \left(\mathsf{neg}\left(\frac{z}{a}\right)\right)}, y, x\right) \]
      21. sub-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{t}{a} - \frac{z}{a}}, y, x\right) \]
      22. div-subN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{t - z}{a}}, y, x\right) \]
      23. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{t - z}{a}}, y, x\right) \]
      24. lower--.f64100.0

        \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{t - z}}{a}, y, x\right) \]
    8. Applied rewrites100.0%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{t - z}{a}, y, x\right)} \]
    9. Taylor expanded in z around 0

      \[\leadsto \color{blue}{x - -1 \cdot \frac{t \cdot y}{a}} \]
    10. Step-by-step derivation
      1. sub-negN/A

        \[\leadsto \color{blue}{x + \left(\mathsf{neg}\left(-1 \cdot \frac{t \cdot y}{a}\right)\right)} \]
      2. mul-1-negN/A

        \[\leadsto x + \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{t \cdot y}{a}\right)\right)}\right)\right) \]
      3. remove-double-negN/A

        \[\leadsto x + \color{blue}{\frac{t \cdot y}{a}} \]
      4. +-commutativeN/A

        \[\leadsto \color{blue}{\frac{t \cdot y}{a} + x} \]
      5. associate-*l/N/A

        \[\leadsto \color{blue}{\frac{t}{a} \cdot y} + x \]
      6. lower-fma.f64N/A

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

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{t}{a}}, y, x\right) \]
    11. Applied rewrites91.2%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{t}{a}, y, x\right)} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification91.3%

    \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{\left(z - t\right) \cdot y}{a} \leq -4 \cdot 10^{+80}:\\ \;\;\;\;\frac{y}{a} \cdot \left(t - z\right)\\ \mathbf{elif}\;\frac{\left(z - t\right) \cdot y}{a} \leq 10^{+56}:\\ \;\;\;\;\mathsf{fma}\left(\frac{t}{a}, y, x\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{y}{a} \cdot \left(t - z\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 4: 69.1% accurate, 0.5× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\left(z - t\right) \cdot y}{a} \leq -5 \cdot 10^{+227}:\\ \;\;\;\;\frac{y}{a} \cdot t\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\frac{t}{a}, y, x\right)\\ \end{array} \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (if (<= (/ (* (- z t) y) a) -5e+227) (* (/ y a) t) (fma (/ t a) y x)))
double code(double x, double y, double z, double t, double a) {
	double tmp;
	if ((((z - t) * y) / a) <= -5e+227) {
		tmp = (y / a) * t;
	} else {
		tmp = fma((t / a), y, x);
	}
	return tmp;
}
function code(x, y, z, t, a)
	tmp = 0.0
	if (Float64(Float64(Float64(z - t) * y) / a) <= -5e+227)
		tmp = Float64(Float64(y / a) * t);
	else
		tmp = fma(Float64(t / a), y, x);
	end
	return tmp
end
code[x_, y_, z_, t_, a_] := If[LessEqual[N[(N[(N[(z - t), $MachinePrecision] * y), $MachinePrecision] / a), $MachinePrecision], -5e+227], N[(N[(y / a), $MachinePrecision] * t), $MachinePrecision], N[(N[(t / a), $MachinePrecision] * y + x), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;\frac{\left(z - t\right) \cdot y}{a} \leq -5 \cdot 10^{+227}:\\
\;\;\;\;\frac{y}{a} \cdot t\\

\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(\frac{t}{a}, y, x\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (/.f64 (*.f64 y (-.f64 z t)) a) < -4.9999999999999996e227

    1. Initial program 81.7%

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

      \[\leadsto \color{blue}{\frac{a \cdot x - y \cdot \left(z - t\right)}{a}} \]
    4. Step-by-step derivation
      1. div-subN/A

        \[\leadsto \color{blue}{\frac{a \cdot x}{a} - \frac{y \cdot \left(z - t\right)}{a}} \]
      2. sub-negN/A

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

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

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

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

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

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

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

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(-1 \cdot \left(z - t\right), \frac{y}{a}, x\right)} \]
      13. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{neg}\left(\left(z - t\right)\right)}, \frac{y}{a}, x\right) \]
      14. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{0 - \left(z - t\right)}, \frac{y}{a}, x\right) \]
      15. associate-+l-N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\left(0 - z\right) + t}, \frac{y}{a}, x\right) \]
      16. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\left(\mathsf{neg}\left(z\right)\right)} + t, \frac{y}{a}, x\right) \]
      17. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{-1 \cdot z} + t, \frac{y}{a}, x\right) \]
      18. +-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{t + -1 \cdot z}, \frac{y}{a}, x\right) \]
      19. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(t + \color{blue}{\left(\mathsf{neg}\left(z\right)\right)}, \frac{y}{a}, x\right) \]
      20. sub-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{t - z}, \frac{y}{a}, x\right) \]
      21. lower--.f64N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{t - z}, \frac{y}{a}, x\right) \]
      22. lower-/.f6498.2

        \[\leadsto \mathsf{fma}\left(t - z, \color{blue}{\frac{y}{a}}, x\right) \]
    5. Applied rewrites98.2%

      \[\leadsto \color{blue}{\mathsf{fma}\left(t - z, \frac{y}{a}, x\right)} \]
    6. Taylor expanded in t around inf

      \[\leadsto \color{blue}{\frac{t \cdot y}{a}} \]
    7. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \frac{\color{blue}{y \cdot t}}{a} \]
      2. associate-*l/N/A

        \[\leadsto \color{blue}{\frac{y}{a} \cdot t} \]
      3. lower-*.f64N/A

        \[\leadsto \color{blue}{\frac{y}{a} \cdot t} \]
      4. lower-/.f6465.1

        \[\leadsto \color{blue}{\frac{y}{a}} \cdot t \]
    8. Applied rewrites65.1%

      \[\leadsto \color{blue}{\frac{y}{a} \cdot t} \]

    if -4.9999999999999996e227 < (/.f64 (*.f64 y (-.f64 z t)) a)

    1. Initial program 94.8%

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

      \[\leadsto \color{blue}{\frac{a \cdot x - y \cdot \left(z - t\right)}{a}} \]
    4. Step-by-step derivation
      1. div-subN/A

        \[\leadsto \color{blue}{\frac{a \cdot x}{a} - \frac{y \cdot \left(z - t\right)}{a}} \]
      2. sub-negN/A

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

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

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

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

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

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

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

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(-1 \cdot \left(z - t\right), \frac{y}{a}, x\right)} \]
      13. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{neg}\left(\left(z - t\right)\right)}, \frac{y}{a}, x\right) \]
      14. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{0 - \left(z - t\right)}, \frac{y}{a}, x\right) \]
      15. associate-+l-N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\left(0 - z\right) + t}, \frac{y}{a}, x\right) \]
      16. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\left(\mathsf{neg}\left(z\right)\right)} + t, \frac{y}{a}, x\right) \]
      17. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{-1 \cdot z} + t, \frac{y}{a}, x\right) \]
      18. +-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{t + -1 \cdot z}, \frac{y}{a}, x\right) \]
      19. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(t + \color{blue}{\left(\mathsf{neg}\left(z\right)\right)}, \frac{y}{a}, x\right) \]
      20. sub-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{t - z}, \frac{y}{a}, x\right) \]
      21. lower--.f64N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{t - z}, \frac{y}{a}, x\right) \]
      22. lower-/.f6496.3

        \[\leadsto \mathsf{fma}\left(t - z, \color{blue}{\frac{y}{a}}, x\right) \]
    5. Applied rewrites96.3%

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

      \[\leadsto \color{blue}{\frac{a \cdot x - y \cdot \left(z - t\right)}{a}} \]
    7. Step-by-step derivation
      1. div-subN/A

        \[\leadsto \color{blue}{\frac{a \cdot x}{a} - \frac{y \cdot \left(z - t\right)}{a}} \]
      2. sub-negN/A

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

        \[\leadsto \frac{\color{blue}{x \cdot a}}{a} + \left(\mathsf{neg}\left(\frac{y \cdot \left(z - t\right)}{a}\right)\right) \]
      4. associate-/l*N/A

        \[\leadsto \color{blue}{x \cdot \frac{a}{a}} + \left(\mathsf{neg}\left(\frac{y \cdot \left(z - t\right)}{a}\right)\right) \]
      5. *-inversesN/A

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

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

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

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

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

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

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

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

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

        \[\leadsto \color{blue}{\mathsf{fma}\left(-1 \cdot \frac{z - t}{a}, y, x\right)} \]
      15. mul-1-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{neg}\left(\frac{z - t}{a}\right)}, y, x\right) \]
      16. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{0 - \frac{z - t}{a}}, y, x\right) \]
      17. div-subN/A

        \[\leadsto \mathsf{fma}\left(0 - \color{blue}{\left(\frac{z}{a} - \frac{t}{a}\right)}, y, x\right) \]
      18. associate-+l-N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\left(0 - \frac{z}{a}\right) + \frac{t}{a}}, y, x\right) \]
      19. neg-sub0N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{z}{a}\right)\right)} + \frac{t}{a}, y, x\right) \]
      20. +-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{t}{a} + \left(\mathsf{neg}\left(\frac{z}{a}\right)\right)}, y, x\right) \]
      21. sub-negN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{t}{a} - \frac{z}{a}}, y, x\right) \]
      22. div-subN/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{t - z}{a}}, y, x\right) \]
      23. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{t - z}{a}}, y, x\right) \]
      24. lower--.f6495.7

        \[\leadsto \mathsf{fma}\left(\frac{\color{blue}{t - z}}{a}, y, x\right) \]
    8. Applied rewrites95.7%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{t - z}{a}, y, x\right)} \]
    9. Taylor expanded in z around 0

      \[\leadsto \color{blue}{x - -1 \cdot \frac{t \cdot y}{a}} \]
    10. Step-by-step derivation
      1. sub-negN/A

        \[\leadsto \color{blue}{x + \left(\mathsf{neg}\left(-1 \cdot \frac{t \cdot y}{a}\right)\right)} \]
      2. mul-1-negN/A

        \[\leadsto x + \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{t \cdot y}{a}\right)\right)}\right)\right) \]
      3. remove-double-negN/A

        \[\leadsto x + \color{blue}{\frac{t \cdot y}{a}} \]
      4. +-commutativeN/A

        \[\leadsto \color{blue}{\frac{t \cdot y}{a} + x} \]
      5. associate-*l/N/A

        \[\leadsto \color{blue}{\frac{t}{a} \cdot y} + x \]
      6. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{t}{a}, y, x\right)} \]
      7. lower-/.f6478.4

        \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{t}{a}}, y, x\right) \]
    11. Applied rewrites78.4%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{t}{a}, y, x\right)} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification75.7%

    \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{\left(z - t\right) \cdot y}{a} \leq -5 \cdot 10^{+227}:\\ \;\;\;\;\frac{y}{a} \cdot t\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\frac{t}{a}, y, x\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 5: 77.4% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_1 := \left(-z\right) \cdot \frac{y}{a}\\ \mathbf{if}\;z \leq -6.2 \cdot 10^{+203}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;z \leq 4.5 \cdot 10^{+189}:\\ \;\;\;\;\mathsf{fma}\left(\frac{y}{a}, t, x\right)\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
(FPCore (x y z t a)
 :precision binary64
 (let* ((t_1 (* (- z) (/ y a))))
   (if (<= z -6.2e+203) t_1 (if (<= z 4.5e+189) (fma (/ y a) t x) t_1))))
double code(double x, double y, double z, double t, double a) {
	double t_1 = -z * (y / a);
	double tmp;
	if (z <= -6.2e+203) {
		tmp = t_1;
	} else if (z <= 4.5e+189) {
		tmp = fma((y / a), t, x);
	} else {
		tmp = t_1;
	}
	return tmp;
}
function code(x, y, z, t, a)
	t_1 = Float64(Float64(-z) * Float64(y / a))
	tmp = 0.0
	if (z <= -6.2e+203)
		tmp = t_1;
	elseif (z <= 4.5e+189)
		tmp = fma(Float64(y / a), t, x);
	else
		tmp = t_1;
	end
	return tmp
end
code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[((-z) * N[(y / a), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[z, -6.2e+203], t$95$1, If[LessEqual[z, 4.5e+189], N[(N[(y / a), $MachinePrecision] * t + x), $MachinePrecision], t$95$1]]]
\begin{array}{l}

\\
\begin{array}{l}
t_1 := \left(-z\right) \cdot \frac{y}{a}\\
\mathbf{if}\;z \leq -6.2 \cdot 10^{+203}:\\
\;\;\;\;t\_1\\

\mathbf{elif}\;z \leq 4.5 \cdot 10^{+189}:\\
\;\;\;\;\mathsf{fma}\left(\frac{y}{a}, t, x\right)\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if z < -6.2e203 or 4.49999999999999973e189 < z

    1. Initial program 82.5%

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

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

        \[\leadsto -1 \cdot \frac{\color{blue}{z \cdot y}}{a} \]
      2. associate-*r/N/A

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

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

        \[\leadsto \color{blue}{\left(-1 \cdot z\right) \cdot \frac{y}{a}} \]
      5. mul-1-negN/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(z\right)\right)} \cdot \frac{y}{a} \]
      6. lower-neg.f64N/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(z\right)\right)} \cdot \frac{y}{a} \]
      7. lower-/.f6474.5

        \[\leadsto \left(-z\right) \cdot \color{blue}{\frac{y}{a}} \]
    5. Applied rewrites74.5%

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

    if -6.2e203 < z < 4.49999999999999973e189

    1. Initial program 93.8%

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

      \[\leadsto \color{blue}{x - -1 \cdot \frac{t \cdot y}{a}} \]
    4. Step-by-step derivation
      1. sub-negN/A

        \[\leadsto \color{blue}{x + \left(\mathsf{neg}\left(-1 \cdot \frac{t \cdot y}{a}\right)\right)} \]
      2. mul-1-negN/A

        \[\leadsto x + \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{t \cdot y}{a}\right)\right)}\right)\right) \]
      3. remove-double-negN/A

        \[\leadsto x + \color{blue}{\frac{t \cdot y}{a}} \]
      4. +-commutativeN/A

        \[\leadsto \color{blue}{\frac{t \cdot y}{a} + x} \]
      5. *-commutativeN/A

        \[\leadsto \frac{\color{blue}{y \cdot t}}{a} + x \]
      6. associate-*l/N/A

        \[\leadsto \color{blue}{\frac{y}{a} \cdot t} + x \]
      7. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{y}{a}, t, x\right)} \]
      8. lower-/.f6481.7

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

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

Alternative 6: 97.0% accurate, 1.1× speedup?

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

\\
\mathsf{fma}\left(t - z, \frac{y}{a}, x\right)
\end{array}
Derivation
  1. Initial program 92.2%

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

    \[\leadsto \color{blue}{\frac{a \cdot x - y \cdot \left(z - t\right)}{a}} \]
  4. Step-by-step derivation
    1. div-subN/A

      \[\leadsto \color{blue}{\frac{a \cdot x}{a} - \frac{y \cdot \left(z - t\right)}{a}} \]
    2. sub-negN/A

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

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

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

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

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

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

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

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

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

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

      \[\leadsto \color{blue}{\mathsf{fma}\left(-1 \cdot \left(z - t\right), \frac{y}{a}, x\right)} \]
    13. mul-1-negN/A

      \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{neg}\left(\left(z - t\right)\right)}, \frac{y}{a}, x\right) \]
    14. neg-sub0N/A

      \[\leadsto \mathsf{fma}\left(\color{blue}{0 - \left(z - t\right)}, \frac{y}{a}, x\right) \]
    15. associate-+l-N/A

      \[\leadsto \mathsf{fma}\left(\color{blue}{\left(0 - z\right) + t}, \frac{y}{a}, x\right) \]
    16. neg-sub0N/A

      \[\leadsto \mathsf{fma}\left(\color{blue}{\left(\mathsf{neg}\left(z\right)\right)} + t, \frac{y}{a}, x\right) \]
    17. mul-1-negN/A

      \[\leadsto \mathsf{fma}\left(\color{blue}{-1 \cdot z} + t, \frac{y}{a}, x\right) \]
    18. +-commutativeN/A

      \[\leadsto \mathsf{fma}\left(\color{blue}{t + -1 \cdot z}, \frac{y}{a}, x\right) \]
    19. mul-1-negN/A

      \[\leadsto \mathsf{fma}\left(t + \color{blue}{\left(\mathsf{neg}\left(z\right)\right)}, \frac{y}{a}, x\right) \]
    20. sub-negN/A

      \[\leadsto \mathsf{fma}\left(\color{blue}{t - z}, \frac{y}{a}, x\right) \]
    21. lower--.f64N/A

      \[\leadsto \mathsf{fma}\left(\color{blue}{t - z}, \frac{y}{a}, x\right) \]
    22. lower-/.f6496.7

      \[\leadsto \mathsf{fma}\left(t - z, \color{blue}{\frac{y}{a}}, x\right) \]
  5. Applied rewrites96.7%

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

Alternative 7: 71.5% accurate, 1.3× speedup?

\[\begin{array}{l} \\ \mathsf{fma}\left(\frac{y}{a}, t, x\right) \end{array} \]
(FPCore (x y z t a) :precision binary64 (fma (/ y a) t x))
double code(double x, double y, double z, double t, double a) {
	return fma((y / a), t, x);
}
function code(x, y, z, t, a)
	return fma(Float64(y / a), t, x)
end
code[x_, y_, z_, t_, a_] := N[(N[(y / a), $MachinePrecision] * t + x), $MachinePrecision]
\begin{array}{l}

\\
\mathsf{fma}\left(\frac{y}{a}, t, x\right)
\end{array}
Derivation
  1. Initial program 92.2%

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

    \[\leadsto \color{blue}{x - -1 \cdot \frac{t \cdot y}{a}} \]
  4. Step-by-step derivation
    1. sub-negN/A

      \[\leadsto \color{blue}{x + \left(\mathsf{neg}\left(-1 \cdot \frac{t \cdot y}{a}\right)\right)} \]
    2. mul-1-negN/A

      \[\leadsto x + \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\frac{t \cdot y}{a}\right)\right)}\right)\right) \]
    3. remove-double-negN/A

      \[\leadsto x + \color{blue}{\frac{t \cdot y}{a}} \]
    4. +-commutativeN/A

      \[\leadsto \color{blue}{\frac{t \cdot y}{a} + x} \]
    5. *-commutativeN/A

      \[\leadsto \frac{\color{blue}{y \cdot t}}{a} + x \]
    6. associate-*l/N/A

      \[\leadsto \color{blue}{\frac{y}{a} \cdot t} + x \]
    7. lower-fma.f64N/A

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{y}{a}, t, x\right)} \]
    8. lower-/.f6475.5

      \[\leadsto \mathsf{fma}\left(\color{blue}{\frac{y}{a}}, t, x\right) \]
  5. Applied rewrites75.5%

    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{y}{a}, t, x\right)} \]
  6. Add Preprocessing

Alternative 8: 33.8% accurate, 1.4× speedup?

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

\\
\frac{y}{a} \cdot t
\end{array}
Derivation
  1. Initial program 92.2%

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

    \[\leadsto \color{blue}{\frac{a \cdot x - y \cdot \left(z - t\right)}{a}} \]
  4. Step-by-step derivation
    1. div-subN/A

      \[\leadsto \color{blue}{\frac{a \cdot x}{a} - \frac{y \cdot \left(z - t\right)}{a}} \]
    2. sub-negN/A

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

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

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

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

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

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

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

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

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

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

      \[\leadsto \color{blue}{\mathsf{fma}\left(-1 \cdot \left(z - t\right), \frac{y}{a}, x\right)} \]
    13. mul-1-negN/A

      \[\leadsto \mathsf{fma}\left(\color{blue}{\mathsf{neg}\left(\left(z - t\right)\right)}, \frac{y}{a}, x\right) \]
    14. neg-sub0N/A

      \[\leadsto \mathsf{fma}\left(\color{blue}{0 - \left(z - t\right)}, \frac{y}{a}, x\right) \]
    15. associate-+l-N/A

      \[\leadsto \mathsf{fma}\left(\color{blue}{\left(0 - z\right) + t}, \frac{y}{a}, x\right) \]
    16. neg-sub0N/A

      \[\leadsto \mathsf{fma}\left(\color{blue}{\left(\mathsf{neg}\left(z\right)\right)} + t, \frac{y}{a}, x\right) \]
    17. mul-1-negN/A

      \[\leadsto \mathsf{fma}\left(\color{blue}{-1 \cdot z} + t, \frac{y}{a}, x\right) \]
    18. +-commutativeN/A

      \[\leadsto \mathsf{fma}\left(\color{blue}{t + -1 \cdot z}, \frac{y}{a}, x\right) \]
    19. mul-1-negN/A

      \[\leadsto \mathsf{fma}\left(t + \color{blue}{\left(\mathsf{neg}\left(z\right)\right)}, \frac{y}{a}, x\right) \]
    20. sub-negN/A

      \[\leadsto \mathsf{fma}\left(\color{blue}{t - z}, \frac{y}{a}, x\right) \]
    21. lower--.f64N/A

      \[\leadsto \mathsf{fma}\left(\color{blue}{t - z}, \frac{y}{a}, x\right) \]
    22. lower-/.f6496.7

      \[\leadsto \mathsf{fma}\left(t - z, \color{blue}{\frac{y}{a}}, x\right) \]
  5. Applied rewrites96.7%

    \[\leadsto \color{blue}{\mathsf{fma}\left(t - z, \frac{y}{a}, x\right)} \]
  6. Taylor expanded in t around inf

    \[\leadsto \color{blue}{\frac{t \cdot y}{a}} \]
  7. Step-by-step derivation
    1. *-commutativeN/A

      \[\leadsto \frac{\color{blue}{y \cdot t}}{a} \]
    2. associate-*l/N/A

      \[\leadsto \color{blue}{\frac{y}{a} \cdot t} \]
    3. lower-*.f64N/A

      \[\leadsto \color{blue}{\frac{y}{a} \cdot t} \]
    4. lower-/.f6439.3

      \[\leadsto \color{blue}{\frac{y}{a}} \cdot t \]
  8. Applied rewrites39.3%

    \[\leadsto \color{blue}{\frac{y}{a} \cdot t} \]
  9. Add Preprocessing

Alternative 9: 31.6% accurate, 1.4× speedup?

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

\\
\frac{t}{a} \cdot y
\end{array}
Derivation
  1. Initial program 92.2%

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

    \[\leadsto \color{blue}{\frac{t \cdot y}{a}} \]
  4. Step-by-step derivation
    1. lower-/.f64N/A

      \[\leadsto \color{blue}{\frac{t \cdot y}{a}} \]
    2. lower-*.f6435.4

      \[\leadsto \frac{\color{blue}{t \cdot y}}{a} \]
  5. Applied rewrites35.4%

    \[\leadsto \color{blue}{\frac{t \cdot y}{a}} \]
  6. Step-by-step derivation
    1. Applied rewrites37.5%

      \[\leadsto y \cdot \color{blue}{\frac{t}{a}} \]
    2. Final simplification37.5%

      \[\leadsto \frac{t}{a} \cdot y \]
    3. Add Preprocessing

    Developer Target 1: 99.2% accurate, 0.5× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{a}{z - t}\\ \mathbf{if}\;y < -1.0761266216389975 \cdot 10^{-10}:\\ \;\;\;\;x - \frac{1}{\frac{t\_1}{y}}\\ \mathbf{elif}\;y < 2.894426862792089 \cdot 10^{-49}:\\ \;\;\;\;x - \frac{y \cdot \left(z - t\right)}{a}\\ \mathbf{else}:\\ \;\;\;\;x - \frac{y}{t\_1}\\ \end{array} \end{array} \]
    (FPCore (x y z t a)
     :precision binary64
     (let* ((t_1 (/ a (- z t))))
       (if (< y -1.0761266216389975e-10)
         (- x (/ 1.0 (/ t_1 y)))
         (if (< y 2.894426862792089e-49)
           (- x (/ (* y (- z t)) a))
           (- x (/ y t_1))))))
    double code(double x, double y, double z, double t, double a) {
    	double t_1 = a / (z - t);
    	double tmp;
    	if (y < -1.0761266216389975e-10) {
    		tmp = x - (1.0 / (t_1 / y));
    	} else if (y < 2.894426862792089e-49) {
    		tmp = x - ((y * (z - t)) / a);
    	} else {
    		tmp = x - (y / t_1);
    	}
    	return tmp;
    }
    
    real(8) function code(x, y, z, t, a)
        real(8), intent (in) :: x
        real(8), intent (in) :: y
        real(8), intent (in) :: z
        real(8), intent (in) :: t
        real(8), intent (in) :: a
        real(8) :: t_1
        real(8) :: tmp
        t_1 = a / (z - t)
        if (y < (-1.0761266216389975d-10)) then
            tmp = x - (1.0d0 / (t_1 / y))
        else if (y < 2.894426862792089d-49) then
            tmp = x - ((y * (z - t)) / a)
        else
            tmp = x - (y / t_1)
        end if
        code = tmp
    end function
    
    public static double code(double x, double y, double z, double t, double a) {
    	double t_1 = a / (z - t);
    	double tmp;
    	if (y < -1.0761266216389975e-10) {
    		tmp = x - (1.0 / (t_1 / y));
    	} else if (y < 2.894426862792089e-49) {
    		tmp = x - ((y * (z - t)) / a);
    	} else {
    		tmp = x - (y / t_1);
    	}
    	return tmp;
    }
    
    def code(x, y, z, t, a):
    	t_1 = a / (z - t)
    	tmp = 0
    	if y < -1.0761266216389975e-10:
    		tmp = x - (1.0 / (t_1 / y))
    	elif y < 2.894426862792089e-49:
    		tmp = x - ((y * (z - t)) / a)
    	else:
    		tmp = x - (y / t_1)
    	return tmp
    
    function code(x, y, z, t, a)
    	t_1 = Float64(a / Float64(z - t))
    	tmp = 0.0
    	if (y < -1.0761266216389975e-10)
    		tmp = Float64(x - Float64(1.0 / Float64(t_1 / y)));
    	elseif (y < 2.894426862792089e-49)
    		tmp = Float64(x - Float64(Float64(y * Float64(z - t)) / a));
    	else
    		tmp = Float64(x - Float64(y / t_1));
    	end
    	return tmp
    end
    
    function tmp_2 = code(x, y, z, t, a)
    	t_1 = a / (z - t);
    	tmp = 0.0;
    	if (y < -1.0761266216389975e-10)
    		tmp = x - (1.0 / (t_1 / y));
    	elseif (y < 2.894426862792089e-49)
    		tmp = x - ((y * (z - t)) / a);
    	else
    		tmp = x - (y / t_1);
    	end
    	tmp_2 = tmp;
    end
    
    code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(a / N[(z - t), $MachinePrecision]), $MachinePrecision]}, If[Less[y, -1.0761266216389975e-10], N[(x - N[(1.0 / N[(t$95$1 / y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[Less[y, 2.894426862792089e-49], N[(x - N[(N[(y * N[(z - t), $MachinePrecision]), $MachinePrecision] / a), $MachinePrecision]), $MachinePrecision], N[(x - N[(y / t$95$1), $MachinePrecision]), $MachinePrecision]]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    t_1 := \frac{a}{z - t}\\
    \mathbf{if}\;y < -1.0761266216389975 \cdot 10^{-10}:\\
    \;\;\;\;x - \frac{1}{\frac{t\_1}{y}}\\
    
    \mathbf{elif}\;y < 2.894426862792089 \cdot 10^{-49}:\\
    \;\;\;\;x - \frac{y \cdot \left(z - t\right)}{a}\\
    
    \mathbf{else}:\\
    \;\;\;\;x - \frac{y}{t\_1}\\
    
    
    \end{array}
    \end{array}
    

    Reproduce

    ?
    herbie shell --seed 2024235 
    (FPCore (x y z t a)
      :name "Optimisation.CirclePacking:place from circle-packing-0.1.0.4, F"
      :precision binary64
    
      :alt
      (! :herbie-platform default (if (< y -430450648655599/4000000000000000000000000) (- x (/ 1 (/ (/ a (- z t)) y))) (if (< y 2894426862792089/10000000000000000000000000000000000000000000000000000000000000000) (- x (/ (* y (- z t)) a)) (- x (/ y (/ a (- z t)))))))
    
      (- x (/ (* y (- z t)) a)))