Graphics.Rasterific.Shading:$sradialGradientWithFocusShader from Rasterific-0.6.1, B

Percentage Accurate: 91.1% → 94.4%
Time: 9.9s
Alternatives: 8
Speedup: 0.6×

Specification

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

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

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

The average percentage accuracy by input value. Horizontal axis shows value of an input variable; the variable is choosen in the title. Vertical axis is accuracy; higher is better. Red represent the original program, while blue represents Herbie's suggestion. These can be toggled with buttons below the plot. The line is an average while dots represent individual samples.

Accuracy vs Speed?

Herbie found 8 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: 91.1% accurate, 1.0× speedup?

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

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

Alternative 1: 94.4% accurate, 0.1× speedup?

\[\begin{array}{l} x_m = \left|x\right| \\ \begin{array}{l} \mathbf{if}\;x\_m \leq 5 \cdot 10^{+230}:\\ \;\;\;\;\mathsf{fma}\left(x\_m, x\_m, \left(z \cdot z - t\right) \cdot \left(y \cdot -4\right)\right)\\ \mathbf{else}:\\ \;\;\;\;{x\_m}^{2}\\ \end{array} \end{array} \]
x_m = (fabs.f64 x)
(FPCore (x_m y z t)
 :precision binary64
 (if (<= x_m 5e+230) (fma x_m x_m (* (- (* z z) t) (* y -4.0))) (pow x_m 2.0)))
x_m = fabs(x);
double code(double x_m, double y, double z, double t) {
	double tmp;
	if (x_m <= 5e+230) {
		tmp = fma(x_m, x_m, (((z * z) - t) * (y * -4.0)));
	} else {
		tmp = pow(x_m, 2.0);
	}
	return tmp;
}
x_m = abs(x)
function code(x_m, y, z, t)
	tmp = 0.0
	if (x_m <= 5e+230)
		tmp = fma(x_m, x_m, Float64(Float64(Float64(z * z) - t) * Float64(y * -4.0)));
	else
		tmp = x_m ^ 2.0;
	end
	return tmp
end
x_m = N[Abs[x], $MachinePrecision]
code[x$95$m_, y_, z_, t_] := If[LessEqual[x$95$m, 5e+230], N[(x$95$m * x$95$m + N[(N[(N[(z * z), $MachinePrecision] - t), $MachinePrecision] * N[(y * -4.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[Power[x$95$m, 2.0], $MachinePrecision]]
\begin{array}{l}
x_m = \left|x\right|

\\
\begin{array}{l}
\mathbf{if}\;x\_m \leq 5 \cdot 10^{+230}:\\
\;\;\;\;\mathsf{fma}\left(x\_m, x\_m, \left(z \cdot z - t\right) \cdot \left(y \cdot -4\right)\right)\\

\mathbf{else}:\\
\;\;\;\;{x\_m}^{2}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < 5.0000000000000003e230

    1. Initial program 91.8%

      \[x \cdot x - \left(y \cdot 4\right) \cdot \left(z \cdot z - t\right) \]
    2. Step-by-step derivation
      1. fma-neg94.3%

        \[\leadsto \color{blue}{\mathsf{fma}\left(x, x, -\left(y \cdot 4\right) \cdot \left(z \cdot z - t\right)\right)} \]
      2. distribute-lft-neg-in94.3%

        \[\leadsto \mathsf{fma}\left(x, x, \color{blue}{\left(-y \cdot 4\right) \cdot \left(z \cdot z - t\right)}\right) \]
      3. *-commutative94.3%

        \[\leadsto \mathsf{fma}\left(x, x, \color{blue}{\left(z \cdot z - t\right) \cdot \left(-y \cdot 4\right)}\right) \]
      4. distribute-rgt-neg-in94.3%

        \[\leadsto \mathsf{fma}\left(x, x, \left(z \cdot z - t\right) \cdot \color{blue}{\left(y \cdot \left(-4\right)\right)}\right) \]
      5. metadata-eval94.3%

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

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

    if 5.0000000000000003e230 < x

    1. Initial program 80.0%

      \[x \cdot x - \left(y \cdot 4\right) \cdot \left(z \cdot z - t\right) \]
    2. Add Preprocessing
    3. Taylor expanded in x around 0 80.0%

      \[\leadsto \color{blue}{{x}^{2} - 4 \cdot \left(y \cdot \left({z}^{2} - t\right)\right)} \]
    4. Simplified100.0%

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

Alternative 2: 93.4% accurate, 0.1× speedup?

\[\begin{array}{l} x_m = \left|x\right| \\ \begin{array}{l} \mathbf{if}\;x\_m \leq 1.3 \cdot 10^{+138}:\\ \;\;\;\;x\_m \cdot x\_m + \left(y \cdot 4\right) \cdot \left(t - z \cdot z\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(y \cdot 4, t, x\_m \cdot x\_m\right)\\ \end{array} \end{array} \]
x_m = (fabs.f64 x)
(FPCore (x_m y z t)
 :precision binary64
 (if (<= x_m 1.3e+138)
   (+ (* x_m x_m) (* (* y 4.0) (- t (* z z))))
   (fma (* y 4.0) t (* x_m x_m))))
x_m = fabs(x);
double code(double x_m, double y, double z, double t) {
	double tmp;
	if (x_m <= 1.3e+138) {
		tmp = (x_m * x_m) + ((y * 4.0) * (t - (z * z)));
	} else {
		tmp = fma((y * 4.0), t, (x_m * x_m));
	}
	return tmp;
}
x_m = abs(x)
function code(x_m, y, z, t)
	tmp = 0.0
	if (x_m <= 1.3e+138)
		tmp = Float64(Float64(x_m * x_m) + Float64(Float64(y * 4.0) * Float64(t - Float64(z * z))));
	else
		tmp = fma(Float64(y * 4.0), t, Float64(x_m * x_m));
	end
	return tmp
end
x_m = N[Abs[x], $MachinePrecision]
code[x$95$m_, y_, z_, t_] := If[LessEqual[x$95$m, 1.3e+138], N[(N[(x$95$m * x$95$m), $MachinePrecision] + N[(N[(y * 4.0), $MachinePrecision] * N[(t - N[(z * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(y * 4.0), $MachinePrecision] * t + N[(x$95$m * x$95$m), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
x_m = \left|x\right|

\\
\begin{array}{l}
\mathbf{if}\;x\_m \leq 1.3 \cdot 10^{+138}:\\
\;\;\;\;x\_m \cdot x\_m + \left(y \cdot 4\right) \cdot \left(t - z \cdot z\right)\\

\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(y \cdot 4, t, x\_m \cdot x\_m\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < 1.3e138

    1. Initial program 91.7%

      \[x \cdot x - \left(y \cdot 4\right) \cdot \left(z \cdot z - t\right) \]
    2. Add Preprocessing

    if 1.3e138 < x

    1. Initial program 88.1%

      \[x \cdot x - \left(y \cdot 4\right) \cdot \left(z \cdot z - t\right) \]
    2. Step-by-step derivation
      1. cancel-sign-sub-inv88.1%

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

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

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

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

        \[\leadsto \color{blue}{\left(-\left(y \cdot 4\right) \cdot \left(z \cdot z - t\right)\right)} + x \cdot x \]
      6. distribute-rgt-neg-in88.1%

        \[\leadsto \color{blue}{\left(y \cdot 4\right) \cdot \left(-\left(z \cdot z - t\right)\right)} + x \cdot x \]
      7. fma-define92.9%

        \[\leadsto \color{blue}{\mathsf{fma}\left(y \cdot 4, -\left(z \cdot z - t\right), x \cdot x\right)} \]
      8. sub-neg92.9%

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

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

        \[\leadsto \mathsf{fma}\left(y \cdot 4, \color{blue}{\left(-\left(-t\right)\right) + \left(-z \cdot z\right)}, x \cdot x\right) \]
      11. remove-double-neg92.9%

        \[\leadsto \mathsf{fma}\left(y \cdot 4, \color{blue}{t} + \left(-z \cdot z\right), x \cdot x\right) \]
      12. sub-neg92.9%

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

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

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

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

Alternative 3: 93.1% accurate, 0.1× speedup?

\[\begin{array}{l} x_m = \left|x\right| \\ \begin{array}{l} \mathbf{if}\;x\_m \cdot x\_m \leq 10^{+278}:\\ \;\;\;\;x\_m \cdot x\_m + \left(y \cdot 4\right) \cdot \left(t - z \cdot z\right)\\ \mathbf{else}:\\ \;\;\;\;{x\_m}^{2}\\ \end{array} \end{array} \]
x_m = (fabs.f64 x)
(FPCore (x_m y z t)
 :precision binary64
 (if (<= (* x_m x_m) 1e+278)
   (+ (* x_m x_m) (* (* y 4.0) (- t (* z z))))
   (pow x_m 2.0)))
x_m = fabs(x);
double code(double x_m, double y, double z, double t) {
	double tmp;
	if ((x_m * x_m) <= 1e+278) {
		tmp = (x_m * x_m) + ((y * 4.0) * (t - (z * z)));
	} else {
		tmp = pow(x_m, 2.0);
	}
	return tmp;
}
x_m = abs(x)
real(8) function code(x_m, y, z, t)
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8) :: tmp
    if ((x_m * x_m) <= 1d+278) then
        tmp = (x_m * x_m) + ((y * 4.0d0) * (t - (z * z)))
    else
        tmp = x_m ** 2.0d0
    end if
    code = tmp
end function
x_m = Math.abs(x);
public static double code(double x_m, double y, double z, double t) {
	double tmp;
	if ((x_m * x_m) <= 1e+278) {
		tmp = (x_m * x_m) + ((y * 4.0) * (t - (z * z)));
	} else {
		tmp = Math.pow(x_m, 2.0);
	}
	return tmp;
}
x_m = math.fabs(x)
def code(x_m, y, z, t):
	tmp = 0
	if (x_m * x_m) <= 1e+278:
		tmp = (x_m * x_m) + ((y * 4.0) * (t - (z * z)))
	else:
		tmp = math.pow(x_m, 2.0)
	return tmp
x_m = abs(x)
function code(x_m, y, z, t)
	tmp = 0.0
	if (Float64(x_m * x_m) <= 1e+278)
		tmp = Float64(Float64(x_m * x_m) + Float64(Float64(y * 4.0) * Float64(t - Float64(z * z))));
	else
		tmp = x_m ^ 2.0;
	end
	return tmp
end
x_m = abs(x);
function tmp_2 = code(x_m, y, z, t)
	tmp = 0.0;
	if ((x_m * x_m) <= 1e+278)
		tmp = (x_m * x_m) + ((y * 4.0) * (t - (z * z)));
	else
		tmp = x_m ^ 2.0;
	end
	tmp_2 = tmp;
end
x_m = N[Abs[x], $MachinePrecision]
code[x$95$m_, y_, z_, t_] := If[LessEqual[N[(x$95$m * x$95$m), $MachinePrecision], 1e+278], N[(N[(x$95$m * x$95$m), $MachinePrecision] + N[(N[(y * 4.0), $MachinePrecision] * N[(t - N[(z * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[Power[x$95$m, 2.0], $MachinePrecision]]
\begin{array}{l}
x_m = \left|x\right|

\\
\begin{array}{l}
\mathbf{if}\;x\_m \cdot x\_m \leq 10^{+278}:\\
\;\;\;\;x\_m \cdot x\_m + \left(y \cdot 4\right) \cdot \left(t - z \cdot z\right)\\

\mathbf{else}:\\
\;\;\;\;{x\_m}^{2}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 x x) < 9.99999999999999964e277

    1. Initial program 96.1%

      \[x \cdot x - \left(y \cdot 4\right) \cdot \left(z \cdot z - t\right) \]
    2. Add Preprocessing

    if 9.99999999999999964e277 < (*.f64 x x)

    1. Initial program 80.5%

      \[x \cdot x - \left(y \cdot 4\right) \cdot \left(z \cdot z - t\right) \]
    2. Add Preprocessing
    3. Taylor expanded in x around 0 80.5%

      \[\leadsto \color{blue}{{x}^{2} - 4 \cdot \left(y \cdot \left({z}^{2} - t\right)\right)} \]
    4. Simplified92.7%

      \[\leadsto \color{blue}{{x}^{2}} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification95.0%

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

Alternative 4: 94.1% accurate, 0.6× speedup?

\[\begin{array}{l} x_m = \left|x\right| \\ \begin{array}{l} \mathbf{if}\;z \cdot z \leq 10^{+112}:\\ \;\;\;\;x\_m \cdot x\_m + \left(y \cdot 4\right) \cdot \left(t - z \cdot z\right)\\ \mathbf{else}:\\ \;\;\;\;x\_m \cdot x\_m - z \cdot \left(z \cdot \left(y \cdot 4\right)\right)\\ \end{array} \end{array} \]
x_m = (fabs.f64 x)
(FPCore (x_m y z t)
 :precision binary64
 (if (<= (* z z) 1e+112)
   (+ (* x_m x_m) (* (* y 4.0) (- t (* z z))))
   (- (* x_m x_m) (* z (* z (* y 4.0))))))
x_m = fabs(x);
double code(double x_m, double y, double z, double t) {
	double tmp;
	if ((z * z) <= 1e+112) {
		tmp = (x_m * x_m) + ((y * 4.0) * (t - (z * z)));
	} else {
		tmp = (x_m * x_m) - (z * (z * (y * 4.0)));
	}
	return tmp;
}
x_m = abs(x)
real(8) function code(x_m, y, z, t)
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8) :: tmp
    if ((z * z) <= 1d+112) then
        tmp = (x_m * x_m) + ((y * 4.0d0) * (t - (z * z)))
    else
        tmp = (x_m * x_m) - (z * (z * (y * 4.0d0)))
    end if
    code = tmp
end function
x_m = Math.abs(x);
public static double code(double x_m, double y, double z, double t) {
	double tmp;
	if ((z * z) <= 1e+112) {
		tmp = (x_m * x_m) + ((y * 4.0) * (t - (z * z)));
	} else {
		tmp = (x_m * x_m) - (z * (z * (y * 4.0)));
	}
	return tmp;
}
x_m = math.fabs(x)
def code(x_m, y, z, t):
	tmp = 0
	if (z * z) <= 1e+112:
		tmp = (x_m * x_m) + ((y * 4.0) * (t - (z * z)))
	else:
		tmp = (x_m * x_m) - (z * (z * (y * 4.0)))
	return tmp
x_m = abs(x)
function code(x_m, y, z, t)
	tmp = 0.0
	if (Float64(z * z) <= 1e+112)
		tmp = Float64(Float64(x_m * x_m) + Float64(Float64(y * 4.0) * Float64(t - Float64(z * z))));
	else
		tmp = Float64(Float64(x_m * x_m) - Float64(z * Float64(z * Float64(y * 4.0))));
	end
	return tmp
end
x_m = abs(x);
function tmp_2 = code(x_m, y, z, t)
	tmp = 0.0;
	if ((z * z) <= 1e+112)
		tmp = (x_m * x_m) + ((y * 4.0) * (t - (z * z)));
	else
		tmp = (x_m * x_m) - (z * (z * (y * 4.0)));
	end
	tmp_2 = tmp;
end
x_m = N[Abs[x], $MachinePrecision]
code[x$95$m_, y_, z_, t_] := If[LessEqual[N[(z * z), $MachinePrecision], 1e+112], N[(N[(x$95$m * x$95$m), $MachinePrecision] + N[(N[(y * 4.0), $MachinePrecision] * N[(t - N[(z * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(x$95$m * x$95$m), $MachinePrecision] - N[(z * N[(z * N[(y * 4.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
x_m = \left|x\right|

\\
\begin{array}{l}
\mathbf{if}\;z \cdot z \leq 10^{+112}:\\
\;\;\;\;x\_m \cdot x\_m + \left(y \cdot 4\right) \cdot \left(t - z \cdot z\right)\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 z z) < 9.9999999999999993e111

    1. Initial program 97.9%

      \[x \cdot x - \left(y \cdot 4\right) \cdot \left(z \cdot z - t\right) \]
    2. Add Preprocessing

    if 9.9999999999999993e111 < (*.f64 z z)

    1. Initial program 81.6%

      \[x \cdot x - \left(y \cdot 4\right) \cdot \left(z \cdot z - t\right) \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. *-commutative81.6%

        \[\leadsto x \cdot x - \color{blue}{\left(z \cdot z - t\right) \cdot \left(y \cdot 4\right)} \]
      2. add-sqr-sqrt30.0%

        \[\leadsto x \cdot x - \left(z \cdot z - t\right) \cdot \color{blue}{\left(\sqrt{y \cdot 4} \cdot \sqrt{y \cdot 4}\right)} \]
      3. sqrt-unprod34.8%

        \[\leadsto x \cdot x - \left(z \cdot z - t\right) \cdot \color{blue}{\sqrt{\left(y \cdot 4\right) \cdot \left(y \cdot 4\right)}} \]
      4. swap-sqr34.8%

        \[\leadsto x \cdot x - \left(z \cdot z - t\right) \cdot \sqrt{\color{blue}{\left(y \cdot y\right) \cdot \left(4 \cdot 4\right)}} \]
      5. metadata-eval34.8%

        \[\leadsto x \cdot x - \left(z \cdot z - t\right) \cdot \sqrt{\left(y \cdot y\right) \cdot \color{blue}{16}} \]
      6. metadata-eval34.8%

        \[\leadsto x \cdot x - \left(z \cdot z - t\right) \cdot \sqrt{\left(y \cdot y\right) \cdot \color{blue}{\left(-4 \cdot -4\right)}} \]
      7. swap-sqr34.8%

        \[\leadsto x \cdot x - \left(z \cdot z - t\right) \cdot \sqrt{\color{blue}{\left(y \cdot -4\right) \cdot \left(y \cdot -4\right)}} \]
      8. sqrt-unprod5.7%

        \[\leadsto x \cdot x - \left(z \cdot z - t\right) \cdot \color{blue}{\left(\sqrt{y \cdot -4} \cdot \sqrt{y \cdot -4}\right)} \]
      9. add-sqr-sqrt21.6%

        \[\leadsto x \cdot x - \left(z \cdot z - t\right) \cdot \color{blue}{\left(y \cdot -4\right)} \]
      10. add-sqr-sqrt5.7%

        \[\leadsto x \cdot x - \color{blue}{\sqrt{\left(z \cdot z - t\right) \cdot \left(y \cdot -4\right)} \cdot \sqrt{\left(z \cdot z - t\right) \cdot \left(y \cdot -4\right)}} \]
      11. pow25.7%

        \[\leadsto x \cdot x - \color{blue}{{\left(\sqrt{\left(z \cdot z - t\right) \cdot \left(y \cdot -4\right)}\right)}^{2}} \]
    4. Applied egg-rr30.0%

      \[\leadsto x \cdot x - \color{blue}{{\left(\sqrt{\left(y \cdot 4\right) \cdot \left({z}^{2} - t\right)}\right)}^{2}} \]
    5. Taylor expanded in z around -inf 34.5%

      \[\leadsto x \cdot x - {\color{blue}{\left(-2 \cdot \left(\sqrt{y} \cdot z\right)\right)}}^{2} \]
    6. Step-by-step derivation
      1. *-commutative34.5%

        \[\leadsto x \cdot x - {\left(-2 \cdot \color{blue}{\left(z \cdot \sqrt{y}\right)}\right)}^{2} \]
      2. *-commutative34.5%

        \[\leadsto x \cdot x - {\color{blue}{\left(\left(z \cdot \sqrt{y}\right) \cdot -2\right)}}^{2} \]
      3. associate-*l*34.5%

        \[\leadsto x \cdot x - {\color{blue}{\left(z \cdot \left(\sqrt{y} \cdot -2\right)\right)}}^{2} \]
    7. Simplified34.5%

      \[\leadsto x \cdot x - {\color{blue}{\left(z \cdot \left(\sqrt{y} \cdot -2\right)\right)}}^{2} \]
    8. Step-by-step derivation
      1. unpow234.5%

        \[\leadsto x \cdot x - \color{blue}{\left(z \cdot \left(\sqrt{y} \cdot -2\right)\right) \cdot \left(z \cdot \left(\sqrt{y} \cdot -2\right)\right)} \]
      2. swap-sqr30.0%

        \[\leadsto x \cdot x - \color{blue}{\left(z \cdot z\right) \cdot \left(\left(\sqrt{y} \cdot -2\right) \cdot \left(\sqrt{y} \cdot -2\right)\right)} \]
      3. swap-sqr30.0%

        \[\leadsto x \cdot x - \left(z \cdot z\right) \cdot \color{blue}{\left(\left(\sqrt{y} \cdot \sqrt{y}\right) \cdot \left(-2 \cdot -2\right)\right)} \]
      4. add-sqr-sqrt81.6%

        \[\leadsto x \cdot x - \left(z \cdot z\right) \cdot \left(\color{blue}{y} \cdot \left(-2 \cdot -2\right)\right) \]
      5. metadata-eval81.6%

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

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

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

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

Alternative 5: 78.0% accurate, 0.8× speedup?

\[\begin{array}{l} x_m = \left|x\right| \\ \begin{array}{l} \mathbf{if}\;z \leq 6 \cdot 10^{-33}:\\ \;\;\;\;x\_m \cdot x\_m - y \cdot \left(t \cdot -4\right)\\ \mathbf{else}:\\ \;\;\;\;x\_m \cdot x\_m - z \cdot \left(z \cdot \left(y \cdot 4\right)\right)\\ \end{array} \end{array} \]
x_m = (fabs.f64 x)
(FPCore (x_m y z t)
 :precision binary64
 (if (<= z 6e-33)
   (- (* x_m x_m) (* y (* t -4.0)))
   (- (* x_m x_m) (* z (* z (* y 4.0))))))
x_m = fabs(x);
double code(double x_m, double y, double z, double t) {
	double tmp;
	if (z <= 6e-33) {
		tmp = (x_m * x_m) - (y * (t * -4.0));
	} else {
		tmp = (x_m * x_m) - (z * (z * (y * 4.0)));
	}
	return tmp;
}
x_m = abs(x)
real(8) function code(x_m, y, z, t)
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    real(8) :: tmp
    if (z <= 6d-33) then
        tmp = (x_m * x_m) - (y * (t * (-4.0d0)))
    else
        tmp = (x_m * x_m) - (z * (z * (y * 4.0d0)))
    end if
    code = tmp
end function
x_m = Math.abs(x);
public static double code(double x_m, double y, double z, double t) {
	double tmp;
	if (z <= 6e-33) {
		tmp = (x_m * x_m) - (y * (t * -4.0));
	} else {
		tmp = (x_m * x_m) - (z * (z * (y * 4.0)));
	}
	return tmp;
}
x_m = math.fabs(x)
def code(x_m, y, z, t):
	tmp = 0
	if z <= 6e-33:
		tmp = (x_m * x_m) - (y * (t * -4.0))
	else:
		tmp = (x_m * x_m) - (z * (z * (y * 4.0)))
	return tmp
x_m = abs(x)
function code(x_m, y, z, t)
	tmp = 0.0
	if (z <= 6e-33)
		tmp = Float64(Float64(x_m * x_m) - Float64(y * Float64(t * -4.0)));
	else
		tmp = Float64(Float64(x_m * x_m) - Float64(z * Float64(z * Float64(y * 4.0))));
	end
	return tmp
end
x_m = abs(x);
function tmp_2 = code(x_m, y, z, t)
	tmp = 0.0;
	if (z <= 6e-33)
		tmp = (x_m * x_m) - (y * (t * -4.0));
	else
		tmp = (x_m * x_m) - (z * (z * (y * 4.0)));
	end
	tmp_2 = tmp;
end
x_m = N[Abs[x], $MachinePrecision]
code[x$95$m_, y_, z_, t_] := If[LessEqual[z, 6e-33], N[(N[(x$95$m * x$95$m), $MachinePrecision] - N[(y * N[(t * -4.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(x$95$m * x$95$m), $MachinePrecision] - N[(z * N[(z * N[(y * 4.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
x_m = \left|x\right|

\\
\begin{array}{l}
\mathbf{if}\;z \leq 6 \cdot 10^{-33}:\\
\;\;\;\;x\_m \cdot x\_m - y \cdot \left(t \cdot -4\right)\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if z < 6.0000000000000003e-33

    1. Initial program 93.3%

      \[x \cdot x - \left(y \cdot 4\right) \cdot \left(z \cdot z - t\right) \]
    2. Add Preprocessing
    3. Taylor expanded in z around 0 77.0%

      \[\leadsto x \cdot x - \color{blue}{-4 \cdot \left(t \cdot y\right)} \]
    4. Step-by-step derivation
      1. associate-*r*77.0%

        \[\leadsto x \cdot x - \color{blue}{\left(-4 \cdot t\right) \cdot y} \]
    5. Simplified77.0%

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

    if 6.0000000000000003e-33 < z

    1. Initial program 86.0%

      \[x \cdot x - \left(y \cdot 4\right) \cdot \left(z \cdot z - t\right) \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. *-commutative86.0%

        \[\leadsto x \cdot x - \color{blue}{\left(z \cdot z - t\right) \cdot \left(y \cdot 4\right)} \]
      2. add-sqr-sqrt32.6%

        \[\leadsto x \cdot x - \left(z \cdot z - t\right) \cdot \color{blue}{\left(\sqrt{y \cdot 4} \cdot \sqrt{y \cdot 4}\right)} \]
      3. sqrt-unprod39.5%

        \[\leadsto x \cdot x - \left(z \cdot z - t\right) \cdot \color{blue}{\sqrt{\left(y \cdot 4\right) \cdot \left(y \cdot 4\right)}} \]
      4. swap-sqr39.5%

        \[\leadsto x \cdot x - \left(z \cdot z - t\right) \cdot \sqrt{\color{blue}{\left(y \cdot y\right) \cdot \left(4 \cdot 4\right)}} \]
      5. metadata-eval39.5%

        \[\leadsto x \cdot x - \left(z \cdot z - t\right) \cdot \sqrt{\left(y \cdot y\right) \cdot \color{blue}{16}} \]
      6. metadata-eval39.5%

        \[\leadsto x \cdot x - \left(z \cdot z - t\right) \cdot \sqrt{\left(y \cdot y\right) \cdot \color{blue}{\left(-4 \cdot -4\right)}} \]
      7. swap-sqr39.5%

        \[\leadsto x \cdot x - \left(z \cdot z - t\right) \cdot \sqrt{\color{blue}{\left(y \cdot -4\right) \cdot \left(y \cdot -4\right)}} \]
      8. sqrt-unprod13.2%

        \[\leadsto x \cdot x - \left(z \cdot z - t\right) \cdot \color{blue}{\left(\sqrt{y \cdot -4} \cdot \sqrt{y \cdot -4}\right)} \]
      9. add-sqr-sqrt28.9%

        \[\leadsto x \cdot x - \left(z \cdot z - t\right) \cdot \color{blue}{\left(y \cdot -4\right)} \]
      10. add-sqr-sqrt13.1%

        \[\leadsto x \cdot x - \color{blue}{\sqrt{\left(z \cdot z - t\right) \cdot \left(y \cdot -4\right)} \cdot \sqrt{\left(z \cdot z - t\right) \cdot \left(y \cdot -4\right)}} \]
      11. pow213.1%

        \[\leadsto x \cdot x - \color{blue}{{\left(\sqrt{\left(z \cdot z - t\right) \cdot \left(y \cdot -4\right)}\right)}^{2}} \]
    4. Applied egg-rr32.6%

      \[\leadsto x \cdot x - \color{blue}{{\left(\sqrt{\left(y \cdot 4\right) \cdot \left({z}^{2} - t\right)}\right)}^{2}} \]
    5. Taylor expanded in z around -inf 33.8%

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

        \[\leadsto x \cdot x - {\left(-2 \cdot \color{blue}{\left(z \cdot \sqrt{y}\right)}\right)}^{2} \]
      2. *-commutative33.8%

        \[\leadsto x \cdot x - {\color{blue}{\left(\left(z \cdot \sqrt{y}\right) \cdot -2\right)}}^{2} \]
      3. associate-*l*33.8%

        \[\leadsto x \cdot x - {\color{blue}{\left(z \cdot \left(\sqrt{y} \cdot -2\right)\right)}}^{2} \]
    7. Simplified33.8%

      \[\leadsto x \cdot x - {\color{blue}{\left(z \cdot \left(\sqrt{y} \cdot -2\right)\right)}}^{2} \]
    8. Step-by-step derivation
      1. unpow233.8%

        \[\leadsto x \cdot x - \color{blue}{\left(z \cdot \left(\sqrt{y} \cdot -2\right)\right) \cdot \left(z \cdot \left(\sqrt{y} \cdot -2\right)\right)} \]
      2. swap-sqr30.1%

        \[\leadsto x \cdot x - \color{blue}{\left(z \cdot z\right) \cdot \left(\left(\sqrt{y} \cdot -2\right) \cdot \left(\sqrt{y} \cdot -2\right)\right)} \]
      3. swap-sqr30.1%

        \[\leadsto x \cdot x - \left(z \cdot z\right) \cdot \color{blue}{\left(\left(\sqrt{y} \cdot \sqrt{y}\right) \cdot \left(-2 \cdot -2\right)\right)} \]
      4. add-sqr-sqrt81.1%

        \[\leadsto x \cdot x - \left(z \cdot z\right) \cdot \left(\color{blue}{y} \cdot \left(-2 \cdot -2\right)\right) \]
      5. metadata-eval81.1%

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

        \[\leadsto x \cdot x - \color{blue}{z \cdot \left(z \cdot \left(y \cdot 4\right)\right)} \]
    9. Applied egg-rr88.5%

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq 6 \cdot 10^{-33}:\\ \;\;\;\;x \cdot x - y \cdot \left(t \cdot -4\right)\\ \mathbf{else}:\\ \;\;\;\;x \cdot x - z \cdot \left(z \cdot \left(y \cdot 4\right)\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 6: 66.7% accurate, 1.4× speedup?

\[\begin{array}{l} x_m = \left|x\right| \\ x\_m \cdot x\_m - y \cdot \left(t \cdot -4\right) \end{array} \]
x_m = (fabs.f64 x)
(FPCore (x_m y z t) :precision binary64 (- (* x_m x_m) (* y (* t -4.0))))
x_m = fabs(x);
double code(double x_m, double y, double z, double t) {
	return (x_m * x_m) - (y * (t * -4.0));
}
x_m = abs(x)
real(8) function code(x_m, y, z, t)
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    code = (x_m * x_m) - (y * (t * (-4.0d0)))
end function
x_m = Math.abs(x);
public static double code(double x_m, double y, double z, double t) {
	return (x_m * x_m) - (y * (t * -4.0));
}
x_m = math.fabs(x)
def code(x_m, y, z, t):
	return (x_m * x_m) - (y * (t * -4.0))
x_m = abs(x)
function code(x_m, y, z, t)
	return Float64(Float64(x_m * x_m) - Float64(y * Float64(t * -4.0)))
end
x_m = abs(x);
function tmp = code(x_m, y, z, t)
	tmp = (x_m * x_m) - (y * (t * -4.0));
end
x_m = N[Abs[x], $MachinePrecision]
code[x$95$m_, y_, z_, t_] := N[(N[(x$95$m * x$95$m), $MachinePrecision] - N[(y * N[(t * -4.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
x_m = \left|x\right|

\\
x\_m \cdot x\_m - y \cdot \left(t \cdot -4\right)
\end{array}
Derivation
  1. Initial program 91.1%

    \[x \cdot x - \left(y \cdot 4\right) \cdot \left(z \cdot z - t\right) \]
  2. Add Preprocessing
  3. Taylor expanded in z around 0 68.3%

    \[\leadsto x \cdot x - \color{blue}{-4 \cdot \left(t \cdot y\right)} \]
  4. Step-by-step derivation
    1. associate-*r*68.3%

      \[\leadsto x \cdot x - \color{blue}{\left(-4 \cdot t\right) \cdot y} \]
  5. Simplified68.3%

    \[\leadsto x \cdot x - \color{blue}{\left(-4 \cdot t\right) \cdot y} \]
  6. Final simplification68.3%

    \[\leadsto x \cdot x - y \cdot \left(t \cdot -4\right) \]
  7. Add Preprocessing

Alternative 7: 32.3% accurate, 2.6× speedup?

\[\begin{array}{l} x_m = \left|x\right| \\ 4 \cdot \left(t \cdot y\right) \end{array} \]
x_m = (fabs.f64 x)
(FPCore (x_m y z t) :precision binary64 (* 4.0 (* t y)))
x_m = fabs(x);
double code(double x_m, double y, double z, double t) {
	return 4.0 * (t * y);
}
x_m = abs(x)
real(8) function code(x_m, y, z, t)
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    code = 4.0d0 * (t * y)
end function
x_m = Math.abs(x);
public static double code(double x_m, double y, double z, double t) {
	return 4.0 * (t * y);
}
x_m = math.fabs(x)
def code(x_m, y, z, t):
	return 4.0 * (t * y)
x_m = abs(x)
function code(x_m, y, z, t)
	return Float64(4.0 * Float64(t * y))
end
x_m = abs(x);
function tmp = code(x_m, y, z, t)
	tmp = 4.0 * (t * y);
end
x_m = N[Abs[x], $MachinePrecision]
code[x$95$m_, y_, z_, t_] := N[(4.0 * N[(t * y), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
x_m = \left|x\right|

\\
4 \cdot \left(t \cdot y\right)
\end{array}
Derivation
  1. Initial program 91.1%

    \[x \cdot x - \left(y \cdot 4\right) \cdot \left(z \cdot z - t\right) \]
  2. Add Preprocessing
  3. Taylor expanded in t around inf 28.4%

    \[\leadsto \color{blue}{4 \cdot \left(t \cdot y\right)} \]
  4. Step-by-step derivation
    1. *-commutative28.4%

      \[\leadsto 4 \cdot \color{blue}{\left(y \cdot t\right)} \]
  5. Simplified28.4%

    \[\leadsto \color{blue}{4 \cdot \left(y \cdot t\right)} \]
  6. Final simplification28.4%

    \[\leadsto 4 \cdot \left(t \cdot y\right) \]
  7. Add Preprocessing

Alternative 8: 3.4% accurate, 13.0× speedup?

\[\begin{array}{l} x_m = \left|x\right| \\ 0 \end{array} \]
x_m = (fabs.f64 x)
(FPCore (x_m y z t) :precision binary64 0.0)
x_m = fabs(x);
double code(double x_m, double y, double z, double t) {
	return 0.0;
}
x_m = abs(x)
real(8) function code(x_m, y, z, t)
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    code = 0.0d0
end function
x_m = Math.abs(x);
public static double code(double x_m, double y, double z, double t) {
	return 0.0;
}
x_m = math.fabs(x)
def code(x_m, y, z, t):
	return 0.0
x_m = abs(x)
function code(x_m, y, z, t)
	return 0.0
end
x_m = abs(x);
function tmp = code(x_m, y, z, t)
	tmp = 0.0;
end
x_m = N[Abs[x], $MachinePrecision]
code[x$95$m_, y_, z_, t_] := 0.0
\begin{array}{l}
x_m = \left|x\right|

\\
0
\end{array}
Derivation
  1. Initial program 91.1%

    \[x \cdot x - \left(y \cdot 4\right) \cdot \left(z \cdot z - t\right) \]
  2. Add Preprocessing
  3. Taylor expanded in x around 0 62.5%

    \[\leadsto \color{blue}{-4 \cdot \left(y \cdot \left({z}^{2} - t\right)\right)} \]
  4. Simplified3.6%

    \[\leadsto \color{blue}{0} \]
  5. Add Preprocessing

Developer target: 91.1% accurate, 1.0× speedup?

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

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

Reproduce

?
herbie shell --seed 2024106 
(FPCore (x y z t)
  :name "Graphics.Rasterific.Shading:$sradialGradientWithFocusShader from Rasterific-0.6.1, B"
  :precision binary64

  :alt
  (- (* x x) (* 4.0 (* y (- (* z z) t))))

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