Codec.Picture.Jpg.FastDct:referenceDct from JuicyPixels-3.2.6.1

Percentage Accurate: 27.9% → 32.3%
Time: 6.9s
Alternatives: 9
Speedup: 2.6×

Specification

?
\[\begin{array}{l} \\ \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \end{array} \]
(FPCore (x y z t a b)
 :precision binary64
 (*
  (* x (cos (/ (* (* (+ (* y 2.0) 1.0) z) t) 16.0)))
  (cos (/ (* (* (+ (* a 2.0) 1.0) b) t) 16.0))))
double code(double x, double y, double z, double t, double a, double b) {
	return (x * cos((((((y * 2.0) + 1.0) * z) * t) / 16.0))) * cos((((((a * 2.0) + 1.0) * b) * t) / 16.0));
}
module fmin_fmax_functions
    implicit none
    private
    public fmax
    public fmin

    interface fmax
        module procedure fmax88
        module procedure fmax44
        module procedure fmax84
        module procedure fmax48
    end interface
    interface fmin
        module procedure fmin88
        module procedure fmin44
        module procedure fmin84
        module procedure fmin48
    end interface
contains
    real(8) function fmax88(x, y) result (res)
        real(8), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(x, max(x, y), y /= y), x /= x)
    end function
    real(4) function fmax44(x, y) result (res)
        real(4), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(y, merge(x, max(x, y), y /= y), x /= x)
    end function
    real(8) function fmax84(x, y) result(res)
        real(8), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
    end function
    real(8) function fmax48(x, y) result(res)
        real(4), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
    end function
    real(8) function fmin88(x, y) result (res)
        real(8), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(x, min(x, y), y /= y), x /= x)
    end function
    real(4) function fmin44(x, y) result (res)
        real(4), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(y, merge(x, min(x, y), y /= y), x /= x)
    end function
    real(8) function fmin84(x, y) result(res)
        real(8), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
    end function
    real(8) function fmin48(x, y) result(res)
        real(4), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
    end function
end module

real(8) function code(x, y, z, t, a, b)
use fmin_fmax_functions
    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), intent (in) :: b
    code = (x * cos((((((y * 2.0d0) + 1.0d0) * z) * t) / 16.0d0))) * cos((((((a * 2.0d0) + 1.0d0) * b) * t) / 16.0d0))
end function
public static double code(double x, double y, double z, double t, double a, double b) {
	return (x * Math.cos((((((y * 2.0) + 1.0) * z) * t) / 16.0))) * Math.cos((((((a * 2.0) + 1.0) * b) * t) / 16.0));
}
def code(x, y, z, t, a, b):
	return (x * math.cos((((((y * 2.0) + 1.0) * z) * t) / 16.0))) * math.cos((((((a * 2.0) + 1.0) * b) * t) / 16.0))
function code(x, y, z, t, a, b)
	return Float64(Float64(x * cos(Float64(Float64(Float64(Float64(Float64(y * 2.0) + 1.0) * z) * t) / 16.0))) * cos(Float64(Float64(Float64(Float64(Float64(a * 2.0) + 1.0) * b) * t) / 16.0)))
end
function tmp = code(x, y, z, t, a, b)
	tmp = (x * cos((((((y * 2.0) + 1.0) * z) * t) / 16.0))) * cos((((((a * 2.0) + 1.0) * b) * t) / 16.0));
end
code[x_, y_, z_, t_, a_, b_] := N[(N[(x * N[Cos[N[(N[(N[(N[(N[(y * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * z), $MachinePrecision] * t), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Cos[N[(N[(N[(N[(N[(a * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * b), $MachinePrecision] * t), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)
\end{array}

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: 27.9% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \end{array} \]
(FPCore (x y z t a b)
 :precision binary64
 (*
  (* x (cos (/ (* (* (+ (* y 2.0) 1.0) z) t) 16.0)))
  (cos (/ (* (* (+ (* a 2.0) 1.0) b) t) 16.0))))
double code(double x, double y, double z, double t, double a, double b) {
	return (x * cos((((((y * 2.0) + 1.0) * z) * t) / 16.0))) * cos((((((a * 2.0) + 1.0) * b) * t) / 16.0));
}
module fmin_fmax_functions
    implicit none
    private
    public fmax
    public fmin

    interface fmax
        module procedure fmax88
        module procedure fmax44
        module procedure fmax84
        module procedure fmax48
    end interface
    interface fmin
        module procedure fmin88
        module procedure fmin44
        module procedure fmin84
        module procedure fmin48
    end interface
contains
    real(8) function fmax88(x, y) result (res)
        real(8), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(x, max(x, y), y /= y), x /= x)
    end function
    real(4) function fmax44(x, y) result (res)
        real(4), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(y, merge(x, max(x, y), y /= y), x /= x)
    end function
    real(8) function fmax84(x, y) result(res)
        real(8), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
    end function
    real(8) function fmax48(x, y) result(res)
        real(4), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
    end function
    real(8) function fmin88(x, y) result (res)
        real(8), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(x, min(x, y), y /= y), x /= x)
    end function
    real(4) function fmin44(x, y) result (res)
        real(4), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(y, merge(x, min(x, y), y /= y), x /= x)
    end function
    real(8) function fmin84(x, y) result(res)
        real(8), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
    end function
    real(8) function fmin48(x, y) result(res)
        real(4), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
    end function
end module

real(8) function code(x, y, z, t, a, b)
use fmin_fmax_functions
    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), intent (in) :: b
    code = (x * cos((((((y * 2.0d0) + 1.0d0) * z) * t) / 16.0d0))) * cos((((((a * 2.0d0) + 1.0d0) * b) * t) / 16.0d0))
end function
public static double code(double x, double y, double z, double t, double a, double b) {
	return (x * Math.cos((((((y * 2.0) + 1.0) * z) * t) / 16.0))) * Math.cos((((((a * 2.0) + 1.0) * b) * t) / 16.0));
}
def code(x, y, z, t, a, b):
	return (x * math.cos((((((y * 2.0) + 1.0) * z) * t) / 16.0))) * math.cos((((((a * 2.0) + 1.0) * b) * t) / 16.0))
function code(x, y, z, t, a, b)
	return Float64(Float64(x * cos(Float64(Float64(Float64(Float64(Float64(y * 2.0) + 1.0) * z) * t) / 16.0))) * cos(Float64(Float64(Float64(Float64(Float64(a * 2.0) + 1.0) * b) * t) / 16.0)))
end
function tmp = code(x, y, z, t, a, b)
	tmp = (x * cos((((((y * 2.0) + 1.0) * z) * t) / 16.0))) * cos((((((a * 2.0) + 1.0) * b) * t) / 16.0));
end
code[x_, y_, z_, t_, a_, b_] := N[(N[(x * N[Cos[N[(N[(N[(N[(N[(y * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * z), $MachinePrecision] * t), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Cos[N[(N[(N[(N[(N[(a * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * b), $MachinePrecision] * t), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)
\end{array}

Alternative 1: 32.3% accurate, 0.5× speedup?

\[\begin{array}{l} z_m = \left|z\right| \\ t_m = \left|t\right| \\ \begin{array}{l} t_1 := \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t\_m}{16}\right)\\ \mathbf{if}\;\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\_m\right) \cdot t\_m}{16}\right)\right) \cdot t\_1 \leq 5 \cdot 10^{+300}:\\ \;\;\;\;\left(x \cdot \sin \left(\mathsf{fma}\left(-0.0625, t\_m \cdot \left(z\_m \cdot \mathsf{fma}\left(2, y, 1\right)\right), \pi \cdot 0.5\right)\right)\right) \cdot t\_1\\ \mathbf{else}:\\ \;\;\;\;\sin \left(\pi \cdot 0.5\right) \cdot x\\ \end{array} \end{array} \]
z_m = (fabs.f64 z)
t_m = (fabs.f64 t)
(FPCore (x y z_m t_m a b)
 :precision binary64
 (let* ((t_1 (cos (/ (* (* (+ (* a 2.0) 1.0) b) t_m) 16.0))))
   (if (<=
        (* (* x (cos (/ (* (* (+ (* y 2.0) 1.0) z_m) t_m) 16.0))) t_1)
        5e+300)
     (*
      (* x (sin (fma -0.0625 (* t_m (* z_m (fma 2.0 y 1.0))) (* PI 0.5))))
      t_1)
     (* (sin (* PI 0.5)) x))))
z_m = fabs(z);
t_m = fabs(t);
double code(double x, double y, double z_m, double t_m, double a, double b) {
	double t_1 = cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0));
	double tmp;
	if (((x * cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * t_1) <= 5e+300) {
		tmp = (x * sin(fma(-0.0625, (t_m * (z_m * fma(2.0, y, 1.0))), (((double) M_PI) * 0.5)))) * t_1;
	} else {
		tmp = sin((((double) M_PI) * 0.5)) * x;
	}
	return tmp;
}
z_m = abs(z)
t_m = abs(t)
function code(x, y, z_m, t_m, a, b)
	t_1 = cos(Float64(Float64(Float64(Float64(Float64(a * 2.0) + 1.0) * b) * t_m) / 16.0))
	tmp = 0.0
	if (Float64(Float64(x * cos(Float64(Float64(Float64(Float64(Float64(y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * t_1) <= 5e+300)
		tmp = Float64(Float64(x * sin(fma(-0.0625, Float64(t_m * Float64(z_m * fma(2.0, y, 1.0))), Float64(pi * 0.5)))) * t_1);
	else
		tmp = Float64(sin(Float64(pi * 0.5)) * x);
	end
	return tmp
end
z_m = N[Abs[z], $MachinePrecision]
t_m = N[Abs[t], $MachinePrecision]
code[x_, y_, z$95$m_, t$95$m_, a_, b_] := Block[{t$95$1 = N[Cos[N[(N[(N[(N[(N[(a * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * b), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]}, If[LessEqual[N[(N[(x * N[Cos[N[(N[(N[(N[(N[(y * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * z$95$m), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision], 5e+300], N[(N[(x * N[Sin[N[(-0.0625 * N[(t$95$m * N[(z$95$m * N[(2.0 * y + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(Pi * 0.5), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision], N[(N[Sin[N[(Pi * 0.5), $MachinePrecision]], $MachinePrecision] * x), $MachinePrecision]]]
\begin{array}{l}
z_m = \left|z\right|
\\
t_m = \left|t\right|

\\
\begin{array}{l}
t_1 := \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t\_m}{16}\right)\\
\mathbf{if}\;\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\_m\right) \cdot t\_m}{16}\right)\right) \cdot t\_1 \leq 5 \cdot 10^{+300}:\\
\;\;\;\;\left(x \cdot \sin \left(\mathsf{fma}\left(-0.0625, t\_m \cdot \left(z\_m \cdot \mathsf{fma}\left(2, y, 1\right)\right), \pi \cdot 0.5\right)\right)\right) \cdot t\_1\\

\mathbf{else}:\\
\;\;\;\;\sin \left(\pi \cdot 0.5\right) \cdot x\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 (*.f64 x (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 y #s(literal 2 binary64)) #s(literal 1 binary64)) z) t) #s(literal 16 binary64)))) (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 a #s(literal 2 binary64)) #s(literal 1 binary64)) b) t) #s(literal 16 binary64)))) < 5.00000000000000026e300

    1. Initial program 27.9%

      \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. Step-by-step derivation
      1. lift-cos.f64N/A

        \[\leadsto \left(x \cdot \color{blue}{\cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      2. cos-neg-revN/A

        \[\leadsto \left(x \cdot \color{blue}{\cos \left(\mathsf{neg}\left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      3. sin-+PI/2-revN/A

        \[\leadsto \left(x \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      4. lower-sin.f64N/A

        \[\leadsto \left(x \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      5. lift-/.f64N/A

        \[\leadsto \left(x \cdot \sin \left(\left(\mathsf{neg}\left(\color{blue}{\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      6. mult-flipN/A

        \[\leadsto \left(x \cdot \sin \left(\left(\mathsf{neg}\left(\color{blue}{\left(\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t\right) \cdot \frac{1}{16}}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      7. *-commutativeN/A

        \[\leadsto \left(x \cdot \sin \left(\left(\mathsf{neg}\left(\color{blue}{\frac{1}{16} \cdot \left(\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t\right)}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      8. distribute-lft-neg-inN/A

        \[\leadsto \left(x \cdot \sin \left(\color{blue}{\left(\mathsf{neg}\left(\frac{1}{16}\right)\right) \cdot \left(\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t\right)} + \frac{\mathsf{PI}\left(\right)}{2}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      9. distribute-neg-frac2N/A

        \[\leadsto \left(x \cdot \sin \left(\color{blue}{\frac{1}{\mathsf{neg}\left(16\right)}} \cdot \left(\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      10. lower-fma.f64N/A

        \[\leadsto \left(x \cdot \sin \color{blue}{\left(\mathsf{fma}\left(\frac{1}{\mathsf{neg}\left(16\right)}, \left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t, \frac{\mathsf{PI}\left(\right)}{2}\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    3. Applied rewrites27.8%

      \[\leadsto \left(x \cdot \color{blue}{\sin \left(\mathsf{fma}\left(-0.0625, t \cdot \left(z \cdot \mathsf{fma}\left(2, y, 1\right)\right), \pi \cdot 0.5\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]

    if 5.00000000000000026e300 < (*.f64 (*.f64 x (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 y #s(literal 2 binary64)) #s(literal 1 binary64)) z) t) #s(literal 16 binary64)))) (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 a #s(literal 2 binary64)) #s(literal 1 binary64)) b) t) #s(literal 16 binary64))))

    1. Initial program 27.9%

      \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. Taylor expanded in y around 0

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \color{blue}{\left(t \cdot z\right)}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      2. lower-*.f6428.6

        \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot \color{blue}{z}\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    4. Applied rewrites28.6%

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(0.0625 \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    5. Step-by-step derivation
      1. lift-cos.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)} \]
      2. cos-neg-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right)} \]
      3. sin-+PI/2-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
      4. lower-sin.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
    6. Applied rewrites28.8%

      \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\mathsf{fma}\left(-0.0625, \mathsf{fma}\left(a + a, t, t\right) \cdot b, \pi \cdot 0.5\right)\right)} \]
    7. Taylor expanded in t around 0

      \[\leadsto \color{blue}{x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
    8. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
      2. lower-sin.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      3. lower-*.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      4. lower-PI.f6431.0

        \[\leadsto x \cdot \sin \left(0.5 \cdot \pi\right) \]
    9. Applied rewrites31.0%

      \[\leadsto \color{blue}{x \cdot \sin \left(0.5 \cdot \pi\right)} \]
    10. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \pi\right)} \]
      2. *-commutativeN/A

        \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot \color{blue}{x} \]
      3. lower-*.f6431.0

        \[\leadsto \sin \left(0.5 \cdot \pi\right) \cdot \color{blue}{x} \]
      4. lift-*.f64N/A

        \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot x \]
      5. *-commutativeN/A

        \[\leadsto \sin \left(\pi \cdot \frac{1}{2}\right) \cdot x \]
      6. lower-*.f6431.0

        \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot x \]
    11. Applied rewrites31.0%

      \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot \color{blue}{x} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 2: 32.0% accurate, 0.5× speedup?

\[\begin{array}{l} z_m = \left|z\right| \\ t_m = \left|t\right| \\ \begin{array}{l} \mathbf{if}\;\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\_m\right) \cdot t\_m}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t\_m}{16}\right) \leq 10^{+230}:\\ \;\;\;\;\left(x \cdot \cos \left(0.0625 \cdot \left(t\_m \cdot z\_m\right)\right)\right) \cdot \sin \left(\mathsf{fma}\left(\left(b \cdot t\_m\right) \cdot -0.0625, \mathsf{fma}\left(a, 2, 1\right), 0.5 \cdot \pi\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\sin \left(\pi \cdot 0.5\right) \cdot x\\ \end{array} \end{array} \]
z_m = (fabs.f64 z)
t_m = (fabs.f64 t)
(FPCore (x y z_m t_m a b)
 :precision binary64
 (if (<=
      (*
       (* x (cos (/ (* (* (+ (* y 2.0) 1.0) z_m) t_m) 16.0)))
       (cos (/ (* (* (+ (* a 2.0) 1.0) b) t_m) 16.0)))
      1e+230)
   (*
    (* x (cos (* 0.0625 (* t_m z_m))))
    (sin (fma (* (* b t_m) -0.0625) (fma a 2.0 1.0) (* 0.5 PI))))
   (* (sin (* PI 0.5)) x)))
z_m = fabs(z);
t_m = fabs(t);
double code(double x, double y, double z_m, double t_m, double a, double b) {
	double tmp;
	if (((x * cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+230) {
		tmp = (x * cos((0.0625 * (t_m * z_m)))) * sin(fma(((b * t_m) * -0.0625), fma(a, 2.0, 1.0), (0.5 * ((double) M_PI))));
	} else {
		tmp = sin((((double) M_PI) * 0.5)) * x;
	}
	return tmp;
}
z_m = abs(z)
t_m = abs(t)
function code(x, y, z_m, t_m, a, b)
	tmp = 0.0
	if (Float64(Float64(x * cos(Float64(Float64(Float64(Float64(Float64(y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * cos(Float64(Float64(Float64(Float64(Float64(a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+230)
		tmp = Float64(Float64(x * cos(Float64(0.0625 * Float64(t_m * z_m)))) * sin(fma(Float64(Float64(b * t_m) * -0.0625), fma(a, 2.0, 1.0), Float64(0.5 * pi))));
	else
		tmp = Float64(sin(Float64(pi * 0.5)) * x);
	end
	return tmp
end
z_m = N[Abs[z], $MachinePrecision]
t_m = N[Abs[t], $MachinePrecision]
code[x_, y_, z$95$m_, t$95$m_, a_, b_] := If[LessEqual[N[(N[(x * N[Cos[N[(N[(N[(N[(N[(y * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * z$95$m), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Cos[N[(N[(N[(N[(N[(a * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * b), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 1e+230], N[(N[(x * N[Cos[N[(0.0625 * N[(t$95$m * z$95$m), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Sin[N[(N[(N[(b * t$95$m), $MachinePrecision] * -0.0625), $MachinePrecision] * N[(a * 2.0 + 1.0), $MachinePrecision] + N[(0.5 * Pi), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[(N[Sin[N[(Pi * 0.5), $MachinePrecision]], $MachinePrecision] * x), $MachinePrecision]]
\begin{array}{l}
z_m = \left|z\right|
\\
t_m = \left|t\right|

\\
\begin{array}{l}
\mathbf{if}\;\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\_m\right) \cdot t\_m}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t\_m}{16}\right) \leq 10^{+230}:\\
\;\;\;\;\left(x \cdot \cos \left(0.0625 \cdot \left(t\_m \cdot z\_m\right)\right)\right) \cdot \sin \left(\mathsf{fma}\left(\left(b \cdot t\_m\right) \cdot -0.0625, \mathsf{fma}\left(a, 2, 1\right), 0.5 \cdot \pi\right)\right)\\

\mathbf{else}:\\
\;\;\;\;\sin \left(\pi \cdot 0.5\right) \cdot x\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 (*.f64 x (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 y #s(literal 2 binary64)) #s(literal 1 binary64)) z) t) #s(literal 16 binary64)))) (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 a #s(literal 2 binary64)) #s(literal 1 binary64)) b) t) #s(literal 16 binary64)))) < 1.0000000000000001e230

    1. Initial program 27.9%

      \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. Taylor expanded in y around 0

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \color{blue}{\left(t \cdot z\right)}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      2. lower-*.f6428.6

        \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot \color{blue}{z}\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    4. Applied rewrites28.6%

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(0.0625 \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    5. Step-by-step derivation
      1. lift-cos.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)} \]
      2. cos-neg-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right)} \]
      3. sin-+PI/2-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
      4. lower-sin.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
    6. Applied rewrites28.8%

      \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\mathsf{fma}\left(-0.0625, \mathsf{fma}\left(a + a, t, t\right) \cdot b, \pi \cdot 0.5\right)\right)} \]
    7. Step-by-step derivation
      1. lift-fma.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \color{blue}{\left(\frac{-1}{16} \cdot \left(\mathsf{fma}\left(a + a, t, t\right) \cdot b\right) + \pi \cdot \frac{1}{2}\right)} \]
      2. lift-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\frac{-1}{16} \cdot \color{blue}{\left(\mathsf{fma}\left(a + a, t, t\right) \cdot b\right)} + \pi \cdot \frac{1}{2}\right) \]
      3. lift-fma.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\frac{-1}{16} \cdot \left(\color{blue}{\left(\left(a + a\right) \cdot t + t\right)} \cdot b\right) + \pi \cdot \frac{1}{2}\right) \]
      4. lift-+.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\frac{-1}{16} \cdot \left(\left(\color{blue}{\left(a + a\right)} \cdot t + t\right) \cdot b\right) + \pi \cdot \frac{1}{2}\right) \]
      5. count-2-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\frac{-1}{16} \cdot \left(\left(\color{blue}{\left(2 \cdot a\right)} \cdot t + t\right) \cdot b\right) + \pi \cdot \frac{1}{2}\right) \]
      6. distribute-lft1-inN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\frac{-1}{16} \cdot \left(\color{blue}{\left(\left(2 \cdot a + 1\right) \cdot t\right)} \cdot b\right) + \pi \cdot \frac{1}{2}\right) \]
      7. +-commutativeN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\frac{-1}{16} \cdot \left(\left(\color{blue}{\left(1 + 2 \cdot a\right)} \cdot t\right) \cdot b\right) + \pi \cdot \frac{1}{2}\right) \]
      8. *-commutativeN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\frac{-1}{16} \cdot \left(\color{blue}{\left(t \cdot \left(1 + 2 \cdot a\right)\right)} \cdot b\right) + \pi \cdot \frac{1}{2}\right) \]
      9. *-commutativeN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\frac{-1}{16} \cdot \color{blue}{\left(b \cdot \left(t \cdot \left(1 + 2 \cdot a\right)\right)\right)} + \pi \cdot \frac{1}{2}\right) \]
      10. associate-*r*N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\frac{-1}{16} \cdot \color{blue}{\left(\left(b \cdot t\right) \cdot \left(1 + 2 \cdot a\right)\right)} + \pi \cdot \frac{1}{2}\right) \]
      11. lift-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\frac{-1}{16} \cdot \left(\color{blue}{\left(b \cdot t\right)} \cdot \left(1 + 2 \cdot a\right)\right) + \pi \cdot \frac{1}{2}\right) \]
      12. associate-*r*N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\color{blue}{\left(\frac{-1}{16} \cdot \left(b \cdot t\right)\right) \cdot \left(1 + 2 \cdot a\right)} + \pi \cdot \frac{1}{2}\right) \]
      13. metadata-evalN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\left(\color{blue}{\left(\mathsf{neg}\left(\frac{1}{16}\right)\right)} \cdot \left(b \cdot t\right)\right) \cdot \left(1 + 2 \cdot a\right) + \pi \cdot \frac{1}{2}\right) \]
      14. distribute-lft-neg-inN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\color{blue}{\left(\mathsf{neg}\left(\frac{1}{16} \cdot \left(b \cdot t\right)\right)\right)} \cdot \left(1 + 2 \cdot a\right) + \pi \cdot \frac{1}{2}\right) \]
      15. lift-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\left(\mathsf{neg}\left(\color{blue}{\frac{1}{16} \cdot \left(b \cdot t\right)}\right)\right) \cdot \left(1 + 2 \cdot a\right) + \pi \cdot \frac{1}{2}\right) \]
      16. lift-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\left(\mathsf{neg}\left(\frac{1}{16} \cdot \left(b \cdot t\right)\right)\right) \cdot \left(1 + 2 \cdot a\right) + \color{blue}{\pi \cdot \frac{1}{2}}\right) \]
      17. metadata-evalN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\left(\mathsf{neg}\left(\frac{1}{16} \cdot \left(b \cdot t\right)\right)\right) \cdot \left(1 + 2 \cdot a\right) + \pi \cdot \color{blue}{\frac{1}{2}}\right) \]
      18. mult-flipN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\left(\mathsf{neg}\left(\frac{1}{16} \cdot \left(b \cdot t\right)\right)\right) \cdot \left(1 + 2 \cdot a\right) + \color{blue}{\frac{\pi}{2}}\right) \]
      19. lift-PI.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \left(\left(\mathsf{neg}\left(\frac{1}{16} \cdot \left(b \cdot t\right)\right)\right) \cdot \left(1 + 2 \cdot a\right) + \frac{\color{blue}{\mathsf{PI}\left(\right)}}{2}\right) \]
    8. Applied rewrites29.1%

      \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot z\right)\right)\right) \cdot \sin \color{blue}{\left(\mathsf{fma}\left(\left(b \cdot t\right) \cdot -0.0625, \mathsf{fma}\left(a, 2, 1\right), 0.5 \cdot \pi\right)\right)} \]

    if 1.0000000000000001e230 < (*.f64 (*.f64 x (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 y #s(literal 2 binary64)) #s(literal 1 binary64)) z) t) #s(literal 16 binary64)))) (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 a #s(literal 2 binary64)) #s(literal 1 binary64)) b) t) #s(literal 16 binary64))))

    1. Initial program 27.9%

      \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. Taylor expanded in y around 0

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \color{blue}{\left(t \cdot z\right)}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      2. lower-*.f6428.6

        \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot \color{blue}{z}\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    4. Applied rewrites28.6%

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(0.0625 \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    5. Step-by-step derivation
      1. lift-cos.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)} \]
      2. cos-neg-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right)} \]
      3. sin-+PI/2-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
      4. lower-sin.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
    6. Applied rewrites28.8%

      \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\mathsf{fma}\left(-0.0625, \mathsf{fma}\left(a + a, t, t\right) \cdot b, \pi \cdot 0.5\right)\right)} \]
    7. Taylor expanded in t around 0

      \[\leadsto \color{blue}{x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
    8. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
      2. lower-sin.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      3. lower-*.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      4. lower-PI.f6431.0

        \[\leadsto x \cdot \sin \left(0.5 \cdot \pi\right) \]
    9. Applied rewrites31.0%

      \[\leadsto \color{blue}{x \cdot \sin \left(0.5 \cdot \pi\right)} \]
    10. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \pi\right)} \]
      2. *-commutativeN/A

        \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot \color{blue}{x} \]
      3. lower-*.f6431.0

        \[\leadsto \sin \left(0.5 \cdot \pi\right) \cdot \color{blue}{x} \]
      4. lift-*.f64N/A

        \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot x \]
      5. *-commutativeN/A

        \[\leadsto \sin \left(\pi \cdot \frac{1}{2}\right) \cdot x \]
      6. lower-*.f6431.0

        \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot x \]
    11. Applied rewrites31.0%

      \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot \color{blue}{x} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 3: 32.0% accurate, 0.5× speedup?

\[\begin{array}{l} z_m = \left|z\right| \\ t_m = \left|t\right| \\ \begin{array}{l} \mathbf{if}\;\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\_m\right) \cdot t\_m}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t\_m}{16}\right) \leq 10^{+230}:\\ \;\;\;\;\left(x \cdot \cos \left(0.0625 \cdot \left(t\_m \cdot z\_m\right)\right)\right) \cdot \sin \left(\mathsf{fma}\left(-0.0625, \mathsf{fma}\left(a + a, t\_m, t\_m\right) \cdot b, \pi \cdot 0.5\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\sin \left(\pi \cdot 0.5\right) \cdot x\\ \end{array} \end{array} \]
z_m = (fabs.f64 z)
t_m = (fabs.f64 t)
(FPCore (x y z_m t_m a b)
 :precision binary64
 (if (<=
      (*
       (* x (cos (/ (* (* (+ (* y 2.0) 1.0) z_m) t_m) 16.0)))
       (cos (/ (* (* (+ (* a 2.0) 1.0) b) t_m) 16.0)))
      1e+230)
   (*
    (* x (cos (* 0.0625 (* t_m z_m))))
    (sin (fma -0.0625 (* (fma (+ a a) t_m t_m) b) (* PI 0.5))))
   (* (sin (* PI 0.5)) x)))
z_m = fabs(z);
t_m = fabs(t);
double code(double x, double y, double z_m, double t_m, double a, double b) {
	double tmp;
	if (((x * cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+230) {
		tmp = (x * cos((0.0625 * (t_m * z_m)))) * sin(fma(-0.0625, (fma((a + a), t_m, t_m) * b), (((double) M_PI) * 0.5)));
	} else {
		tmp = sin((((double) M_PI) * 0.5)) * x;
	}
	return tmp;
}
z_m = abs(z)
t_m = abs(t)
function code(x, y, z_m, t_m, a, b)
	tmp = 0.0
	if (Float64(Float64(x * cos(Float64(Float64(Float64(Float64(Float64(y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * cos(Float64(Float64(Float64(Float64(Float64(a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+230)
		tmp = Float64(Float64(x * cos(Float64(0.0625 * Float64(t_m * z_m)))) * sin(fma(-0.0625, Float64(fma(Float64(a + a), t_m, t_m) * b), Float64(pi * 0.5))));
	else
		tmp = Float64(sin(Float64(pi * 0.5)) * x);
	end
	return tmp
end
z_m = N[Abs[z], $MachinePrecision]
t_m = N[Abs[t], $MachinePrecision]
code[x_, y_, z$95$m_, t$95$m_, a_, b_] := If[LessEqual[N[(N[(x * N[Cos[N[(N[(N[(N[(N[(y * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * z$95$m), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Cos[N[(N[(N[(N[(N[(a * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * b), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 1e+230], N[(N[(x * N[Cos[N[(0.0625 * N[(t$95$m * z$95$m), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Sin[N[(-0.0625 * N[(N[(N[(a + a), $MachinePrecision] * t$95$m + t$95$m), $MachinePrecision] * b), $MachinePrecision] + N[(Pi * 0.5), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[(N[Sin[N[(Pi * 0.5), $MachinePrecision]], $MachinePrecision] * x), $MachinePrecision]]
\begin{array}{l}
z_m = \left|z\right|
\\
t_m = \left|t\right|

\\
\begin{array}{l}
\mathbf{if}\;\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\_m\right) \cdot t\_m}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t\_m}{16}\right) \leq 10^{+230}:\\
\;\;\;\;\left(x \cdot \cos \left(0.0625 \cdot \left(t\_m \cdot z\_m\right)\right)\right) \cdot \sin \left(\mathsf{fma}\left(-0.0625, \mathsf{fma}\left(a + a, t\_m, t\_m\right) \cdot b, \pi \cdot 0.5\right)\right)\\

\mathbf{else}:\\
\;\;\;\;\sin \left(\pi \cdot 0.5\right) \cdot x\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 (*.f64 x (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 y #s(literal 2 binary64)) #s(literal 1 binary64)) z) t) #s(literal 16 binary64)))) (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 a #s(literal 2 binary64)) #s(literal 1 binary64)) b) t) #s(literal 16 binary64)))) < 1.0000000000000001e230

    1. Initial program 27.9%

      \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. Taylor expanded in y around 0

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \color{blue}{\left(t \cdot z\right)}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      2. lower-*.f6428.6

        \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot \color{blue}{z}\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    4. Applied rewrites28.6%

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(0.0625 \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    5. Step-by-step derivation
      1. lift-cos.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)} \]
      2. cos-neg-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right)} \]
      3. sin-+PI/2-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
      4. lower-sin.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
    6. Applied rewrites28.8%

      \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\mathsf{fma}\left(-0.0625, \mathsf{fma}\left(a + a, t, t\right) \cdot b, \pi \cdot 0.5\right)\right)} \]

    if 1.0000000000000001e230 < (*.f64 (*.f64 x (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 y #s(literal 2 binary64)) #s(literal 1 binary64)) z) t) #s(literal 16 binary64)))) (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 a #s(literal 2 binary64)) #s(literal 1 binary64)) b) t) #s(literal 16 binary64))))

    1. Initial program 27.9%

      \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. Taylor expanded in y around 0

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \color{blue}{\left(t \cdot z\right)}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      2. lower-*.f6428.6

        \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot \color{blue}{z}\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    4. Applied rewrites28.6%

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(0.0625 \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    5. Step-by-step derivation
      1. lift-cos.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)} \]
      2. cos-neg-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right)} \]
      3. sin-+PI/2-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
      4. lower-sin.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
    6. Applied rewrites28.8%

      \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\mathsf{fma}\left(-0.0625, \mathsf{fma}\left(a + a, t, t\right) \cdot b, \pi \cdot 0.5\right)\right)} \]
    7. Taylor expanded in t around 0

      \[\leadsto \color{blue}{x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
    8. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
      2. lower-sin.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      3. lower-*.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      4. lower-PI.f6431.0

        \[\leadsto x \cdot \sin \left(0.5 \cdot \pi\right) \]
    9. Applied rewrites31.0%

      \[\leadsto \color{blue}{x \cdot \sin \left(0.5 \cdot \pi\right)} \]
    10. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \pi\right)} \]
      2. *-commutativeN/A

        \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot \color{blue}{x} \]
      3. lower-*.f6431.0

        \[\leadsto \sin \left(0.5 \cdot \pi\right) \cdot \color{blue}{x} \]
      4. lift-*.f64N/A

        \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot x \]
      5. *-commutativeN/A

        \[\leadsto \sin \left(\pi \cdot \frac{1}{2}\right) \cdot x \]
      6. lower-*.f6431.0

        \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot x \]
    11. Applied rewrites31.0%

      \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot \color{blue}{x} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 4: 32.0% accurate, 0.5× speedup?

\[\begin{array}{l} z_m = \left|z\right| \\ t_m = \left|t\right| \\ \begin{array}{l} \mathbf{if}\;\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\_m\right) \cdot t\_m}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t\_m}{16}\right) \leq 10^{+230}:\\ \;\;\;\;\left(x \cdot \cos \left(0.0625 \cdot \left(t\_m \cdot z\_m\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot \left(2 + \frac{1}{a}\right)\right) \cdot b\right) \cdot t\_m}{16}\right)\\ \mathbf{else}:\\ \;\;\;\;\sin \left(\pi \cdot 0.5\right) \cdot x\\ \end{array} \end{array} \]
z_m = (fabs.f64 z)
t_m = (fabs.f64 t)
(FPCore (x y z_m t_m a b)
 :precision binary64
 (if (<=
      (*
       (* x (cos (/ (* (* (+ (* y 2.0) 1.0) z_m) t_m) 16.0)))
       (cos (/ (* (* (+ (* a 2.0) 1.0) b) t_m) 16.0)))
      1e+230)
   (*
    (* x (cos (* 0.0625 (* t_m z_m))))
    (cos (/ (* (* (* a (+ 2.0 (/ 1.0 a))) b) t_m) 16.0)))
   (* (sin (* PI 0.5)) x)))
z_m = fabs(z);
t_m = fabs(t);
double code(double x, double y, double z_m, double t_m, double a, double b) {
	double tmp;
	if (((x * cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+230) {
		tmp = (x * cos((0.0625 * (t_m * z_m)))) * cos(((((a * (2.0 + (1.0 / a))) * b) * t_m) / 16.0));
	} else {
		tmp = sin((((double) M_PI) * 0.5)) * x;
	}
	return tmp;
}
z_m = Math.abs(z);
t_m = Math.abs(t);
public static double code(double x, double y, double z_m, double t_m, double a, double b) {
	double tmp;
	if (((x * Math.cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * Math.cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+230) {
		tmp = (x * Math.cos((0.0625 * (t_m * z_m)))) * Math.cos(((((a * (2.0 + (1.0 / a))) * b) * t_m) / 16.0));
	} else {
		tmp = Math.sin((Math.PI * 0.5)) * x;
	}
	return tmp;
}
z_m = math.fabs(z)
t_m = math.fabs(t)
def code(x, y, z_m, t_m, a, b):
	tmp = 0
	if ((x * math.cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * math.cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+230:
		tmp = (x * math.cos((0.0625 * (t_m * z_m)))) * math.cos(((((a * (2.0 + (1.0 / a))) * b) * t_m) / 16.0))
	else:
		tmp = math.sin((math.pi * 0.5)) * x
	return tmp
z_m = abs(z)
t_m = abs(t)
function code(x, y, z_m, t_m, a, b)
	tmp = 0.0
	if (Float64(Float64(x * cos(Float64(Float64(Float64(Float64(Float64(y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * cos(Float64(Float64(Float64(Float64(Float64(a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+230)
		tmp = Float64(Float64(x * cos(Float64(0.0625 * Float64(t_m * z_m)))) * cos(Float64(Float64(Float64(Float64(a * Float64(2.0 + Float64(1.0 / a))) * b) * t_m) / 16.0)));
	else
		tmp = Float64(sin(Float64(pi * 0.5)) * x);
	end
	return tmp
end
z_m = abs(z);
t_m = abs(t);
function tmp_2 = code(x, y, z_m, t_m, a, b)
	tmp = 0.0;
	if (((x * cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+230)
		tmp = (x * cos((0.0625 * (t_m * z_m)))) * cos(((((a * (2.0 + (1.0 / a))) * b) * t_m) / 16.0));
	else
		tmp = sin((pi * 0.5)) * x;
	end
	tmp_2 = tmp;
end
z_m = N[Abs[z], $MachinePrecision]
t_m = N[Abs[t], $MachinePrecision]
code[x_, y_, z$95$m_, t$95$m_, a_, b_] := If[LessEqual[N[(N[(x * N[Cos[N[(N[(N[(N[(N[(y * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * z$95$m), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Cos[N[(N[(N[(N[(N[(a * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * b), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 1e+230], N[(N[(x * N[Cos[N[(0.0625 * N[(t$95$m * z$95$m), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Cos[N[(N[(N[(N[(a * N[(2.0 + N[(1.0 / a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * b), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[(N[Sin[N[(Pi * 0.5), $MachinePrecision]], $MachinePrecision] * x), $MachinePrecision]]
\begin{array}{l}
z_m = \left|z\right|
\\
t_m = \left|t\right|

\\
\begin{array}{l}
\mathbf{if}\;\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\_m\right) \cdot t\_m}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t\_m}{16}\right) \leq 10^{+230}:\\
\;\;\;\;\left(x \cdot \cos \left(0.0625 \cdot \left(t\_m \cdot z\_m\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot \left(2 + \frac{1}{a}\right)\right) \cdot b\right) \cdot t\_m}{16}\right)\\

\mathbf{else}:\\
\;\;\;\;\sin \left(\pi \cdot 0.5\right) \cdot x\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 (*.f64 x (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 y #s(literal 2 binary64)) #s(literal 1 binary64)) z) t) #s(literal 16 binary64)))) (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 a #s(literal 2 binary64)) #s(literal 1 binary64)) b) t) #s(literal 16 binary64)))) < 1.0000000000000001e230

    1. Initial program 27.9%

      \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. Taylor expanded in y around 0

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \color{blue}{\left(t \cdot z\right)}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      2. lower-*.f6428.6

        \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot \color{blue}{z}\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    4. Applied rewrites28.6%

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(0.0625 \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    5. Taylor expanded in a around inf

      \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \cos \left(\frac{\left(\color{blue}{\left(a \cdot \left(2 + \frac{1}{a}\right)\right)} \cdot b\right) \cdot t}{16}\right) \]
    6. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot \color{blue}{\left(2 + \frac{1}{a}\right)}\right) \cdot b\right) \cdot t}{16}\right) \]
      2. lower-+.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot \left(2 + \color{blue}{\frac{1}{a}}\right)\right) \cdot b\right) \cdot t}{16}\right) \]
      3. lower-/.f6428.6

        \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot z\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot \left(2 + \frac{1}{\color{blue}{a}}\right)\right) \cdot b\right) \cdot t}{16}\right) \]
    7. Applied rewrites28.6%

      \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot z\right)\right)\right) \cdot \cos \left(\frac{\left(\color{blue}{\left(a \cdot \left(2 + \frac{1}{a}\right)\right)} \cdot b\right) \cdot t}{16}\right) \]

    if 1.0000000000000001e230 < (*.f64 (*.f64 x (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 y #s(literal 2 binary64)) #s(literal 1 binary64)) z) t) #s(literal 16 binary64)))) (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 a #s(literal 2 binary64)) #s(literal 1 binary64)) b) t) #s(literal 16 binary64))))

    1. Initial program 27.9%

      \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. Taylor expanded in y around 0

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \color{blue}{\left(t \cdot z\right)}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      2. lower-*.f6428.6

        \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot \color{blue}{z}\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    4. Applied rewrites28.6%

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(0.0625 \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    5. Step-by-step derivation
      1. lift-cos.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)} \]
      2. cos-neg-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right)} \]
      3. sin-+PI/2-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
      4. lower-sin.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
    6. Applied rewrites28.8%

      \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\mathsf{fma}\left(-0.0625, \mathsf{fma}\left(a + a, t, t\right) \cdot b, \pi \cdot 0.5\right)\right)} \]
    7. Taylor expanded in t around 0

      \[\leadsto \color{blue}{x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
    8. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
      2. lower-sin.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      3. lower-*.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      4. lower-PI.f6431.0

        \[\leadsto x \cdot \sin \left(0.5 \cdot \pi\right) \]
    9. Applied rewrites31.0%

      \[\leadsto \color{blue}{x \cdot \sin \left(0.5 \cdot \pi\right)} \]
    10. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \pi\right)} \]
      2. *-commutativeN/A

        \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot \color{blue}{x} \]
      3. lower-*.f6431.0

        \[\leadsto \sin \left(0.5 \cdot \pi\right) \cdot \color{blue}{x} \]
      4. lift-*.f64N/A

        \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot x \]
      5. *-commutativeN/A

        \[\leadsto \sin \left(\pi \cdot \frac{1}{2}\right) \cdot x \]
      6. lower-*.f6431.0

        \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot x \]
    11. Applied rewrites31.0%

      \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot \color{blue}{x} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 5: 31.8% accurate, 0.5× speedup?

\[\begin{array}{l} z_m = \left|z\right| \\ t_m = \left|t\right| \\ \begin{array}{l} t_1 := x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\_m\right) \cdot t\_m}{16}\right)\\ \mathbf{if}\;t\_1 \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t\_m}{16}\right) \leq 10^{+230}:\\ \;\;\;\;t\_1 \cdot \cos \left(0.125 \cdot \left(a \cdot \left(b \cdot t\_m\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\sin \left(\pi \cdot 0.5\right) \cdot x\\ \end{array} \end{array} \]
z_m = (fabs.f64 z)
t_m = (fabs.f64 t)
(FPCore (x y z_m t_m a b)
 :precision binary64
 (let* ((t_1 (* x (cos (/ (* (* (+ (* y 2.0) 1.0) z_m) t_m) 16.0)))))
   (if (<= (* t_1 (cos (/ (* (* (+ (* a 2.0) 1.0) b) t_m) 16.0))) 1e+230)
     (* t_1 (cos (* 0.125 (* a (* b t_m)))))
     (* (sin (* PI 0.5)) x))))
z_m = fabs(z);
t_m = fabs(t);
double code(double x, double y, double z_m, double t_m, double a, double b) {
	double t_1 = x * cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0));
	double tmp;
	if ((t_1 * cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+230) {
		tmp = t_1 * cos((0.125 * (a * (b * t_m))));
	} else {
		tmp = sin((((double) M_PI) * 0.5)) * x;
	}
	return tmp;
}
z_m = Math.abs(z);
t_m = Math.abs(t);
public static double code(double x, double y, double z_m, double t_m, double a, double b) {
	double t_1 = x * Math.cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0));
	double tmp;
	if ((t_1 * Math.cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+230) {
		tmp = t_1 * Math.cos((0.125 * (a * (b * t_m))));
	} else {
		tmp = Math.sin((Math.PI * 0.5)) * x;
	}
	return tmp;
}
z_m = math.fabs(z)
t_m = math.fabs(t)
def code(x, y, z_m, t_m, a, b):
	t_1 = x * math.cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0))
	tmp = 0
	if (t_1 * math.cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+230:
		tmp = t_1 * math.cos((0.125 * (a * (b * t_m))))
	else:
		tmp = math.sin((math.pi * 0.5)) * x
	return tmp
z_m = abs(z)
t_m = abs(t)
function code(x, y, z_m, t_m, a, b)
	t_1 = Float64(x * cos(Float64(Float64(Float64(Float64(Float64(y * 2.0) + 1.0) * z_m) * t_m) / 16.0)))
	tmp = 0.0
	if (Float64(t_1 * cos(Float64(Float64(Float64(Float64(Float64(a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+230)
		tmp = Float64(t_1 * cos(Float64(0.125 * Float64(a * Float64(b * t_m)))));
	else
		tmp = Float64(sin(Float64(pi * 0.5)) * x);
	end
	return tmp
end
z_m = abs(z);
t_m = abs(t);
function tmp_2 = code(x, y, z_m, t_m, a, b)
	t_1 = x * cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0));
	tmp = 0.0;
	if ((t_1 * cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+230)
		tmp = t_1 * cos((0.125 * (a * (b * t_m))));
	else
		tmp = sin((pi * 0.5)) * x;
	end
	tmp_2 = tmp;
end
z_m = N[Abs[z], $MachinePrecision]
t_m = N[Abs[t], $MachinePrecision]
code[x_, y_, z$95$m_, t$95$m_, a_, b_] := Block[{t$95$1 = N[(x * N[Cos[N[(N[(N[(N[(N[(y * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * z$95$m), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[N[(t$95$1 * N[Cos[N[(N[(N[(N[(N[(a * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * b), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 1e+230], N[(t$95$1 * N[Cos[N[(0.125 * N[(a * N[(b * t$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[(N[Sin[N[(Pi * 0.5), $MachinePrecision]], $MachinePrecision] * x), $MachinePrecision]]]
\begin{array}{l}
z_m = \left|z\right|
\\
t_m = \left|t\right|

\\
\begin{array}{l}
t_1 := x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\_m\right) \cdot t\_m}{16}\right)\\
\mathbf{if}\;t\_1 \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t\_m}{16}\right) \leq 10^{+230}:\\
\;\;\;\;t\_1 \cdot \cos \left(0.125 \cdot \left(a \cdot \left(b \cdot t\_m\right)\right)\right)\\

\mathbf{else}:\\
\;\;\;\;\sin \left(\pi \cdot 0.5\right) \cdot x\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 (*.f64 x (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 y #s(literal 2 binary64)) #s(literal 1 binary64)) z) t) #s(literal 16 binary64)))) (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 a #s(literal 2 binary64)) #s(literal 1 binary64)) b) t) #s(literal 16 binary64)))) < 1.0000000000000001e230

    1. Initial program 27.9%

      \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. Taylor expanded in a around inf

      \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \color{blue}{\left(\frac{1}{8} \cdot \left(a \cdot \left(b \cdot t\right)\right)\right)} \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{1}{8} \cdot \color{blue}{\left(a \cdot \left(b \cdot t\right)\right)}\right) \]
      2. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{1}{8} \cdot \left(a \cdot \color{blue}{\left(b \cdot t\right)}\right)\right) \]
      3. lower-*.f6427.9

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(0.125 \cdot \left(a \cdot \left(b \cdot \color{blue}{t}\right)\right)\right) \]
    4. Applied rewrites27.9%

      \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \color{blue}{\left(0.125 \cdot \left(a \cdot \left(b \cdot t\right)\right)\right)} \]

    if 1.0000000000000001e230 < (*.f64 (*.f64 x (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 y #s(literal 2 binary64)) #s(literal 1 binary64)) z) t) #s(literal 16 binary64)))) (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 a #s(literal 2 binary64)) #s(literal 1 binary64)) b) t) #s(literal 16 binary64))))

    1. Initial program 27.9%

      \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. Taylor expanded in y around 0

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \color{blue}{\left(t \cdot z\right)}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      2. lower-*.f6428.6

        \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot \color{blue}{z}\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    4. Applied rewrites28.6%

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(0.0625 \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    5. Step-by-step derivation
      1. lift-cos.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)} \]
      2. cos-neg-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right)} \]
      3. sin-+PI/2-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
      4. lower-sin.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
    6. Applied rewrites28.8%

      \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\mathsf{fma}\left(-0.0625, \mathsf{fma}\left(a + a, t, t\right) \cdot b, \pi \cdot 0.5\right)\right)} \]
    7. Taylor expanded in t around 0

      \[\leadsto \color{blue}{x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
    8. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
      2. lower-sin.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      3. lower-*.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      4. lower-PI.f6431.0

        \[\leadsto x \cdot \sin \left(0.5 \cdot \pi\right) \]
    9. Applied rewrites31.0%

      \[\leadsto \color{blue}{x \cdot \sin \left(0.5 \cdot \pi\right)} \]
    10. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \pi\right)} \]
      2. *-commutativeN/A

        \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot \color{blue}{x} \]
      3. lower-*.f6431.0

        \[\leadsto \sin \left(0.5 \cdot \pi\right) \cdot \color{blue}{x} \]
      4. lift-*.f64N/A

        \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot x \]
      5. *-commutativeN/A

        \[\leadsto \sin \left(\pi \cdot \frac{1}{2}\right) \cdot x \]
      6. lower-*.f6431.0

        \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot x \]
    11. Applied rewrites31.0%

      \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot \color{blue}{x} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 6: 31.8% accurate, 0.5× speedup?

\[\begin{array}{l} z_m = \left|z\right| \\ t_m = \left|t\right| \\ \begin{array}{l} t_1 := \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t\_m}{16}\right)\\ \mathbf{if}\;\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\_m\right) \cdot t\_m}{16}\right)\right) \cdot t\_1 \leq 10^{+230}:\\ \;\;\;\;\left(x \cdot \cos \left(0.0625 \cdot \left(t\_m \cdot z\_m\right)\right)\right) \cdot t\_1\\ \mathbf{else}:\\ \;\;\;\;\sin \left(\pi \cdot 0.5\right) \cdot x\\ \end{array} \end{array} \]
z_m = (fabs.f64 z)
t_m = (fabs.f64 t)
(FPCore (x y z_m t_m a b)
 :precision binary64
 (let* ((t_1 (cos (/ (* (* (+ (* a 2.0) 1.0) b) t_m) 16.0))))
   (if (<=
        (* (* x (cos (/ (* (* (+ (* y 2.0) 1.0) z_m) t_m) 16.0))) t_1)
        1e+230)
     (* (* x (cos (* 0.0625 (* t_m z_m)))) t_1)
     (* (sin (* PI 0.5)) x))))
z_m = fabs(z);
t_m = fabs(t);
double code(double x, double y, double z_m, double t_m, double a, double b) {
	double t_1 = cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0));
	double tmp;
	if (((x * cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * t_1) <= 1e+230) {
		tmp = (x * cos((0.0625 * (t_m * z_m)))) * t_1;
	} else {
		tmp = sin((((double) M_PI) * 0.5)) * x;
	}
	return tmp;
}
z_m = Math.abs(z);
t_m = Math.abs(t);
public static double code(double x, double y, double z_m, double t_m, double a, double b) {
	double t_1 = Math.cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0));
	double tmp;
	if (((x * Math.cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * t_1) <= 1e+230) {
		tmp = (x * Math.cos((0.0625 * (t_m * z_m)))) * t_1;
	} else {
		tmp = Math.sin((Math.PI * 0.5)) * x;
	}
	return tmp;
}
z_m = math.fabs(z)
t_m = math.fabs(t)
def code(x, y, z_m, t_m, a, b):
	t_1 = math.cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0))
	tmp = 0
	if ((x * math.cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * t_1) <= 1e+230:
		tmp = (x * math.cos((0.0625 * (t_m * z_m)))) * t_1
	else:
		tmp = math.sin((math.pi * 0.5)) * x
	return tmp
z_m = abs(z)
t_m = abs(t)
function code(x, y, z_m, t_m, a, b)
	t_1 = cos(Float64(Float64(Float64(Float64(Float64(a * 2.0) + 1.0) * b) * t_m) / 16.0))
	tmp = 0.0
	if (Float64(Float64(x * cos(Float64(Float64(Float64(Float64(Float64(y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * t_1) <= 1e+230)
		tmp = Float64(Float64(x * cos(Float64(0.0625 * Float64(t_m * z_m)))) * t_1);
	else
		tmp = Float64(sin(Float64(pi * 0.5)) * x);
	end
	return tmp
end
z_m = abs(z);
t_m = abs(t);
function tmp_2 = code(x, y, z_m, t_m, a, b)
	t_1 = cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0));
	tmp = 0.0;
	if (((x * cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * t_1) <= 1e+230)
		tmp = (x * cos((0.0625 * (t_m * z_m)))) * t_1;
	else
		tmp = sin((pi * 0.5)) * x;
	end
	tmp_2 = tmp;
end
z_m = N[Abs[z], $MachinePrecision]
t_m = N[Abs[t], $MachinePrecision]
code[x_, y_, z$95$m_, t$95$m_, a_, b_] := Block[{t$95$1 = N[Cos[N[(N[(N[(N[(N[(a * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * b), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]}, If[LessEqual[N[(N[(x * N[Cos[N[(N[(N[(N[(N[(y * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * z$95$m), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision], 1e+230], N[(N[(x * N[Cos[N[(0.0625 * N[(t$95$m * z$95$m), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision], N[(N[Sin[N[(Pi * 0.5), $MachinePrecision]], $MachinePrecision] * x), $MachinePrecision]]]
\begin{array}{l}
z_m = \left|z\right|
\\
t_m = \left|t\right|

\\
\begin{array}{l}
t_1 := \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t\_m}{16}\right)\\
\mathbf{if}\;\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\_m\right) \cdot t\_m}{16}\right)\right) \cdot t\_1 \leq 10^{+230}:\\
\;\;\;\;\left(x \cdot \cos \left(0.0625 \cdot \left(t\_m \cdot z\_m\right)\right)\right) \cdot t\_1\\

\mathbf{else}:\\
\;\;\;\;\sin \left(\pi \cdot 0.5\right) \cdot x\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 (*.f64 x (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 y #s(literal 2 binary64)) #s(literal 1 binary64)) z) t) #s(literal 16 binary64)))) (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 a #s(literal 2 binary64)) #s(literal 1 binary64)) b) t) #s(literal 16 binary64)))) < 1.0000000000000001e230

    1. Initial program 27.9%

      \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. Taylor expanded in y around 0

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \color{blue}{\left(t \cdot z\right)}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      2. lower-*.f6428.6

        \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot \color{blue}{z}\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    4. Applied rewrites28.6%

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(0.0625 \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]

    if 1.0000000000000001e230 < (*.f64 (*.f64 x (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 y #s(literal 2 binary64)) #s(literal 1 binary64)) z) t) #s(literal 16 binary64)))) (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 a #s(literal 2 binary64)) #s(literal 1 binary64)) b) t) #s(literal 16 binary64))))

    1. Initial program 27.9%

      \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. Taylor expanded in y around 0

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \color{blue}{\left(t \cdot z\right)}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      2. lower-*.f6428.6

        \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot \color{blue}{z}\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    4. Applied rewrites28.6%

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(0.0625 \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    5. Step-by-step derivation
      1. lift-cos.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)} \]
      2. cos-neg-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right)} \]
      3. sin-+PI/2-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
      4. lower-sin.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
    6. Applied rewrites28.8%

      \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\mathsf{fma}\left(-0.0625, \mathsf{fma}\left(a + a, t, t\right) \cdot b, \pi \cdot 0.5\right)\right)} \]
    7. Taylor expanded in t around 0

      \[\leadsto \color{blue}{x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
    8. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
      2. lower-sin.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      3. lower-*.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      4. lower-PI.f6431.0

        \[\leadsto x \cdot \sin \left(0.5 \cdot \pi\right) \]
    9. Applied rewrites31.0%

      \[\leadsto \color{blue}{x \cdot \sin \left(0.5 \cdot \pi\right)} \]
    10. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \pi\right)} \]
      2. *-commutativeN/A

        \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot \color{blue}{x} \]
      3. lower-*.f6431.0

        \[\leadsto \sin \left(0.5 \cdot \pi\right) \cdot \color{blue}{x} \]
      4. lift-*.f64N/A

        \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot x \]
      5. *-commutativeN/A

        \[\leadsto \sin \left(\pi \cdot \frac{1}{2}\right) \cdot x \]
      6. lower-*.f6431.0

        \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot x \]
    11. Applied rewrites31.0%

      \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot \color{blue}{x} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 7: 31.7% accurate, 0.5× speedup?

\[\begin{array}{l} z_m = \left|z\right| \\ t_m = \left|t\right| \\ \begin{array}{l} \mathbf{if}\;\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\_m\right) \cdot t\_m}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t\_m}{16}\right) \leq 10^{+234}:\\ \;\;\;\;\left(\cos \left(\left(t\_m \cdot z\_m\right) \cdot 0.0625\right) \cdot x\right) \cdot \cos \left(-0.0625 \cdot \left(\mathsf{fma}\left(a + a, t\_m, t\_m\right) \cdot b\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\sin \left(\pi \cdot 0.5\right) \cdot x\\ \end{array} \end{array} \]
z_m = (fabs.f64 z)
t_m = (fabs.f64 t)
(FPCore (x y z_m t_m a b)
 :precision binary64
 (if (<=
      (*
       (* x (cos (/ (* (* (+ (* y 2.0) 1.0) z_m) t_m) 16.0)))
       (cos (/ (* (* (+ (* a 2.0) 1.0) b) t_m) 16.0)))
      1e+234)
   (*
    (* (cos (* (* t_m z_m) 0.0625)) x)
    (cos (* -0.0625 (* (fma (+ a a) t_m t_m) b))))
   (* (sin (* PI 0.5)) x)))
z_m = fabs(z);
t_m = fabs(t);
double code(double x, double y, double z_m, double t_m, double a, double b) {
	double tmp;
	if (((x * cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+234) {
		tmp = (cos(((t_m * z_m) * 0.0625)) * x) * cos((-0.0625 * (fma((a + a), t_m, t_m) * b)));
	} else {
		tmp = sin((((double) M_PI) * 0.5)) * x;
	}
	return tmp;
}
z_m = abs(z)
t_m = abs(t)
function code(x, y, z_m, t_m, a, b)
	tmp = 0.0
	if (Float64(Float64(x * cos(Float64(Float64(Float64(Float64(Float64(y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * cos(Float64(Float64(Float64(Float64(Float64(a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+234)
		tmp = Float64(Float64(cos(Float64(Float64(t_m * z_m) * 0.0625)) * x) * cos(Float64(-0.0625 * Float64(fma(Float64(a + a), t_m, t_m) * b))));
	else
		tmp = Float64(sin(Float64(pi * 0.5)) * x);
	end
	return tmp
end
z_m = N[Abs[z], $MachinePrecision]
t_m = N[Abs[t], $MachinePrecision]
code[x_, y_, z$95$m_, t$95$m_, a_, b_] := If[LessEqual[N[(N[(x * N[Cos[N[(N[(N[(N[(N[(y * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * z$95$m), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Cos[N[(N[(N[(N[(N[(a * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * b), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 1e+234], N[(N[(N[Cos[N[(N[(t$95$m * z$95$m), $MachinePrecision] * 0.0625), $MachinePrecision]], $MachinePrecision] * x), $MachinePrecision] * N[Cos[N[(-0.0625 * N[(N[(N[(a + a), $MachinePrecision] * t$95$m + t$95$m), $MachinePrecision] * b), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[(N[Sin[N[(Pi * 0.5), $MachinePrecision]], $MachinePrecision] * x), $MachinePrecision]]
\begin{array}{l}
z_m = \left|z\right|
\\
t_m = \left|t\right|

\\
\begin{array}{l}
\mathbf{if}\;\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\_m\right) \cdot t\_m}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t\_m}{16}\right) \leq 10^{+234}:\\
\;\;\;\;\left(\cos \left(\left(t\_m \cdot z\_m\right) \cdot 0.0625\right) \cdot x\right) \cdot \cos \left(-0.0625 \cdot \left(\mathsf{fma}\left(a + a, t\_m, t\_m\right) \cdot b\right)\right)\\

\mathbf{else}:\\
\;\;\;\;\sin \left(\pi \cdot 0.5\right) \cdot x\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 (*.f64 x (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 y #s(literal 2 binary64)) #s(literal 1 binary64)) z) t) #s(literal 16 binary64)))) (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 a #s(literal 2 binary64)) #s(literal 1 binary64)) b) t) #s(literal 16 binary64)))) < 1.00000000000000002e234

    1. Initial program 27.9%

      \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. Taylor expanded in y around 0

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \color{blue}{\left(t \cdot z\right)}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      2. lower-*.f6428.6

        \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot \color{blue}{z}\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    4. Applied rewrites28.6%

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(0.0625 \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    5. Applied rewrites28.8%

      \[\leadsto \color{blue}{\left(\cos \left(\left(t \cdot z\right) \cdot 0.0625\right) \cdot x\right) \cdot \cos \left(-0.0625 \cdot \left(\mathsf{fma}\left(a + a, t, t\right) \cdot b\right)\right)} \]

    if 1.00000000000000002e234 < (*.f64 (*.f64 x (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 y #s(literal 2 binary64)) #s(literal 1 binary64)) z) t) #s(literal 16 binary64)))) (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 a #s(literal 2 binary64)) #s(literal 1 binary64)) b) t) #s(literal 16 binary64))))

    1. Initial program 27.9%

      \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. Taylor expanded in y around 0

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \color{blue}{\left(t \cdot z\right)}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      2. lower-*.f6428.6

        \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot \color{blue}{z}\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    4. Applied rewrites28.6%

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(0.0625 \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    5. Step-by-step derivation
      1. lift-cos.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)} \]
      2. cos-neg-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right)} \]
      3. sin-+PI/2-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
      4. lower-sin.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
    6. Applied rewrites28.8%

      \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\mathsf{fma}\left(-0.0625, \mathsf{fma}\left(a + a, t, t\right) \cdot b, \pi \cdot 0.5\right)\right)} \]
    7. Taylor expanded in t around 0

      \[\leadsto \color{blue}{x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
    8. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
      2. lower-sin.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      3. lower-*.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      4. lower-PI.f6431.0

        \[\leadsto x \cdot \sin \left(0.5 \cdot \pi\right) \]
    9. Applied rewrites31.0%

      \[\leadsto \color{blue}{x \cdot \sin \left(0.5 \cdot \pi\right)} \]
    10. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \pi\right)} \]
      2. *-commutativeN/A

        \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot \color{blue}{x} \]
      3. lower-*.f6431.0

        \[\leadsto \sin \left(0.5 \cdot \pi\right) \cdot \color{blue}{x} \]
      4. lift-*.f64N/A

        \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot x \]
      5. *-commutativeN/A

        \[\leadsto \sin \left(\pi \cdot \frac{1}{2}\right) \cdot x \]
      6. lower-*.f6431.0

        \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot x \]
    11. Applied rewrites31.0%

      \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot \color{blue}{x} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 8: 31.4% accurate, 0.6× speedup?

\[\begin{array}{l} z_m = \left|z\right| \\ t_m = \left|t\right| \\ \begin{array}{l} \mathbf{if}\;\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\_m\right) \cdot t\_m}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t\_m}{16}\right) \leq 10^{+230}:\\ \;\;\;\;x \cdot \sin \left(\mathsf{fma}\left(-0.0625, b \cdot \left(t\_m \cdot \left(1 + 2 \cdot a\right)\right), 0.5 \cdot \pi\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\sin \left(\pi \cdot 0.5\right) \cdot x\\ \end{array} \end{array} \]
z_m = (fabs.f64 z)
t_m = (fabs.f64 t)
(FPCore (x y z_m t_m a b)
 :precision binary64
 (if (<=
      (*
       (* x (cos (/ (* (* (+ (* y 2.0) 1.0) z_m) t_m) 16.0)))
       (cos (/ (* (* (+ (* a 2.0) 1.0) b) t_m) 16.0)))
      1e+230)
   (* x (sin (fma -0.0625 (* b (* t_m (+ 1.0 (* 2.0 a)))) (* 0.5 PI))))
   (* (sin (* PI 0.5)) x)))
z_m = fabs(z);
t_m = fabs(t);
double code(double x, double y, double z_m, double t_m, double a, double b) {
	double tmp;
	if (((x * cos((((((y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * cos((((((a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+230) {
		tmp = x * sin(fma(-0.0625, (b * (t_m * (1.0 + (2.0 * a)))), (0.5 * ((double) M_PI))));
	} else {
		tmp = sin((((double) M_PI) * 0.5)) * x;
	}
	return tmp;
}
z_m = abs(z)
t_m = abs(t)
function code(x, y, z_m, t_m, a, b)
	tmp = 0.0
	if (Float64(Float64(x * cos(Float64(Float64(Float64(Float64(Float64(y * 2.0) + 1.0) * z_m) * t_m) / 16.0))) * cos(Float64(Float64(Float64(Float64(Float64(a * 2.0) + 1.0) * b) * t_m) / 16.0))) <= 1e+230)
		tmp = Float64(x * sin(fma(-0.0625, Float64(b * Float64(t_m * Float64(1.0 + Float64(2.0 * a)))), Float64(0.5 * pi))));
	else
		tmp = Float64(sin(Float64(pi * 0.5)) * x);
	end
	return tmp
end
z_m = N[Abs[z], $MachinePrecision]
t_m = N[Abs[t], $MachinePrecision]
code[x_, y_, z$95$m_, t$95$m_, a_, b_] := If[LessEqual[N[(N[(x * N[Cos[N[(N[(N[(N[(N[(y * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * z$95$m), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Cos[N[(N[(N[(N[(N[(a * 2.0), $MachinePrecision] + 1.0), $MachinePrecision] * b), $MachinePrecision] * t$95$m), $MachinePrecision] / 16.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 1e+230], N[(x * N[Sin[N[(-0.0625 * N[(b * N[(t$95$m * N[(1.0 + N[(2.0 * a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(0.5 * Pi), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[(N[Sin[N[(Pi * 0.5), $MachinePrecision]], $MachinePrecision] * x), $MachinePrecision]]
\begin{array}{l}
z_m = \left|z\right|
\\
t_m = \left|t\right|

\\
\begin{array}{l}
\mathbf{if}\;\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\_m\right) \cdot t\_m}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t\_m}{16}\right) \leq 10^{+230}:\\
\;\;\;\;x \cdot \sin \left(\mathsf{fma}\left(-0.0625, b \cdot \left(t\_m \cdot \left(1 + 2 \cdot a\right)\right), 0.5 \cdot \pi\right)\right)\\

\mathbf{else}:\\
\;\;\;\;\sin \left(\pi \cdot 0.5\right) \cdot x\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 (*.f64 x (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 y #s(literal 2 binary64)) #s(literal 1 binary64)) z) t) #s(literal 16 binary64)))) (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 a #s(literal 2 binary64)) #s(literal 1 binary64)) b) t) #s(literal 16 binary64)))) < 1.0000000000000001e230

    1. Initial program 27.9%

      \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. Taylor expanded in a around inf

      \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\color{blue}{\left(2 \cdot \left(a \cdot b\right)\right)} \cdot t}{16}\right) \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(2 \cdot \color{blue}{\left(a \cdot b\right)}\right) \cdot t}{16}\right) \]
      2. lower-*.f6427.7

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(2 \cdot \left(a \cdot \color{blue}{b}\right)\right) \cdot t}{16}\right) \]
    4. Applied rewrites27.7%

      \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\color{blue}{\left(2 \cdot \left(a \cdot b\right)\right)} \cdot t}{16}\right) \]
    5. Step-by-step derivation
      1. lift-cos.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \color{blue}{\cos \left(\frac{\left(2 \cdot \left(a \cdot b\right)\right) \cdot t}{16}\right)} \]
      2. cos-neg-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \color{blue}{\cos \left(\mathsf{neg}\left(\frac{\left(2 \cdot \left(a \cdot b\right)\right) \cdot t}{16}\right)\right)} \]
      3. sin-+PI/2-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(2 \cdot \left(a \cdot b\right)\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
      4. lower-sin.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(2 \cdot \left(a \cdot b\right)\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
      5. lift-/.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \sin \left(\left(\mathsf{neg}\left(\color{blue}{\frac{\left(2 \cdot \left(a \cdot b\right)\right) \cdot t}{16}}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right) \]
      6. mult-flipN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \sin \left(\left(\mathsf{neg}\left(\color{blue}{\left(\left(2 \cdot \left(a \cdot b\right)\right) \cdot t\right) \cdot \frac{1}{16}}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right) \]
      7. metadata-evalN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \sin \left(\left(\mathsf{neg}\left(\left(\left(2 \cdot \left(a \cdot b\right)\right) \cdot t\right) \cdot \color{blue}{\frac{1}{16}}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right) \]
      8. distribute-rgt-neg-inN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \sin \left(\color{blue}{\left(\left(2 \cdot \left(a \cdot b\right)\right) \cdot t\right) \cdot \left(\mathsf{neg}\left(\frac{1}{16}\right)\right)} + \frac{\mathsf{PI}\left(\right)}{2}\right) \]
      9. metadata-evalN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \sin \left(\left(\left(2 \cdot \left(a \cdot b\right)\right) \cdot t\right) \cdot \color{blue}{\frac{-1}{16}} + \frac{\mathsf{PI}\left(\right)}{2}\right) \]
      10. metadata-evalN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \sin \left(\left(\left(2 \cdot \left(a \cdot b\right)\right) \cdot t\right) \cdot \color{blue}{\frac{1}{-16}} + \frac{\mathsf{PI}\left(\right)}{2}\right) \]
      11. metadata-evalN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \sin \left(\left(\left(2 \cdot \left(a \cdot b\right)\right) \cdot t\right) \cdot \frac{1}{\color{blue}{\mathsf{neg}\left(16\right)}} + \frac{\mathsf{PI}\left(\right)}{2}\right) \]
      12. lower-fma.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \sin \color{blue}{\left(\mathsf{fma}\left(\left(2 \cdot \left(a \cdot b\right)\right) \cdot t, \frac{1}{\mathsf{neg}\left(16\right)}, \frac{\mathsf{PI}\left(\right)}{2}\right)\right)} \]
    6. Applied rewrites27.8%

      \[\leadsto \left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \color{blue}{\sin \left(\mathsf{fma}\left(\left(\left(a + a\right) \cdot b\right) \cdot t, -0.0625, \pi \cdot 0.5\right)\right)} \]
    7. Taylor expanded in z around 0

      \[\leadsto \color{blue}{x \cdot \sin \left(\frac{-1}{16} \cdot \left(b \cdot \left(t \cdot \left(1 + 2 \cdot a\right)\right)\right) + \frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
    8. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{-1}{16} \cdot \left(b \cdot \left(t \cdot \left(1 + 2 \cdot a\right)\right)\right) + \frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
      2. lower-sin.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{-1}{16} \cdot \left(b \cdot \left(t \cdot \left(1 + 2 \cdot a\right)\right)\right) + \frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      3. lower-fma.f64N/A

        \[\leadsto x \cdot \sin \left(\mathsf{fma}\left(\frac{-1}{16}, b \cdot \left(t \cdot \left(1 + 2 \cdot a\right)\right), \frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)\right) \]
      4. lower-*.f64N/A

        \[\leadsto x \cdot \sin \left(\mathsf{fma}\left(\frac{-1}{16}, b \cdot \left(t \cdot \left(1 + 2 \cdot a\right)\right), \frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)\right) \]
      5. lower-*.f64N/A

        \[\leadsto x \cdot \sin \left(\mathsf{fma}\left(\frac{-1}{16}, b \cdot \left(t \cdot \left(1 + 2 \cdot a\right)\right), \frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)\right) \]
      6. lower-+.f64N/A

        \[\leadsto x \cdot \sin \left(\mathsf{fma}\left(\frac{-1}{16}, b \cdot \left(t \cdot \left(1 + 2 \cdot a\right)\right), \frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)\right) \]
      7. lower-*.f64N/A

        \[\leadsto x \cdot \sin \left(\mathsf{fma}\left(\frac{-1}{16}, b \cdot \left(t \cdot \left(1 + 2 \cdot a\right)\right), \frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)\right) \]
      8. lower-*.f64N/A

        \[\leadsto x \cdot \sin \left(\mathsf{fma}\left(\frac{-1}{16}, b \cdot \left(t \cdot \left(1 + 2 \cdot a\right)\right), \frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)\right) \]
      9. lower-PI.f6428.9

        \[\leadsto x \cdot \sin \left(\mathsf{fma}\left(-0.0625, b \cdot \left(t \cdot \left(1 + 2 \cdot a\right)\right), 0.5 \cdot \pi\right)\right) \]
    9. Applied rewrites28.9%

      \[\leadsto \color{blue}{x \cdot \sin \left(\mathsf{fma}\left(-0.0625, b \cdot \left(t \cdot \left(1 + 2 \cdot a\right)\right), 0.5 \cdot \pi\right)\right)} \]

    if 1.0000000000000001e230 < (*.f64 (*.f64 x (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 y #s(literal 2 binary64)) #s(literal 1 binary64)) z) t) #s(literal 16 binary64)))) (cos.f64 (/.f64 (*.f64 (*.f64 (+.f64 (*.f64 a #s(literal 2 binary64)) #s(literal 1 binary64)) b) t) #s(literal 16 binary64))))

    1. Initial program 27.9%

      \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. Taylor expanded in y around 0

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \color{blue}{\left(t \cdot z\right)}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
      2. lower-*.f6428.6

        \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot \color{blue}{z}\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    4. Applied rewrites28.6%

      \[\leadsto \left(x \cdot \cos \color{blue}{\left(0.0625 \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    5. Step-by-step derivation
      1. lift-cos.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)} \]
      2. cos-neg-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right)} \]
      3. sin-+PI/2-revN/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
      4. lower-sin.f64N/A

        \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
    6. Applied rewrites28.8%

      \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\mathsf{fma}\left(-0.0625, \mathsf{fma}\left(a + a, t, t\right) \cdot b, \pi \cdot 0.5\right)\right)} \]
    7. Taylor expanded in t around 0

      \[\leadsto \color{blue}{x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
    8. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
      2. lower-sin.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      3. lower-*.f64N/A

        \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
      4. lower-PI.f6431.0

        \[\leadsto x \cdot \sin \left(0.5 \cdot \pi\right) \]
    9. Applied rewrites31.0%

      \[\leadsto \color{blue}{x \cdot \sin \left(0.5 \cdot \pi\right)} \]
    10. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \pi\right)} \]
      2. *-commutativeN/A

        \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot \color{blue}{x} \]
      3. lower-*.f6431.0

        \[\leadsto \sin \left(0.5 \cdot \pi\right) \cdot \color{blue}{x} \]
      4. lift-*.f64N/A

        \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot x \]
      5. *-commutativeN/A

        \[\leadsto \sin \left(\pi \cdot \frac{1}{2}\right) \cdot x \]
      6. lower-*.f6431.0

        \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot x \]
    11. Applied rewrites31.0%

      \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot \color{blue}{x} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 9: 31.0% accurate, 2.6× speedup?

\[\begin{array}{l} z_m = \left|z\right| \\ t_m = \left|t\right| \\ \sin \left(\pi \cdot 0.5\right) \cdot x \end{array} \]
z_m = (fabs.f64 z)
t_m = (fabs.f64 t)
(FPCore (x y z_m t_m a b) :precision binary64 (* (sin (* PI 0.5)) x))
z_m = fabs(z);
t_m = fabs(t);
double code(double x, double y, double z_m, double t_m, double a, double b) {
	return sin((((double) M_PI) * 0.5)) * x;
}
z_m = Math.abs(z);
t_m = Math.abs(t);
public static double code(double x, double y, double z_m, double t_m, double a, double b) {
	return Math.sin((Math.PI * 0.5)) * x;
}
z_m = math.fabs(z)
t_m = math.fabs(t)
def code(x, y, z_m, t_m, a, b):
	return math.sin((math.pi * 0.5)) * x
z_m = abs(z)
t_m = abs(t)
function code(x, y, z_m, t_m, a, b)
	return Float64(sin(Float64(pi * 0.5)) * x)
end
z_m = abs(z);
t_m = abs(t);
function tmp = code(x, y, z_m, t_m, a, b)
	tmp = sin((pi * 0.5)) * x;
end
z_m = N[Abs[z], $MachinePrecision]
t_m = N[Abs[t], $MachinePrecision]
code[x_, y_, z$95$m_, t$95$m_, a_, b_] := N[(N[Sin[N[(Pi * 0.5), $MachinePrecision]], $MachinePrecision] * x), $MachinePrecision]
\begin{array}{l}
z_m = \left|z\right|
\\
t_m = \left|t\right|

\\
\sin \left(\pi \cdot 0.5\right) \cdot x
\end{array}
Derivation
  1. Initial program 27.9%

    \[\left(x \cdot \cos \left(\frac{\left(\left(y \cdot 2 + 1\right) \cdot z\right) \cdot t}{16}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
  2. Taylor expanded in y around 0

    \[\leadsto \left(x \cdot \cos \color{blue}{\left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
  3. Step-by-step derivation
    1. lower-*.f64N/A

      \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \color{blue}{\left(t \cdot z\right)}\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
    2. lower-*.f6428.6

      \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot \color{blue}{z}\right)\right)\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
  4. Applied rewrites28.6%

    \[\leadsto \left(x \cdot \cos \color{blue}{\left(0.0625 \cdot \left(t \cdot z\right)\right)}\right) \cdot \cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right) \]
  5. Step-by-step derivation
    1. lift-cos.f64N/A

      \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)} \]
    2. cos-neg-revN/A

      \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\cos \left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right)} \]
    3. sin-+PI/2-revN/A

      \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
    4. lower-sin.f64N/A

      \[\leadsto \left(x \cdot \cos \left(\frac{1}{16} \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\left(\mathsf{neg}\left(\frac{\left(\left(a \cdot 2 + 1\right) \cdot b\right) \cdot t}{16}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \]
  6. Applied rewrites28.8%

    \[\leadsto \left(x \cdot \cos \left(0.0625 \cdot \left(t \cdot z\right)\right)\right) \cdot \color{blue}{\sin \left(\mathsf{fma}\left(-0.0625, \mathsf{fma}\left(a + a, t, t\right) \cdot b, \pi \cdot 0.5\right)\right)} \]
  7. Taylor expanded in t around 0

    \[\leadsto \color{blue}{x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
  8. Step-by-step derivation
    1. lower-*.f64N/A

      \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right)} \]
    2. lower-sin.f64N/A

      \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
    3. lower-*.f64N/A

      \[\leadsto x \cdot \sin \left(\frac{1}{2} \cdot \mathsf{PI}\left(\right)\right) \]
    4. lower-PI.f6431.0

      \[\leadsto x \cdot \sin \left(0.5 \cdot \pi\right) \]
  9. Applied rewrites31.0%

    \[\leadsto \color{blue}{x \cdot \sin \left(0.5 \cdot \pi\right)} \]
  10. Step-by-step derivation
    1. lift-*.f64N/A

      \[\leadsto x \cdot \color{blue}{\sin \left(\frac{1}{2} \cdot \pi\right)} \]
    2. *-commutativeN/A

      \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot \color{blue}{x} \]
    3. lower-*.f6431.0

      \[\leadsto \sin \left(0.5 \cdot \pi\right) \cdot \color{blue}{x} \]
    4. lift-*.f64N/A

      \[\leadsto \sin \left(\frac{1}{2} \cdot \pi\right) \cdot x \]
    5. *-commutativeN/A

      \[\leadsto \sin \left(\pi \cdot \frac{1}{2}\right) \cdot x \]
    6. lower-*.f6431.0

      \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot x \]
  11. Applied rewrites31.0%

    \[\leadsto \sin \left(\pi \cdot 0.5\right) \cdot \color{blue}{x} \]
  12. Add Preprocessing

Reproduce

?
herbie shell --seed 2025156 
(FPCore (x y z t a b)
  :name "Codec.Picture.Jpg.FastDct:referenceDct from JuicyPixels-3.2.6.1"
  :precision binary64
  (* (* x (cos (/ (* (* (+ (* y 2.0) 1.0) z) t) 16.0))) (cos (/ (* (* (+ (* a 2.0) 1.0) b) t) 16.0))))