Toniolo and Linder, Equation (3b), real

Percentage Accurate: 93.8% → 99.7%
Time: 6.9s
Alternatives: 25
Speedup: 1.2×

Specification

?
\[\mathsf{TRUE}\left(\right)\]
\[\begin{array}{l} \\ \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \end{array} \]
(FPCore (kx ky th)
 :precision binary64
 (* (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0)))) (sin th)))
double code(double kx, double ky, double th) {
	return (sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)))) * sin(th);
}
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(kx, ky, th)
use fmin_fmax_functions
    real(8), intent (in) :: kx
    real(8), intent (in) :: ky
    real(8), intent (in) :: th
    code = (sin(ky) / sqrt(((sin(kx) ** 2.0d0) + (sin(ky) ** 2.0d0)))) * sin(th)
end function
public static double code(double kx, double ky, double th) {
	return (Math.sin(ky) / Math.sqrt((Math.pow(Math.sin(kx), 2.0) + Math.pow(Math.sin(ky), 2.0)))) * Math.sin(th);
}
def code(kx, ky, th):
	return (math.sin(ky) / math.sqrt((math.pow(math.sin(kx), 2.0) + math.pow(math.sin(ky), 2.0)))) * math.sin(th)
function code(kx, ky, th)
	return Float64(Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) * sin(th))
end
function tmp = code(kx, ky, th)
	tmp = (sin(ky) / sqrt(((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) * sin(th);
end
code[kx_, ky_, th_] := N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th
\end{array}

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

Herbie found 25 alternatives:

AlternativeAccuracySpeedup
The accuracy (vertical axis) and speed (horizontal axis) of each alternatives. Up and to the right is better. The red square shows the initial program, and each blue circle shows an alternative.The line shows the best available speed-accuracy tradeoffs.

Initial Program: 93.8% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \end{array} \]
(FPCore (kx ky th)
 :precision binary64
 (* (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0)))) (sin th)))
double code(double kx, double ky, double th) {
	return (sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)))) * sin(th);
}
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(kx, ky, th)
use fmin_fmax_functions
    real(8), intent (in) :: kx
    real(8), intent (in) :: ky
    real(8), intent (in) :: th
    code = (sin(ky) / sqrt(((sin(kx) ** 2.0d0) + (sin(ky) ** 2.0d0)))) * sin(th)
end function
public static double code(double kx, double ky, double th) {
	return (Math.sin(ky) / Math.sqrt((Math.pow(Math.sin(kx), 2.0) + Math.pow(Math.sin(ky), 2.0)))) * Math.sin(th);
}
def code(kx, ky, th):
	return (math.sin(ky) / math.sqrt((math.pow(math.sin(kx), 2.0) + math.pow(math.sin(ky), 2.0)))) * math.sin(th)
function code(kx, ky, th)
	return Float64(Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) * sin(th))
end
function tmp = code(kx, ky, th)
	tmp = (sin(ky) / sqrt(((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) * sin(th);
end
code[kx_, ky_, th_] := N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th
\end{array}

Alternative 1: 99.7% accurate, 1.2× speedup?

\[\begin{array}{l} \\ \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \sin th \end{array} \]
(FPCore (kx ky th)
 :precision binary64
 (* (/ (sin ky) (hypot (sin ky) (sin kx))) (sin th)))
double code(double kx, double ky, double th) {
	return (sin(ky) / hypot(sin(ky), sin(kx))) * sin(th);
}
public static double code(double kx, double ky, double th) {
	return (Math.sin(ky) / Math.hypot(Math.sin(ky), Math.sin(kx))) * Math.sin(th);
}
def code(kx, ky, th):
	return (math.sin(ky) / math.hypot(math.sin(ky), math.sin(kx))) * math.sin(th)
function code(kx, ky, th)
	return Float64(Float64(sin(ky) / hypot(sin(ky), sin(kx))) * sin(th))
end
function tmp = code(kx, ky, th)
	tmp = (sin(ky) / hypot(sin(ky), sin(kx))) * sin(th);
end
code[kx_, ky_, th_] := N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[Sin[ky], $MachinePrecision] ^ 2 + N[Sin[kx], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \sin th
\end{array}
Derivation
  1. Initial program 93.0%

    \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
  2. Add Preprocessing
  3. Step-by-step derivation
    1. lift-sqrt.f64N/A

      \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
    2. lift-+.f64N/A

      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
    3. lift-pow.f64N/A

      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
    4. lift-sin.f64N/A

      \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
    5. lift-pow.f64N/A

      \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
    6. lift-sin.f64N/A

      \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
    7. +-commutativeN/A

      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
    8. unpow2N/A

      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
    9. unpow2N/A

      \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
    10. lower-hypot.f64N/A

      \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
    11. lift-sin.f64N/A

      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
    12. lift-sin.f6499.7

      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
  4. Applied rewrites99.7%

    \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
  5. Add Preprocessing

Alternative 2: 79.4% accurate, 0.2× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}\\ t_2 := \frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \sin ky\right)} \cdot th\\ \mathbf{if}\;t\_1 \leq -1:\\ \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \sin th\\ \mathbf{elif}\;t\_1 \leq -0.05:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;t\_1 \leq 0.1:\\ \;\;\;\;\frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th\\ \mathbf{elif}\;t\_1 \leq 0.9999:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;t\_1 \leq 2:\\ \;\;\;\;\mathsf{fma}\left(\frac{kx \cdot kx}{ky \cdot ky}, -0.5, 1\right) \cdot \sin th\\ \mathbf{else}:\\ \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(ky, kx\right)} \cdot \sin th\\ \end{array} \end{array} \]
(FPCore (kx ky th)
 :precision binary64
 (let* ((t_1 (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0)))))
        (t_2 (* (/ (sin ky) (hypot (sin kx) (sin ky))) th)))
   (if (<= t_1 -1.0)
     (* (/ (sin ky) (sqrt (- 0.5 (* 0.5 (cos (+ ky ky)))))) (sin th))
     (if (<= t_1 -0.05)
       t_2
       (if (<= t_1 0.1)
         (*
          (/
           (*
            (fma
             (- (* (* ky ky) 0.008333333333333333) 0.16666666666666666)
             (* ky ky)
             1.0)
            ky)
           (hypot
            (*
             (fma
              (-
               (*
                (fma (* ky ky) -0.0001984126984126984 0.008333333333333333)
                (* ky ky))
               0.16666666666666666)
              (* ky ky)
              1.0)
             ky)
            (sin kx)))
          (sin th))
         (if (<= t_1 0.9999)
           t_2
           (if (<= t_1 2.0)
             (* (fma (/ (* kx kx) (* ky ky)) -0.5 1.0) (sin th))
             (* (/ (sin ky) (hypot ky kx)) (sin th)))))))))
double code(double kx, double ky, double th) {
	double t_1 = sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)));
	double t_2 = (sin(ky) / hypot(sin(kx), sin(ky))) * th;
	double tmp;
	if (t_1 <= -1.0) {
		tmp = (sin(ky) / sqrt((0.5 - (0.5 * cos((ky + ky)))))) * sin(th);
	} else if (t_1 <= -0.05) {
		tmp = t_2;
	} else if (t_1 <= 0.1) {
		tmp = ((fma((((ky * ky) * 0.008333333333333333) - 0.16666666666666666), (ky * ky), 1.0) * ky) / hypot((fma(((fma((ky * ky), -0.0001984126984126984, 0.008333333333333333) * (ky * ky)) - 0.16666666666666666), (ky * ky), 1.0) * ky), sin(kx))) * sin(th);
	} else if (t_1 <= 0.9999) {
		tmp = t_2;
	} else if (t_1 <= 2.0) {
		tmp = fma(((kx * kx) / (ky * ky)), -0.5, 1.0) * sin(th);
	} else {
		tmp = (sin(ky) / hypot(ky, kx)) * sin(th);
	}
	return tmp;
}
function code(kx, ky, th)
	t_1 = Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0))))
	t_2 = Float64(Float64(sin(ky) / hypot(sin(kx), sin(ky))) * th)
	tmp = 0.0
	if (t_1 <= -1.0)
		tmp = Float64(Float64(sin(ky) / sqrt(Float64(0.5 - Float64(0.5 * cos(Float64(ky + ky)))))) * sin(th));
	elseif (t_1 <= -0.05)
		tmp = t_2;
	elseif (t_1 <= 0.1)
		tmp = Float64(Float64(Float64(fma(Float64(Float64(Float64(ky * ky) * 0.008333333333333333) - 0.16666666666666666), Float64(ky * ky), 1.0) * ky) / hypot(Float64(fma(Float64(Float64(fma(Float64(ky * ky), -0.0001984126984126984, 0.008333333333333333) * Float64(ky * ky)) - 0.16666666666666666), Float64(ky * ky), 1.0) * ky), sin(kx))) * sin(th));
	elseif (t_1 <= 0.9999)
		tmp = t_2;
	elseif (t_1 <= 2.0)
		tmp = Float64(fma(Float64(Float64(kx * kx) / Float64(ky * ky)), -0.5, 1.0) * sin(th));
	else
		tmp = Float64(Float64(sin(ky) / hypot(ky, kx)) * sin(th));
	end
	return tmp
end
code[kx_, ky_, th_] := Block[{t$95$1 = N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[Sin[kx], $MachinePrecision] ^ 2 + N[Sin[ky], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * th), $MachinePrecision]}, If[LessEqual[t$95$1, -1.0], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(0.5 - N[(0.5 * N[Cos[N[(ky + ky), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$1, -0.05], t$95$2, If[LessEqual[t$95$1, 0.1], N[(N[(N[(N[(N[(N[(N[(ky * ky), $MachinePrecision] * 0.008333333333333333), $MachinePrecision] - 0.16666666666666666), $MachinePrecision] * N[(ky * ky), $MachinePrecision] + 1.0), $MachinePrecision] * ky), $MachinePrecision] / N[Sqrt[N[(N[(N[(N[(N[(N[(ky * ky), $MachinePrecision] * -0.0001984126984126984 + 0.008333333333333333), $MachinePrecision] * N[(ky * ky), $MachinePrecision]), $MachinePrecision] - 0.16666666666666666), $MachinePrecision] * N[(ky * ky), $MachinePrecision] + 1.0), $MachinePrecision] * ky), $MachinePrecision] ^ 2 + N[Sin[kx], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$1, 0.9999], t$95$2, If[LessEqual[t$95$1, 2.0], N[(N[(N[(N[(kx * kx), $MachinePrecision] / N[(ky * ky), $MachinePrecision]), $MachinePrecision] * -0.5 + 1.0), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[ky ^ 2 + kx ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]]]]]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_1 := \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}\\
t_2 := \frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \sin ky\right)} \cdot th\\
\mathbf{if}\;t\_1 \leq -1:\\
\;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \sin th\\

\mathbf{elif}\;t\_1 \leq -0.05:\\
\;\;\;\;t\_2\\

\mathbf{elif}\;t\_1 \leq 0.1:\\
\;\;\;\;\frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th\\

\mathbf{elif}\;t\_1 \leq 0.9999:\\
\;\;\;\;t\_2\\

\mathbf{elif}\;t\_1 \leq 2:\\
\;\;\;\;\mathsf{fma}\left(\frac{kx \cdot kx}{ky \cdot ky}, -0.5, 1\right) \cdot \sin th\\

\mathbf{else}:\\
\;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(ky, kx\right)} \cdot \sin th\\


\end{array}
\end{array}
Derivation
  1. Split input into 5 regimes
  2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < -1

    1. Initial program 80.8%

      \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
    2. Add Preprocessing
    3. Taylor expanded in kx around 0

      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
    4. Step-by-step derivation
      1. lift-sin.f64N/A

        \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \sin th \]
      2. lift-pow.f6480.8

        \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \sin th \]
    5. Applied rewrites80.8%

      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
    6. Step-by-step derivation
      1. lift-pow.f64N/A

        \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \sin th \]
      2. lift-sin.f64N/A

        \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \sin th \]
      3. pow2N/A

        \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \color{blue}{\sin ky}}} \cdot \sin th \]
      4. sqr-sin-aN/A

        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \sin th \]
      5. lower--.f64N/A

        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \sin th \]
      6. lower-*.f64N/A

        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \color{blue}{\cos \left(2 \cdot ky\right)}}} \cdot \sin th \]
      7. cos-2N/A

        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \left(\cos ky \cdot \cos ky - \color{blue}{\sin ky \cdot \sin ky}\right)}} \cdot \sin th \]
      8. cos-sumN/A

        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \sin th \]
      9. lower-cos.f64N/A

        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \sin th \]
      10. lower-+.f6469.1

        \[\leadsto \frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \sin th \]
    7. Applied rewrites69.1%

      \[\leadsto \frac{\sin ky}{\sqrt{0.5 - \color{blue}{0.5 \cdot \cos \left(ky + ky\right)}}} \cdot \sin th \]

    if -1 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < -0.050000000000000003 or 0.10000000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.99990000000000001

    1. Initial program 99.6%

      \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
    2. Add Preprocessing
    3. Taylor expanded in th around 0

      \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \color{blue}{th} \]
    4. Step-by-step derivation
      1. Applied rewrites57.1%

        \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \color{blue}{th} \]
      2. Step-by-step derivation
        1. lift-sqrt.f64N/A

          \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot th \]
        2. lift-+.f64N/A

          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot th \]
        3. lift-pow.f64N/A

          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot th \]
        4. lift-sin.f64N/A

          \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot th \]
        5. pow2N/A

          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin kx \cdot \sin kx} + {\sin ky}^{2}}} \cdot th \]
        6. lift-pow.f64N/A

          \[\leadsto \frac{\sin ky}{\sqrt{\sin kx \cdot \sin kx + \color{blue}{{\sin ky}^{2}}}} \cdot th \]
        7. lift-sin.f64N/A

          \[\leadsto \frac{\sin ky}{\sqrt{\sin kx \cdot \sin kx + {\color{blue}{\sin ky}}^{2}}} \cdot th \]
        8. pow2N/A

          \[\leadsto \frac{\sin ky}{\sqrt{\sin kx \cdot \sin kx + \color{blue}{\sin ky \cdot \sin ky}}} \cdot th \]
        9. lower-hypot.f64N/A

          \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin kx, \sin ky\right)}} \cdot th \]
        10. lift-sin.f64N/A

          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin kx}, \sin ky\right)} \cdot th \]
        11. lift-sin.f6457.0

          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \color{blue}{\sin ky}\right)} \cdot th \]
      3. Applied rewrites57.0%

        \[\leadsto \color{blue}{\frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \sin ky\right)} \cdot th} \]

      if -0.050000000000000003 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.10000000000000001

      1. Initial program 99.0%

        \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. lift-sqrt.f64N/A

          \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
        2. lift-+.f64N/A

          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
        3. lift-pow.f64N/A

          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
        4. lift-sin.f64N/A

          \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
        5. lift-pow.f64N/A

          \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
        6. lift-sin.f64N/A

          \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
        7. +-commutativeN/A

          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
        8. unpow2N/A

          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
        9. unpow2N/A

          \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
        10. lower-hypot.f64N/A

          \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
        11. lift-sin.f64N/A

          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
        12. lift-sin.f6499.6

          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
      4. Applied rewrites99.6%

        \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
      5. Taylor expanded in ky around 0

        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky \cdot \left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right)}, \sin kx\right)} \cdot \sin th \]
      6. Step-by-step derivation
        1. *-commutativeN/A

          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
        2. lower-*.f64N/A

          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
      7. Applied rewrites98.6%

        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}, \sin kx\right)} \cdot \sin th \]
      8. Taylor expanded in ky around 0

        \[\leadsto \frac{\color{blue}{ky \cdot \left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right)}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
      9. Step-by-step derivation
        1. *-commutativeN/A

          \[\leadsto \frac{\left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
        2. lower-*.f64N/A

          \[\leadsto \frac{\left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
        3. +-commutativeN/A

          \[\leadsto \frac{\left({ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right) + 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
        4. *-commutativeN/A

          \[\leadsto \frac{\left(\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right) \cdot {ky}^{2} + 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
        5. lower-fma.f64N/A

          \[\leadsto \frac{\mathsf{fma}\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
        6. lower--.f64N/A

          \[\leadsto \frac{\mathsf{fma}\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
        7. *-commutativeN/A

          \[\leadsto \frac{\mathsf{fma}\left({ky}^{2} \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
        8. lower-*.f64N/A

          \[\leadsto \frac{\mathsf{fma}\left({ky}^{2} \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
        9. pow2N/A

          \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
        10. lift-*.f64N/A

          \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
        11. pow2N/A

          \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
        12. lift-*.f6498.3

          \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
      10. Applied rewrites98.3%

        \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]

      if 0.99990000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 2

      1. Initial program 97.2%

        \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
      2. Add Preprocessing
      3. Taylor expanded in kx around 0

        \[\leadsto \color{blue}{\left(1 + \frac{-1}{2} \cdot \frac{{kx}^{2}}{{\sin ky}^{2}}\right)} \cdot \sin th \]
      4. Step-by-step derivation
        1. +-commutativeN/A

          \[\leadsto \left(\frac{-1}{2} \cdot \frac{{kx}^{2}}{{\sin ky}^{2}} + \color{blue}{1}\right) \cdot \sin th \]
        2. *-commutativeN/A

          \[\leadsto \left(\frac{{kx}^{2}}{{\sin ky}^{2}} \cdot \frac{-1}{2} + 1\right) \cdot \sin th \]
        3. lower-fma.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{{kx}^{2}}{{\sin ky}^{2}}, \color{blue}{\frac{-1}{2}}, 1\right) \cdot \sin th \]
        4. lower-/.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{{kx}^{2}}{{\sin ky}^{2}}, \frac{-1}{2}, 1\right) \cdot \sin th \]
        5. unpow2N/A

          \[\leadsto \mathsf{fma}\left(\frac{kx \cdot kx}{{\sin ky}^{2}}, \frac{-1}{2}, 1\right) \cdot \sin th \]
        6. lower-*.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{kx \cdot kx}{{\sin ky}^{2}}, \frac{-1}{2}, 1\right) \cdot \sin th \]
        7. lift-sin.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{kx \cdot kx}{{\sin ky}^{2}}, \frac{-1}{2}, 1\right) \cdot \sin th \]
        8. lift-pow.f64100.0

          \[\leadsto \mathsf{fma}\left(\frac{kx \cdot kx}{{\sin ky}^{2}}, -0.5, 1\right) \cdot \sin th \]
      5. Applied rewrites100.0%

        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{kx \cdot kx}{{\sin ky}^{2}}, -0.5, 1\right)} \cdot \sin th \]
      6. Taylor expanded in ky around 0

        \[\leadsto \mathsf{fma}\left(\frac{kx \cdot kx}{{ky}^{2}}, \frac{-1}{2}, 1\right) \cdot \sin th \]
      7. Step-by-step derivation
        1. pow2N/A

          \[\leadsto \mathsf{fma}\left(\frac{kx \cdot kx}{ky \cdot ky}, \frac{-1}{2}, 1\right) \cdot \sin th \]
        2. lift-*.f64100.0

          \[\leadsto \mathsf{fma}\left(\frac{kx \cdot kx}{ky \cdot ky}, -0.5, 1\right) \cdot \sin th \]
      8. Applied rewrites100.0%

        \[\leadsto \mathsf{fma}\left(\frac{kx \cdot kx}{ky \cdot ky}, -0.5, 1\right) \cdot \sin th \]

      if 2 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

      1. Initial program 2.2%

        \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. lift-sqrt.f64N/A

          \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
        2. lift-+.f64N/A

          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
        3. lift-pow.f64N/A

          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
        4. lift-sin.f64N/A

          \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
        5. lift-pow.f64N/A

          \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
        6. lift-sin.f64N/A

          \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
        7. +-commutativeN/A

          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
        8. unpow2N/A

          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
        9. unpow2N/A

          \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
        10. lower-hypot.f64N/A

          \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
        11. lift-sin.f64N/A

          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
        12. lift-sin.f6499.7

          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
      4. Applied rewrites99.7%

        \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
      5. Taylor expanded in ky around 0

        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
      6. Step-by-step derivation
        1. Applied rewrites99.7%

          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
        2. Taylor expanded in kx around 0

          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(ky, \color{blue}{kx}\right)} \cdot \sin th \]
        3. Step-by-step derivation
          1. Applied rewrites99.7%

            \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(ky, \color{blue}{kx}\right)} \cdot \sin th \]
        4. Recombined 5 regimes into one program.
        5. Add Preprocessing

        Alternative 3: 86.4% accurate, 0.2× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, kx\right)} \cdot \sin th\\ t_2 := \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}\\ \mathbf{if}\;t\_2 \leq -1:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t\_2 \leq -0.05:\\ \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)\\ \mathbf{elif}\;t\_2 \leq 0.1:\\ \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th\\ \mathbf{elif}\;t\_2 \leq 0.9999:\\ \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \sin ky\right)} \cdot th\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
        (FPCore (kx ky th)
         :precision binary64
         (let* ((t_1 (* (/ (sin ky) (hypot (sin ky) kx)) (sin th)))
                (t_2 (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0))))))
           (if (<= t_2 -1.0)
             t_1
             (if (<= t_2 -0.05)
               (*
                (/ (sin ky) (hypot (sin ky) (sin kx)))
                (* (fma (* th th) -0.16666666666666666 1.0) th))
               (if (<= t_2 0.1)
                 (*
                  (/
                   (sin ky)
                   (hypot
                    (*
                     (fma
                      (-
                       (*
                        (fma (* ky ky) -0.0001984126984126984 0.008333333333333333)
                        (* ky ky))
                       0.16666666666666666)
                      (* ky ky)
                      1.0)
                     ky)
                    (sin kx)))
                  (sin th))
                 (if (<= t_2 0.9999)
                   (* (/ (sin ky) (hypot (sin kx) (sin ky))) th)
                   t_1))))))
        double code(double kx, double ky, double th) {
        	double t_1 = (sin(ky) / hypot(sin(ky), kx)) * sin(th);
        	double t_2 = sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)));
        	double tmp;
        	if (t_2 <= -1.0) {
        		tmp = t_1;
        	} else if (t_2 <= -0.05) {
        		tmp = (sin(ky) / hypot(sin(ky), sin(kx))) * (fma((th * th), -0.16666666666666666, 1.0) * th);
        	} else if (t_2 <= 0.1) {
        		tmp = (sin(ky) / hypot((fma(((fma((ky * ky), -0.0001984126984126984, 0.008333333333333333) * (ky * ky)) - 0.16666666666666666), (ky * ky), 1.0) * ky), sin(kx))) * sin(th);
        	} else if (t_2 <= 0.9999) {
        		tmp = (sin(ky) / hypot(sin(kx), sin(ky))) * th;
        	} else {
        		tmp = t_1;
        	}
        	return tmp;
        }
        
        function code(kx, ky, th)
        	t_1 = Float64(Float64(sin(ky) / hypot(sin(ky), kx)) * sin(th))
        	t_2 = Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0))))
        	tmp = 0.0
        	if (t_2 <= -1.0)
        		tmp = t_1;
        	elseif (t_2 <= -0.05)
        		tmp = Float64(Float64(sin(ky) / hypot(sin(ky), sin(kx))) * Float64(fma(Float64(th * th), -0.16666666666666666, 1.0) * th));
        	elseif (t_2 <= 0.1)
        		tmp = Float64(Float64(sin(ky) / hypot(Float64(fma(Float64(Float64(fma(Float64(ky * ky), -0.0001984126984126984, 0.008333333333333333) * Float64(ky * ky)) - 0.16666666666666666), Float64(ky * ky), 1.0) * ky), sin(kx))) * sin(th));
        	elseif (t_2 <= 0.9999)
        		tmp = Float64(Float64(sin(ky) / hypot(sin(kx), sin(ky))) * th);
        	else
        		tmp = t_1;
        	end
        	return tmp
        end
        
        code[kx_, ky_, th_] := Block[{t$95$1 = N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[Sin[ky], $MachinePrecision] ^ 2 + kx ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, -1.0], t$95$1, If[LessEqual[t$95$2, -0.05], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[Sin[ky], $MachinePrecision] ^ 2 + N[Sin[kx], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * N[(N[(N[(th * th), $MachinePrecision] * -0.16666666666666666 + 1.0), $MachinePrecision] * th), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$2, 0.1], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[(N[(N[(N[(N[(ky * ky), $MachinePrecision] * -0.0001984126984126984 + 0.008333333333333333), $MachinePrecision] * N[(ky * ky), $MachinePrecision]), $MachinePrecision] - 0.16666666666666666), $MachinePrecision] * N[(ky * ky), $MachinePrecision] + 1.0), $MachinePrecision] * ky), $MachinePrecision] ^ 2 + N[Sin[kx], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$2, 0.9999], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[Sin[kx], $MachinePrecision] ^ 2 + N[Sin[ky], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * th), $MachinePrecision], t$95$1]]]]]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        t_1 := \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, kx\right)} \cdot \sin th\\
        t_2 := \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}\\
        \mathbf{if}\;t\_2 \leq -1:\\
        \;\;\;\;t\_1\\
        
        \mathbf{elif}\;t\_2 \leq -0.05:\\
        \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)\\
        
        \mathbf{elif}\;t\_2 \leq 0.1:\\
        \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th\\
        
        \mathbf{elif}\;t\_2 \leq 0.9999:\\
        \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \sin ky\right)} \cdot th\\
        
        \mathbf{else}:\\
        \;\;\;\;t\_1\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 4 regimes
        2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < -1 or 0.99990000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

          1. Initial program 82.6%

            \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
          2. Add Preprocessing
          3. Step-by-step derivation
            1. lift-sqrt.f64N/A

              \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
            2. lift-+.f64N/A

              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
            3. lift-pow.f64N/A

              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
            4. lift-sin.f64N/A

              \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
            5. lift-pow.f64N/A

              \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
            6. lift-sin.f64N/A

              \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
            7. +-commutativeN/A

              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
            8. unpow2N/A

              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
            9. unpow2N/A

              \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
            10. lower-hypot.f64N/A

              \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
            11. lift-sin.f64N/A

              \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
            12. lift-sin.f6499.9

              \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
          4. Applied rewrites99.9%

            \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
          5. Taylor expanded in kx around 0

            \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{kx}\right)} \cdot \sin th \]
          6. Step-by-step derivation
            1. Applied rewrites99.9%

              \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{kx}\right)} \cdot \sin th \]

            if -1 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < -0.050000000000000003

            1. Initial program 99.5%

              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
            2. Add Preprocessing
            3. Step-by-step derivation
              1. lift-sqrt.f64N/A

                \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
              2. lift-+.f64N/A

                \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
              3. lift-pow.f64N/A

                \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
              4. lift-sin.f64N/A

                \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
              5. lift-pow.f64N/A

                \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
              6. lift-sin.f64N/A

                \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
              7. +-commutativeN/A

                \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
              8. unpow2N/A

                \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
              9. unpow2N/A

                \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
              10. lower-hypot.f64N/A

                \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
              11. lift-sin.f64N/A

                \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
              12. lift-sin.f6499.5

                \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
            4. Applied rewrites99.5%

              \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
            5. Taylor expanded in th around 0

              \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \color{blue}{\left(th \cdot \left(1 + \frac{-1}{6} \cdot {th}^{2}\right)\right)} \]
            6. Step-by-step derivation
              1. *-commutativeN/A

                \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
              2. lower-*.f64N/A

                \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
              3. +-commutativeN/A

                \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\left(\frac{-1}{6} \cdot {th}^{2} + 1\right) \cdot th\right) \]
              4. *-commutativeN/A

                \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\left({th}^{2} \cdot \frac{-1}{6} + 1\right) \cdot th\right) \]
              5. lower-fma.f64N/A

                \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\mathsf{fma}\left({th}^{2}, \frac{-1}{6}, 1\right) \cdot th\right) \]
              6. unpow2N/A

                \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
              7. lower-*.f6467.0

                \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]
            7. Applied rewrites67.0%

              \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \color{blue}{\left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)} \]

            if -0.050000000000000003 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.10000000000000001

            1. Initial program 99.0%

              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
            2. Add Preprocessing
            3. Step-by-step derivation
              1. lift-sqrt.f64N/A

                \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
              2. lift-+.f64N/A

                \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
              3. lift-pow.f64N/A

                \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
              4. lift-sin.f64N/A

                \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
              5. lift-pow.f64N/A

                \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
              6. lift-sin.f64N/A

                \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
              7. +-commutativeN/A

                \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
              8. unpow2N/A

                \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
              9. unpow2N/A

                \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
              10. lower-hypot.f64N/A

                \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
              11. lift-sin.f64N/A

                \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
              12. lift-sin.f6499.6

                \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
            4. Applied rewrites99.6%

              \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
            5. Taylor expanded in ky around 0

              \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky \cdot \left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right)}, \sin kx\right)} \cdot \sin th \]
            6. Step-by-step derivation
              1. *-commutativeN/A

                \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
              2. lower-*.f64N/A

                \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
            7. Applied rewrites98.6%

              \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}, \sin kx\right)} \cdot \sin th \]

            if 0.10000000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.99990000000000001

            1. Initial program 99.6%

              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
            2. Add Preprocessing
            3. Taylor expanded in th around 0

              \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \color{blue}{th} \]
            4. Step-by-step derivation
              1. Applied rewrites49.1%

                \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \color{blue}{th} \]
              2. Step-by-step derivation
                1. lift-sqrt.f64N/A

                  \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot th \]
                2. lift-+.f64N/A

                  \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot th \]
                3. lift-pow.f64N/A

                  \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot th \]
                4. lift-sin.f64N/A

                  \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot th \]
                5. pow2N/A

                  \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin kx \cdot \sin kx} + {\sin ky}^{2}}} \cdot th \]
                6. lift-pow.f64N/A

                  \[\leadsto \frac{\sin ky}{\sqrt{\sin kx \cdot \sin kx + \color{blue}{{\sin ky}^{2}}}} \cdot th \]
                7. lift-sin.f64N/A

                  \[\leadsto \frac{\sin ky}{\sqrt{\sin kx \cdot \sin kx + {\color{blue}{\sin ky}}^{2}}} \cdot th \]
                8. pow2N/A

                  \[\leadsto \frac{\sin ky}{\sqrt{\sin kx \cdot \sin kx + \color{blue}{\sin ky \cdot \sin ky}}} \cdot th \]
                9. lower-hypot.f64N/A

                  \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin kx, \sin ky\right)}} \cdot th \]
                10. lift-sin.f64N/A

                  \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin kx}, \sin ky\right)} \cdot th \]
                11. lift-sin.f6448.9

                  \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \color{blue}{\sin ky}\right)} \cdot th \]
              3. Applied rewrites48.9%

                \[\leadsto \color{blue}{\frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \sin ky\right)} \cdot th} \]
            5. Recombined 4 regimes into one program.
            6. Add Preprocessing

            Alternative 4: 86.4% accurate, 0.2× speedup?

            \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, kx\right)} \cdot \sin th\\ t_2 := \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}\\ \mathbf{if}\;t\_2 \leq -1:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t\_2 \leq -0.05:\\ \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)\\ \mathbf{elif}\;t\_2 \leq 0.1:\\ \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th\\ \mathbf{elif}\;t\_2 \leq 0.9999:\\ \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \sin ky\right)} \cdot th\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
            (FPCore (kx ky th)
             :precision binary64
             (let* ((t_1 (* (/ (sin ky) (hypot (sin ky) kx)) (sin th)))
                    (t_2 (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0))))))
               (if (<= t_2 -1.0)
                 t_1
                 (if (<= t_2 -0.05)
                   (*
                    (/ (sin ky) (hypot (sin ky) (sin kx)))
                    (* (fma (* th th) -0.16666666666666666 1.0) th))
                   (if (<= t_2 0.1)
                     (*
                      (/
                       (sin ky)
                       (hypot
                        (*
                         (fma
                          (- (* (* ky ky) 0.008333333333333333) 0.16666666666666666)
                          (* ky ky)
                          1.0)
                         ky)
                        (sin kx)))
                      (sin th))
                     (if (<= t_2 0.9999)
                       (* (/ (sin ky) (hypot (sin kx) (sin ky))) th)
                       t_1))))))
            double code(double kx, double ky, double th) {
            	double t_1 = (sin(ky) / hypot(sin(ky), kx)) * sin(th);
            	double t_2 = sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)));
            	double tmp;
            	if (t_2 <= -1.0) {
            		tmp = t_1;
            	} else if (t_2 <= -0.05) {
            		tmp = (sin(ky) / hypot(sin(ky), sin(kx))) * (fma((th * th), -0.16666666666666666, 1.0) * th);
            	} else if (t_2 <= 0.1) {
            		tmp = (sin(ky) / hypot((fma((((ky * ky) * 0.008333333333333333) - 0.16666666666666666), (ky * ky), 1.0) * ky), sin(kx))) * sin(th);
            	} else if (t_2 <= 0.9999) {
            		tmp = (sin(ky) / hypot(sin(kx), sin(ky))) * th;
            	} else {
            		tmp = t_1;
            	}
            	return tmp;
            }
            
            function code(kx, ky, th)
            	t_1 = Float64(Float64(sin(ky) / hypot(sin(ky), kx)) * sin(th))
            	t_2 = Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0))))
            	tmp = 0.0
            	if (t_2 <= -1.0)
            		tmp = t_1;
            	elseif (t_2 <= -0.05)
            		tmp = Float64(Float64(sin(ky) / hypot(sin(ky), sin(kx))) * Float64(fma(Float64(th * th), -0.16666666666666666, 1.0) * th));
            	elseif (t_2 <= 0.1)
            		tmp = Float64(Float64(sin(ky) / hypot(Float64(fma(Float64(Float64(Float64(ky * ky) * 0.008333333333333333) - 0.16666666666666666), Float64(ky * ky), 1.0) * ky), sin(kx))) * sin(th));
            	elseif (t_2 <= 0.9999)
            		tmp = Float64(Float64(sin(ky) / hypot(sin(kx), sin(ky))) * th);
            	else
            		tmp = t_1;
            	end
            	return tmp
            end
            
            code[kx_, ky_, th_] := Block[{t$95$1 = N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[Sin[ky], $MachinePrecision] ^ 2 + kx ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, -1.0], t$95$1, If[LessEqual[t$95$2, -0.05], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[Sin[ky], $MachinePrecision] ^ 2 + N[Sin[kx], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * N[(N[(N[(th * th), $MachinePrecision] * -0.16666666666666666 + 1.0), $MachinePrecision] * th), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$2, 0.1], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[(N[(N[(N[(ky * ky), $MachinePrecision] * 0.008333333333333333), $MachinePrecision] - 0.16666666666666666), $MachinePrecision] * N[(ky * ky), $MachinePrecision] + 1.0), $MachinePrecision] * ky), $MachinePrecision] ^ 2 + N[Sin[kx], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$2, 0.9999], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[Sin[kx], $MachinePrecision] ^ 2 + N[Sin[ky], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * th), $MachinePrecision], t$95$1]]]]]]
            
            \begin{array}{l}
            
            \\
            \begin{array}{l}
            t_1 := \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, kx\right)} \cdot \sin th\\
            t_2 := \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}\\
            \mathbf{if}\;t\_2 \leq -1:\\
            \;\;\;\;t\_1\\
            
            \mathbf{elif}\;t\_2 \leq -0.05:\\
            \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)\\
            
            \mathbf{elif}\;t\_2 \leq 0.1:\\
            \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th\\
            
            \mathbf{elif}\;t\_2 \leq 0.9999:\\
            \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \sin ky\right)} \cdot th\\
            
            \mathbf{else}:\\
            \;\;\;\;t\_1\\
            
            
            \end{array}
            \end{array}
            
            Derivation
            1. Split input into 4 regimes
            2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < -1 or 0.99990000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

              1. Initial program 82.6%

                \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
              2. Add Preprocessing
              3. Step-by-step derivation
                1. lift-sqrt.f64N/A

                  \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                2. lift-+.f64N/A

                  \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                3. lift-pow.f64N/A

                  \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
                4. lift-sin.f64N/A

                  \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                5. lift-pow.f64N/A

                  \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                6. lift-sin.f64N/A

                  \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
                7. +-commutativeN/A

                  \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
                8. unpow2N/A

                  \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
                9. unpow2N/A

                  \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
                10. lower-hypot.f64N/A

                  \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                11. lift-sin.f64N/A

                  \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
                12. lift-sin.f6499.9

                  \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
              4. Applied rewrites99.9%

                \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
              5. Taylor expanded in kx around 0

                \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{kx}\right)} \cdot \sin th \]
              6. Step-by-step derivation
                1. Applied rewrites99.9%

                  \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{kx}\right)} \cdot \sin th \]

                if -1 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < -0.050000000000000003

                1. Initial program 99.5%

                  \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                2. Add Preprocessing
                3. Step-by-step derivation
                  1. lift-sqrt.f64N/A

                    \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                  2. lift-+.f64N/A

                    \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                  3. lift-pow.f64N/A

                    \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
                  4. lift-sin.f64N/A

                    \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                  5. lift-pow.f64N/A

                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                  6. lift-sin.f64N/A

                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
                  7. +-commutativeN/A

                    \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
                  8. unpow2N/A

                    \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
                  9. unpow2N/A

                    \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
                  10. lower-hypot.f64N/A

                    \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                  11. lift-sin.f64N/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
                  12. lift-sin.f6499.5

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
                4. Applied rewrites99.5%

                  \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                5. Taylor expanded in th around 0

                  \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \color{blue}{\left(th \cdot \left(1 + \frac{-1}{6} \cdot {th}^{2}\right)\right)} \]
                6. Step-by-step derivation
                  1. *-commutativeN/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
                  2. lower-*.f64N/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
                  3. +-commutativeN/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\left(\frac{-1}{6} \cdot {th}^{2} + 1\right) \cdot th\right) \]
                  4. *-commutativeN/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\left({th}^{2} \cdot \frac{-1}{6} + 1\right) \cdot th\right) \]
                  5. lower-fma.f64N/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\mathsf{fma}\left({th}^{2}, \frac{-1}{6}, 1\right) \cdot th\right) \]
                  6. unpow2N/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                  7. lower-*.f6467.0

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]
                7. Applied rewrites67.0%

                  \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \color{blue}{\left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)} \]

                if -0.050000000000000003 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.10000000000000001

                1. Initial program 99.0%

                  \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                2. Add Preprocessing
                3. Step-by-step derivation
                  1. lift-sqrt.f64N/A

                    \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                  2. lift-+.f64N/A

                    \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                  3. lift-pow.f64N/A

                    \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
                  4. lift-sin.f64N/A

                    \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                  5. lift-pow.f64N/A

                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                  6. lift-sin.f64N/A

                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
                  7. +-commutativeN/A

                    \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
                  8. unpow2N/A

                    \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
                  9. unpow2N/A

                    \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
                  10. lower-hypot.f64N/A

                    \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                  11. lift-sin.f64N/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
                  12. lift-sin.f6499.6

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
                4. Applied rewrites99.6%

                  \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                5. Taylor expanded in ky around 0

                  \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky \cdot \left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right)}, \sin kx\right)} \cdot \sin th \]
                6. Step-by-step derivation
                  1. *-commutativeN/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                  2. lower-*.f64N/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                  3. +-commutativeN/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\left({ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right) + 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                  4. *-commutativeN/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\left(\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right) \cdot {ky}^{2} + 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                  5. lower-fma.f64N/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                  6. lower--.f64N/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                  7. *-commutativeN/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\mathsf{fma}\left({ky}^{2} \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                  8. lower-*.f64N/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\mathsf{fma}\left({ky}^{2} \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                  9. unpow2N/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                  10. lower-*.f64N/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                  11. unpow2N/A

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                  12. lower-*.f6498.5

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                7. Applied rewrites98.5%

                  \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}, \sin kx\right)} \cdot \sin th \]

                if 0.10000000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.99990000000000001

                1. Initial program 99.6%

                  \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                2. Add Preprocessing
                3. Taylor expanded in th around 0

                  \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \color{blue}{th} \]
                4. Step-by-step derivation
                  1. Applied rewrites49.1%

                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \color{blue}{th} \]
                  2. Step-by-step derivation
                    1. lift-sqrt.f64N/A

                      \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot th \]
                    2. lift-+.f64N/A

                      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot th \]
                    3. lift-pow.f64N/A

                      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot th \]
                    4. lift-sin.f64N/A

                      \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot th \]
                    5. pow2N/A

                      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin kx \cdot \sin kx} + {\sin ky}^{2}}} \cdot th \]
                    6. lift-pow.f64N/A

                      \[\leadsto \frac{\sin ky}{\sqrt{\sin kx \cdot \sin kx + \color{blue}{{\sin ky}^{2}}}} \cdot th \]
                    7. lift-sin.f64N/A

                      \[\leadsto \frac{\sin ky}{\sqrt{\sin kx \cdot \sin kx + {\color{blue}{\sin ky}}^{2}}} \cdot th \]
                    8. pow2N/A

                      \[\leadsto \frac{\sin ky}{\sqrt{\sin kx \cdot \sin kx + \color{blue}{\sin ky \cdot \sin ky}}} \cdot th \]
                    9. lower-hypot.f64N/A

                      \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin kx, \sin ky\right)}} \cdot th \]
                    10. lift-sin.f64N/A

                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin kx}, \sin ky\right)} \cdot th \]
                    11. lift-sin.f6448.9

                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \color{blue}{\sin ky}\right)} \cdot th \]
                  3. Applied rewrites48.9%

                    \[\leadsto \color{blue}{\frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \sin ky\right)} \cdot th} \]
                5. Recombined 4 regimes into one program.
                6. Add Preprocessing

                Alternative 5: 86.4% accurate, 0.2× speedup?

                \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, kx\right)} \cdot \sin th\\ t_2 := \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}\\ \mathbf{if}\;t\_2 \leq -1:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t\_2 \leq -0.05:\\ \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)\\ \mathbf{elif}\;t\_2 \leq 0.1:\\ \;\;\;\;\frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th\\ \mathbf{elif}\;t\_2 \leq 0.9999:\\ \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \sin ky\right)} \cdot th\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
                (FPCore (kx ky th)
                 :precision binary64
                 (let* ((t_1 (* (/ (sin ky) (hypot (sin ky) kx)) (sin th)))
                        (t_2 (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0))))))
                   (if (<= t_2 -1.0)
                     t_1
                     (if (<= t_2 -0.05)
                       (*
                        (/ (sin ky) (hypot (sin ky) (sin kx)))
                        (* (fma (* th th) -0.16666666666666666 1.0) th))
                       (if (<= t_2 0.1)
                         (*
                          (/
                           (*
                            (fma
                             (- (* (* ky ky) 0.008333333333333333) 0.16666666666666666)
                             (* ky ky)
                             1.0)
                            ky)
                           (hypot
                            (*
                             (fma
                              (-
                               (*
                                (fma (* ky ky) -0.0001984126984126984 0.008333333333333333)
                                (* ky ky))
                               0.16666666666666666)
                              (* ky ky)
                              1.0)
                             ky)
                            (sin kx)))
                          (sin th))
                         (if (<= t_2 0.9999)
                           (* (/ (sin ky) (hypot (sin kx) (sin ky))) th)
                           t_1))))))
                double code(double kx, double ky, double th) {
                	double t_1 = (sin(ky) / hypot(sin(ky), kx)) * sin(th);
                	double t_2 = sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)));
                	double tmp;
                	if (t_2 <= -1.0) {
                		tmp = t_1;
                	} else if (t_2 <= -0.05) {
                		tmp = (sin(ky) / hypot(sin(ky), sin(kx))) * (fma((th * th), -0.16666666666666666, 1.0) * th);
                	} else if (t_2 <= 0.1) {
                		tmp = ((fma((((ky * ky) * 0.008333333333333333) - 0.16666666666666666), (ky * ky), 1.0) * ky) / hypot((fma(((fma((ky * ky), -0.0001984126984126984, 0.008333333333333333) * (ky * ky)) - 0.16666666666666666), (ky * ky), 1.0) * ky), sin(kx))) * sin(th);
                	} else if (t_2 <= 0.9999) {
                		tmp = (sin(ky) / hypot(sin(kx), sin(ky))) * th;
                	} else {
                		tmp = t_1;
                	}
                	return tmp;
                }
                
                function code(kx, ky, th)
                	t_1 = Float64(Float64(sin(ky) / hypot(sin(ky), kx)) * sin(th))
                	t_2 = Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0))))
                	tmp = 0.0
                	if (t_2 <= -1.0)
                		tmp = t_1;
                	elseif (t_2 <= -0.05)
                		tmp = Float64(Float64(sin(ky) / hypot(sin(ky), sin(kx))) * Float64(fma(Float64(th * th), -0.16666666666666666, 1.0) * th));
                	elseif (t_2 <= 0.1)
                		tmp = Float64(Float64(Float64(fma(Float64(Float64(Float64(ky * ky) * 0.008333333333333333) - 0.16666666666666666), Float64(ky * ky), 1.0) * ky) / hypot(Float64(fma(Float64(Float64(fma(Float64(ky * ky), -0.0001984126984126984, 0.008333333333333333) * Float64(ky * ky)) - 0.16666666666666666), Float64(ky * ky), 1.0) * ky), sin(kx))) * sin(th));
                	elseif (t_2 <= 0.9999)
                		tmp = Float64(Float64(sin(ky) / hypot(sin(kx), sin(ky))) * th);
                	else
                		tmp = t_1;
                	end
                	return tmp
                end
                
                code[kx_, ky_, th_] := Block[{t$95$1 = N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[Sin[ky], $MachinePrecision] ^ 2 + kx ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, -1.0], t$95$1, If[LessEqual[t$95$2, -0.05], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[Sin[ky], $MachinePrecision] ^ 2 + N[Sin[kx], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * N[(N[(N[(th * th), $MachinePrecision] * -0.16666666666666666 + 1.0), $MachinePrecision] * th), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$2, 0.1], N[(N[(N[(N[(N[(N[(N[(ky * ky), $MachinePrecision] * 0.008333333333333333), $MachinePrecision] - 0.16666666666666666), $MachinePrecision] * N[(ky * ky), $MachinePrecision] + 1.0), $MachinePrecision] * ky), $MachinePrecision] / N[Sqrt[N[(N[(N[(N[(N[(N[(ky * ky), $MachinePrecision] * -0.0001984126984126984 + 0.008333333333333333), $MachinePrecision] * N[(ky * ky), $MachinePrecision]), $MachinePrecision] - 0.16666666666666666), $MachinePrecision] * N[(ky * ky), $MachinePrecision] + 1.0), $MachinePrecision] * ky), $MachinePrecision] ^ 2 + N[Sin[kx], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$2, 0.9999], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[Sin[kx], $MachinePrecision] ^ 2 + N[Sin[ky], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * th), $MachinePrecision], t$95$1]]]]]]
                
                \begin{array}{l}
                
                \\
                \begin{array}{l}
                t_1 := \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, kx\right)} \cdot \sin th\\
                t_2 := \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}\\
                \mathbf{if}\;t\_2 \leq -1:\\
                \;\;\;\;t\_1\\
                
                \mathbf{elif}\;t\_2 \leq -0.05:\\
                \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)\\
                
                \mathbf{elif}\;t\_2 \leq 0.1:\\
                \;\;\;\;\frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th\\
                
                \mathbf{elif}\;t\_2 \leq 0.9999:\\
                \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \sin ky\right)} \cdot th\\
                
                \mathbf{else}:\\
                \;\;\;\;t\_1\\
                
                
                \end{array}
                \end{array}
                
                Derivation
                1. Split input into 4 regimes
                2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < -1 or 0.99990000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

                  1. Initial program 82.6%

                    \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                  2. Add Preprocessing
                  3. Step-by-step derivation
                    1. lift-sqrt.f64N/A

                      \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                    2. lift-+.f64N/A

                      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                    3. lift-pow.f64N/A

                      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
                    4. lift-sin.f64N/A

                      \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                    5. lift-pow.f64N/A

                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                    6. lift-sin.f64N/A

                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
                    7. +-commutativeN/A

                      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
                    8. unpow2N/A

                      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
                    9. unpow2N/A

                      \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
                    10. lower-hypot.f64N/A

                      \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                    11. lift-sin.f64N/A

                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
                    12. lift-sin.f6499.9

                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
                  4. Applied rewrites99.9%

                    \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                  5. Taylor expanded in kx around 0

                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{kx}\right)} \cdot \sin th \]
                  6. Step-by-step derivation
                    1. Applied rewrites99.9%

                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{kx}\right)} \cdot \sin th \]

                    if -1 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < -0.050000000000000003

                    1. Initial program 99.5%

                      \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                    2. Add Preprocessing
                    3. Step-by-step derivation
                      1. lift-sqrt.f64N/A

                        \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                      2. lift-+.f64N/A

                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                      3. lift-pow.f64N/A

                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
                      4. lift-sin.f64N/A

                        \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                      5. lift-pow.f64N/A

                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                      6. lift-sin.f64N/A

                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
                      7. +-commutativeN/A

                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
                      8. unpow2N/A

                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
                      9. unpow2N/A

                        \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
                      10. lower-hypot.f64N/A

                        \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                      11. lift-sin.f64N/A

                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
                      12. lift-sin.f6499.5

                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
                    4. Applied rewrites99.5%

                      \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                    5. Taylor expanded in th around 0

                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \color{blue}{\left(th \cdot \left(1 + \frac{-1}{6} \cdot {th}^{2}\right)\right)} \]
                    6. Step-by-step derivation
                      1. *-commutativeN/A

                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
                      2. lower-*.f64N/A

                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
                      3. +-commutativeN/A

                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\left(\frac{-1}{6} \cdot {th}^{2} + 1\right) \cdot th\right) \]
                      4. *-commutativeN/A

                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\left({th}^{2} \cdot \frac{-1}{6} + 1\right) \cdot th\right) \]
                      5. lower-fma.f64N/A

                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\mathsf{fma}\left({th}^{2}, \frac{-1}{6}, 1\right) \cdot th\right) \]
                      6. unpow2N/A

                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                      7. lower-*.f6467.0

                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]
                    7. Applied rewrites67.0%

                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \sin kx\right)} \cdot \color{blue}{\left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)} \]

                    if -0.050000000000000003 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.10000000000000001

                    1. Initial program 99.0%

                      \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                    2. Add Preprocessing
                    3. Step-by-step derivation
                      1. lift-sqrt.f64N/A

                        \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                      2. lift-+.f64N/A

                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                      3. lift-pow.f64N/A

                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
                      4. lift-sin.f64N/A

                        \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                      5. lift-pow.f64N/A

                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                      6. lift-sin.f64N/A

                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
                      7. +-commutativeN/A

                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
                      8. unpow2N/A

                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
                      9. unpow2N/A

                        \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
                      10. lower-hypot.f64N/A

                        \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                      11. lift-sin.f64N/A

                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
                      12. lift-sin.f6499.6

                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
                    4. Applied rewrites99.6%

                      \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                    5. Taylor expanded in ky around 0

                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky \cdot \left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right)}, \sin kx\right)} \cdot \sin th \]
                    6. Step-by-step derivation
                      1. *-commutativeN/A

                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                      2. lower-*.f64N/A

                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                    7. Applied rewrites98.6%

                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}, \sin kx\right)} \cdot \sin th \]
                    8. Taylor expanded in ky around 0

                      \[\leadsto \frac{\color{blue}{ky \cdot \left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right)}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                    9. Step-by-step derivation
                      1. *-commutativeN/A

                        \[\leadsto \frac{\left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                      2. lower-*.f64N/A

                        \[\leadsto \frac{\left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                      3. +-commutativeN/A

                        \[\leadsto \frac{\left({ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right) + 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                      4. *-commutativeN/A

                        \[\leadsto \frac{\left(\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right) \cdot {ky}^{2} + 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                      5. lower-fma.f64N/A

                        \[\leadsto \frac{\mathsf{fma}\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                      6. lower--.f64N/A

                        \[\leadsto \frac{\mathsf{fma}\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                      7. *-commutativeN/A

                        \[\leadsto \frac{\mathsf{fma}\left({ky}^{2} \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                      8. lower-*.f64N/A

                        \[\leadsto \frac{\mathsf{fma}\left({ky}^{2} \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                      9. pow2N/A

                        \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                      10. lift-*.f64N/A

                        \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                      11. pow2N/A

                        \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                      12. lift-*.f6498.3

                        \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                    10. Applied rewrites98.3%

                      \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]

                    if 0.10000000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.99990000000000001

                    1. Initial program 99.6%

                      \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                    2. Add Preprocessing
                    3. Taylor expanded in th around 0

                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \color{blue}{th} \]
                    4. Step-by-step derivation
                      1. Applied rewrites49.1%

                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \color{blue}{th} \]
                      2. Step-by-step derivation
                        1. lift-sqrt.f64N/A

                          \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot th \]
                        2. lift-+.f64N/A

                          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot th \]
                        3. lift-pow.f64N/A

                          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot th \]
                        4. lift-sin.f64N/A

                          \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot th \]
                        5. pow2N/A

                          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin kx \cdot \sin kx} + {\sin ky}^{2}}} \cdot th \]
                        6. lift-pow.f64N/A

                          \[\leadsto \frac{\sin ky}{\sqrt{\sin kx \cdot \sin kx + \color{blue}{{\sin ky}^{2}}}} \cdot th \]
                        7. lift-sin.f64N/A

                          \[\leadsto \frac{\sin ky}{\sqrt{\sin kx \cdot \sin kx + {\color{blue}{\sin ky}}^{2}}} \cdot th \]
                        8. pow2N/A

                          \[\leadsto \frac{\sin ky}{\sqrt{\sin kx \cdot \sin kx + \color{blue}{\sin ky \cdot \sin ky}}} \cdot th \]
                        9. lower-hypot.f64N/A

                          \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin kx, \sin ky\right)}} \cdot th \]
                        10. lift-sin.f64N/A

                          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin kx}, \sin ky\right)} \cdot th \]
                        11. lift-sin.f6448.9

                          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \color{blue}{\sin ky}\right)} \cdot th \]
                      3. Applied rewrites48.9%

                        \[\leadsto \color{blue}{\frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \sin ky\right)} \cdot th} \]
                    5. Recombined 4 regimes into one program.
                    6. Add Preprocessing

                    Alternative 6: 86.4% accurate, 0.2× speedup?

                    \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, kx\right)} \cdot \sin th\\ t_2 := \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}\\ t_3 := \frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \sin ky\right)} \cdot th\\ \mathbf{if}\;t\_2 \leq -1:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t\_2 \leq -0.05:\\ \;\;\;\;t\_3\\ \mathbf{elif}\;t\_2 \leq 0.1:\\ \;\;\;\;\frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th\\ \mathbf{elif}\;t\_2 \leq 0.9999:\\ \;\;\;\;t\_3\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
                    (FPCore (kx ky th)
                     :precision binary64
                     (let* ((t_1 (* (/ (sin ky) (hypot (sin ky) kx)) (sin th)))
                            (t_2 (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0)))))
                            (t_3 (* (/ (sin ky) (hypot (sin kx) (sin ky))) th)))
                       (if (<= t_2 -1.0)
                         t_1
                         (if (<= t_2 -0.05)
                           t_3
                           (if (<= t_2 0.1)
                             (*
                              (/
                               (*
                                (fma
                                 (- (* (* ky ky) 0.008333333333333333) 0.16666666666666666)
                                 (* ky ky)
                                 1.0)
                                ky)
                               (hypot
                                (*
                                 (fma
                                  (-
                                   (*
                                    (fma (* ky ky) -0.0001984126984126984 0.008333333333333333)
                                    (* ky ky))
                                   0.16666666666666666)
                                  (* ky ky)
                                  1.0)
                                 ky)
                                (sin kx)))
                              (sin th))
                             (if (<= t_2 0.9999) t_3 t_1))))))
                    double code(double kx, double ky, double th) {
                    	double t_1 = (sin(ky) / hypot(sin(ky), kx)) * sin(th);
                    	double t_2 = sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)));
                    	double t_3 = (sin(ky) / hypot(sin(kx), sin(ky))) * th;
                    	double tmp;
                    	if (t_2 <= -1.0) {
                    		tmp = t_1;
                    	} else if (t_2 <= -0.05) {
                    		tmp = t_3;
                    	} else if (t_2 <= 0.1) {
                    		tmp = ((fma((((ky * ky) * 0.008333333333333333) - 0.16666666666666666), (ky * ky), 1.0) * ky) / hypot((fma(((fma((ky * ky), -0.0001984126984126984, 0.008333333333333333) * (ky * ky)) - 0.16666666666666666), (ky * ky), 1.0) * ky), sin(kx))) * sin(th);
                    	} else if (t_2 <= 0.9999) {
                    		tmp = t_3;
                    	} else {
                    		tmp = t_1;
                    	}
                    	return tmp;
                    }
                    
                    function code(kx, ky, th)
                    	t_1 = Float64(Float64(sin(ky) / hypot(sin(ky), kx)) * sin(th))
                    	t_2 = Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0))))
                    	t_3 = Float64(Float64(sin(ky) / hypot(sin(kx), sin(ky))) * th)
                    	tmp = 0.0
                    	if (t_2 <= -1.0)
                    		tmp = t_1;
                    	elseif (t_2 <= -0.05)
                    		tmp = t_3;
                    	elseif (t_2 <= 0.1)
                    		tmp = Float64(Float64(Float64(fma(Float64(Float64(Float64(ky * ky) * 0.008333333333333333) - 0.16666666666666666), Float64(ky * ky), 1.0) * ky) / hypot(Float64(fma(Float64(Float64(fma(Float64(ky * ky), -0.0001984126984126984, 0.008333333333333333) * Float64(ky * ky)) - 0.16666666666666666), Float64(ky * ky), 1.0) * ky), sin(kx))) * sin(th));
                    	elseif (t_2 <= 0.9999)
                    		tmp = t_3;
                    	else
                    		tmp = t_1;
                    	end
                    	return tmp
                    end
                    
                    code[kx_, ky_, th_] := Block[{t$95$1 = N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[Sin[ky], $MachinePrecision] ^ 2 + kx ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$3 = N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[Sin[kx], $MachinePrecision] ^ 2 + N[Sin[ky], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * th), $MachinePrecision]}, If[LessEqual[t$95$2, -1.0], t$95$1, If[LessEqual[t$95$2, -0.05], t$95$3, If[LessEqual[t$95$2, 0.1], N[(N[(N[(N[(N[(N[(N[(ky * ky), $MachinePrecision] * 0.008333333333333333), $MachinePrecision] - 0.16666666666666666), $MachinePrecision] * N[(ky * ky), $MachinePrecision] + 1.0), $MachinePrecision] * ky), $MachinePrecision] / N[Sqrt[N[(N[(N[(N[(N[(N[(ky * ky), $MachinePrecision] * -0.0001984126984126984 + 0.008333333333333333), $MachinePrecision] * N[(ky * ky), $MachinePrecision]), $MachinePrecision] - 0.16666666666666666), $MachinePrecision] * N[(ky * ky), $MachinePrecision] + 1.0), $MachinePrecision] * ky), $MachinePrecision] ^ 2 + N[Sin[kx], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$2, 0.9999], t$95$3, t$95$1]]]]]]]
                    
                    \begin{array}{l}
                    
                    \\
                    \begin{array}{l}
                    t_1 := \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, kx\right)} \cdot \sin th\\
                    t_2 := \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}\\
                    t_3 := \frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \sin ky\right)} \cdot th\\
                    \mathbf{if}\;t\_2 \leq -1:\\
                    \;\;\;\;t\_1\\
                    
                    \mathbf{elif}\;t\_2 \leq -0.05:\\
                    \;\;\;\;t\_3\\
                    
                    \mathbf{elif}\;t\_2 \leq 0.1:\\
                    \;\;\;\;\frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th\\
                    
                    \mathbf{elif}\;t\_2 \leq 0.9999:\\
                    \;\;\;\;t\_3\\
                    
                    \mathbf{else}:\\
                    \;\;\;\;t\_1\\
                    
                    
                    \end{array}
                    \end{array}
                    
                    Derivation
                    1. Split input into 3 regimes
                    2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < -1 or 0.99990000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

                      1. Initial program 82.6%

                        \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                      2. Add Preprocessing
                      3. Step-by-step derivation
                        1. lift-sqrt.f64N/A

                          \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                        2. lift-+.f64N/A

                          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                        3. lift-pow.f64N/A

                          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
                        4. lift-sin.f64N/A

                          \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                        5. lift-pow.f64N/A

                          \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                        6. lift-sin.f64N/A

                          \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
                        7. +-commutativeN/A

                          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
                        8. unpow2N/A

                          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
                        9. unpow2N/A

                          \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
                        10. lower-hypot.f64N/A

                          \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                        11. lift-sin.f64N/A

                          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
                        12. lift-sin.f6499.9

                          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
                      4. Applied rewrites99.9%

                        \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                      5. Taylor expanded in kx around 0

                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{kx}\right)} \cdot \sin th \]
                      6. Step-by-step derivation
                        1. Applied rewrites99.9%

                          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{kx}\right)} \cdot \sin th \]

                        if -1 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < -0.050000000000000003 or 0.10000000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.99990000000000001

                        1. Initial program 99.6%

                          \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                        2. Add Preprocessing
                        3. Taylor expanded in th around 0

                          \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \color{blue}{th} \]
                        4. Step-by-step derivation
                          1. Applied rewrites57.1%

                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \color{blue}{th} \]
                          2. Step-by-step derivation
                            1. lift-sqrt.f64N/A

                              \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot th \]
                            2. lift-+.f64N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot th \]
                            3. lift-pow.f64N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot th \]
                            4. lift-sin.f64N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot th \]
                            5. pow2N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin kx \cdot \sin kx} + {\sin ky}^{2}}} \cdot th \]
                            6. lift-pow.f64N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{\sin kx \cdot \sin kx + \color{blue}{{\sin ky}^{2}}}} \cdot th \]
                            7. lift-sin.f64N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{\sin kx \cdot \sin kx + {\color{blue}{\sin ky}}^{2}}} \cdot th \]
                            8. pow2N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{\sin kx \cdot \sin kx + \color{blue}{\sin ky \cdot \sin ky}}} \cdot th \]
                            9. lower-hypot.f64N/A

                              \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin kx, \sin ky\right)}} \cdot th \]
                            10. lift-sin.f64N/A

                              \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin kx}, \sin ky\right)} \cdot th \]
                            11. lift-sin.f6457.0

                              \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \color{blue}{\sin ky}\right)} \cdot th \]
                          3. Applied rewrites57.0%

                            \[\leadsto \color{blue}{\frac{\sin ky}{\mathsf{hypot}\left(\sin kx, \sin ky\right)} \cdot th} \]

                          if -0.050000000000000003 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.10000000000000001

                          1. Initial program 99.0%

                            \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                          2. Add Preprocessing
                          3. Step-by-step derivation
                            1. lift-sqrt.f64N/A

                              \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                            2. lift-+.f64N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                            3. lift-pow.f64N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
                            4. lift-sin.f64N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                            5. lift-pow.f64N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                            6. lift-sin.f64N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
                            7. +-commutativeN/A

                              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
                            8. unpow2N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
                            9. unpow2N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
                            10. lower-hypot.f64N/A

                              \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                            11. lift-sin.f64N/A

                              \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
                            12. lift-sin.f6499.6

                              \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
                          4. Applied rewrites99.6%

                            \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                          5. Taylor expanded in ky around 0

                            \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky \cdot \left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right)}, \sin kx\right)} \cdot \sin th \]
                          6. Step-by-step derivation
                            1. *-commutativeN/A

                              \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                            2. lower-*.f64N/A

                              \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                          7. Applied rewrites98.6%

                            \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}, \sin kx\right)} \cdot \sin th \]
                          8. Taylor expanded in ky around 0

                            \[\leadsto \frac{\color{blue}{ky \cdot \left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right)}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                          9. Step-by-step derivation
                            1. *-commutativeN/A

                              \[\leadsto \frac{\left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                            2. lower-*.f64N/A

                              \[\leadsto \frac{\left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                            3. +-commutativeN/A

                              \[\leadsto \frac{\left({ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right) + 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                            4. *-commutativeN/A

                              \[\leadsto \frac{\left(\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right) \cdot {ky}^{2} + 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                            5. lower-fma.f64N/A

                              \[\leadsto \frac{\mathsf{fma}\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                            6. lower--.f64N/A

                              \[\leadsto \frac{\mathsf{fma}\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                            7. *-commutativeN/A

                              \[\leadsto \frac{\mathsf{fma}\left({ky}^{2} \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                            8. lower-*.f64N/A

                              \[\leadsto \frac{\mathsf{fma}\left({ky}^{2} \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                            9. pow2N/A

                              \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                            10. lift-*.f64N/A

                              \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                            11. pow2N/A

                              \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                            12. lift-*.f6498.3

                              \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                          10. Applied rewrites98.3%

                            \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                        5. Recombined 3 regimes into one program.
                        6. Add Preprocessing

                        Alternative 7: 66.8% accurate, 0.3× speedup?

                        \[\begin{array}{l} \\ \begin{array}{l} t_1 := {\sin kx}^{2}\\ t_2 := {\sin ky}^{2}\\ t_3 := \frac{\sin ky}{\sqrt{t\_1 + t\_2}}\\ \mathbf{if}\;t\_3 \leq -0.05:\\ \;\;\;\;\frac{\sin ky}{\sqrt{t\_2}} \cdot \left(1 \cdot th\right)\\ \mathbf{elif}\;t\_3 \leq 0.1:\\ \;\;\;\;\frac{ky}{\sqrt{t\_1}} \cdot \sin th\\ \mathbf{elif}\;t\_3 \leq 2:\\ \;\;\;\;\sin th\\ \mathbf{else}:\\ \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(ky, kx\right)} \cdot \sin th\\ \end{array} \end{array} \]
                        (FPCore (kx ky th)
                         :precision binary64
                         (let* ((t_1 (pow (sin kx) 2.0))
                                (t_2 (pow (sin ky) 2.0))
                                (t_3 (/ (sin ky) (sqrt (+ t_1 t_2)))))
                           (if (<= t_3 -0.05)
                             (* (/ (sin ky) (sqrt t_2)) (* 1.0 th))
                             (if (<= t_3 0.1)
                               (* (/ ky (sqrt t_1)) (sin th))
                               (if (<= t_3 2.0) (sin th) (* (/ (sin ky) (hypot ky kx)) (sin th)))))))
                        double code(double kx, double ky, double th) {
                        	double t_1 = pow(sin(kx), 2.0);
                        	double t_2 = pow(sin(ky), 2.0);
                        	double t_3 = sin(ky) / sqrt((t_1 + t_2));
                        	double tmp;
                        	if (t_3 <= -0.05) {
                        		tmp = (sin(ky) / sqrt(t_2)) * (1.0 * th);
                        	} else if (t_3 <= 0.1) {
                        		tmp = (ky / sqrt(t_1)) * sin(th);
                        	} else if (t_3 <= 2.0) {
                        		tmp = sin(th);
                        	} else {
                        		tmp = (sin(ky) / hypot(ky, kx)) * sin(th);
                        	}
                        	return tmp;
                        }
                        
                        public static double code(double kx, double ky, double th) {
                        	double t_1 = Math.pow(Math.sin(kx), 2.0);
                        	double t_2 = Math.pow(Math.sin(ky), 2.0);
                        	double t_3 = Math.sin(ky) / Math.sqrt((t_1 + t_2));
                        	double tmp;
                        	if (t_3 <= -0.05) {
                        		tmp = (Math.sin(ky) / Math.sqrt(t_2)) * (1.0 * th);
                        	} else if (t_3 <= 0.1) {
                        		tmp = (ky / Math.sqrt(t_1)) * Math.sin(th);
                        	} else if (t_3 <= 2.0) {
                        		tmp = Math.sin(th);
                        	} else {
                        		tmp = (Math.sin(ky) / Math.hypot(ky, kx)) * Math.sin(th);
                        	}
                        	return tmp;
                        }
                        
                        def code(kx, ky, th):
                        	t_1 = math.pow(math.sin(kx), 2.0)
                        	t_2 = math.pow(math.sin(ky), 2.0)
                        	t_3 = math.sin(ky) / math.sqrt((t_1 + t_2))
                        	tmp = 0
                        	if t_3 <= -0.05:
                        		tmp = (math.sin(ky) / math.sqrt(t_2)) * (1.0 * th)
                        	elif t_3 <= 0.1:
                        		tmp = (ky / math.sqrt(t_1)) * math.sin(th)
                        	elif t_3 <= 2.0:
                        		tmp = math.sin(th)
                        	else:
                        		tmp = (math.sin(ky) / math.hypot(ky, kx)) * math.sin(th)
                        	return tmp
                        
                        function code(kx, ky, th)
                        	t_1 = sin(kx) ^ 2.0
                        	t_2 = sin(ky) ^ 2.0
                        	t_3 = Float64(sin(ky) / sqrt(Float64(t_1 + t_2)))
                        	tmp = 0.0
                        	if (t_3 <= -0.05)
                        		tmp = Float64(Float64(sin(ky) / sqrt(t_2)) * Float64(1.0 * th));
                        	elseif (t_3 <= 0.1)
                        		tmp = Float64(Float64(ky / sqrt(t_1)) * sin(th));
                        	elseif (t_3 <= 2.0)
                        		tmp = sin(th);
                        	else
                        		tmp = Float64(Float64(sin(ky) / hypot(ky, kx)) * sin(th));
                        	end
                        	return tmp
                        end
                        
                        function tmp_2 = code(kx, ky, th)
                        	t_1 = sin(kx) ^ 2.0;
                        	t_2 = sin(ky) ^ 2.0;
                        	t_3 = sin(ky) / sqrt((t_1 + t_2));
                        	tmp = 0.0;
                        	if (t_3 <= -0.05)
                        		tmp = (sin(ky) / sqrt(t_2)) * (1.0 * th);
                        	elseif (t_3 <= 0.1)
                        		tmp = (ky / sqrt(t_1)) * sin(th);
                        	elseif (t_3 <= 2.0)
                        		tmp = sin(th);
                        	else
                        		tmp = (sin(ky) / hypot(ky, kx)) * sin(th);
                        	end
                        	tmp_2 = tmp;
                        end
                        
                        code[kx_, ky_, th_] := Block[{t$95$1 = N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision]}, Block[{t$95$2 = N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]}, Block[{t$95$3 = N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(t$95$1 + t$95$2), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$3, -0.05], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[t$95$2], $MachinePrecision]), $MachinePrecision] * N[(1.0 * th), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$3, 0.1], N[(N[(ky / N[Sqrt[t$95$1], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$3, 2.0], N[Sin[th], $MachinePrecision], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[ky ^ 2 + kx ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]]]]]]]
                        
                        \begin{array}{l}
                        
                        \\
                        \begin{array}{l}
                        t_1 := {\sin kx}^{2}\\
                        t_2 := {\sin ky}^{2}\\
                        t_3 := \frac{\sin ky}{\sqrt{t\_1 + t\_2}}\\
                        \mathbf{if}\;t\_3 \leq -0.05:\\
                        \;\;\;\;\frac{\sin ky}{\sqrt{t\_2}} \cdot \left(1 \cdot th\right)\\
                        
                        \mathbf{elif}\;t\_3 \leq 0.1:\\
                        \;\;\;\;\frac{ky}{\sqrt{t\_1}} \cdot \sin th\\
                        
                        \mathbf{elif}\;t\_3 \leq 2:\\
                        \;\;\;\;\sin th\\
                        
                        \mathbf{else}:\\
                        \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(ky, kx\right)} \cdot \sin th\\
                        
                        
                        \end{array}
                        \end{array}
                        
                        Derivation
                        1. Split input into 4 regimes
                        2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < -0.050000000000000003

                          1. Initial program 87.8%

                            \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                          2. Add Preprocessing
                          3. Taylor expanded in kx around 0

                            \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                          4. Step-by-step derivation
                            1. lift-sin.f64N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \sin th \]
                            2. lift-pow.f6459.6

                              \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \sin th \]
                          5. Applied rewrites59.6%

                            \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                          6. Taylor expanded in th around 0

                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \color{blue}{\left(th \cdot \left(1 + \frac{-1}{6} \cdot {th}^{2}\right)\right)} \]
                          7. Step-by-step derivation
                            1. *-commutativeN/A

                              \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
                            2. lower-*.f64N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
                            3. +-commutativeN/A

                              \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(\frac{-1}{6} \cdot {th}^{2} + 1\right) \cdot th\right) \]
                            4. *-commutativeN/A

                              \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left({th}^{2} \cdot \frac{-1}{6} + 1\right) \cdot th\right) \]
                            5. lower-fma.f64N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left({th}^{2}, \frac{-1}{6}, 1\right) \cdot th\right) \]
                            6. unpow2N/A

                              \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                            7. lower-*.f6431.2

                              \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]
                          8. Applied rewrites31.2%

                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \color{blue}{\left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)} \]
                          9. Taylor expanded in th around 0

                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(1 \cdot th\right) \]
                          10. Step-by-step derivation
                            1. Applied rewrites31.5%

                              \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(1 \cdot th\right) \]

                            if -0.050000000000000003 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.10000000000000001

                            1. Initial program 99.0%

                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                            2. Add Preprocessing
                            3. Taylor expanded in ky around 0

                              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}}}} \cdot \sin th \]
                            4. Step-by-step derivation
                              1. lift-sin.f64N/A

                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2}}} \cdot \sin th \]
                              2. lift-pow.f6496.7

                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{\color{blue}{2}}}} \cdot \sin th \]
                            5. Applied rewrites96.7%

                              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}}}} \cdot \sin th \]
                            6. Taylor expanded in ky around 0

                              \[\leadsto \frac{\color{blue}{ky}}{\sqrt{{\sin kx}^{2}}} \cdot \sin th \]
                            7. Step-by-step derivation
                              1. Applied rewrites96.2%

                                \[\leadsto \frac{\color{blue}{ky}}{\sqrt{{\sin kx}^{2}}} \cdot \sin th \]

                              if 0.10000000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 2

                              1. Initial program 98.3%

                                \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                              2. Add Preprocessing
                              3. Taylor expanded in kx around 0

                                \[\leadsto \color{blue}{\sin th} \]
                              4. Step-by-step derivation
                                1. lift-sin.f6462.5

                                  \[\leadsto \sin th \]
                              5. Applied rewrites62.5%

                                \[\leadsto \color{blue}{\sin th} \]

                              if 2 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

                              1. Initial program 2.2%

                                \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                              2. Add Preprocessing
                              3. Step-by-step derivation
                                1. lift-sqrt.f64N/A

                                  \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                                2. lift-+.f64N/A

                                  \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                                3. lift-pow.f64N/A

                                  \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
                                4. lift-sin.f64N/A

                                  \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                5. lift-pow.f64N/A

                                  \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                6. lift-sin.f64N/A

                                  \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
                                7. +-commutativeN/A

                                  \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
                                8. unpow2N/A

                                  \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
                                9. unpow2N/A

                                  \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
                                10. lower-hypot.f64N/A

                                  \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                                11. lift-sin.f64N/A

                                  \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
                                12. lift-sin.f6499.7

                                  \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
                              4. Applied rewrites99.7%

                                \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                              5. Taylor expanded in ky around 0

                                \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                              6. Step-by-step derivation
                                1. Applied rewrites99.7%

                                  \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                                2. Taylor expanded in kx around 0

                                  \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(ky, \color{blue}{kx}\right)} \cdot \sin th \]
                                3. Step-by-step derivation
                                  1. Applied rewrites99.7%

                                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(ky, \color{blue}{kx}\right)} \cdot \sin th \]
                                4. Recombined 4 regimes into one program.
                                5. Add Preprocessing

                                Alternative 8: 64.5% accurate, 0.3× speedup?

                                \[\begin{array}{l} \\ \begin{array}{l} t_1 := {\sin kx}^{2}\\ t_2 := \frac{\sin ky}{\sqrt{t\_1 + {\sin ky}^{2}}}\\ \mathbf{if}\;t\_2 \leq -0.05:\\ \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)\\ \mathbf{elif}\;t\_2 \leq 0.1:\\ \;\;\;\;\frac{ky}{\sqrt{t\_1}} \cdot \sin th\\ \mathbf{elif}\;t\_2 \leq 2:\\ \;\;\;\;\sin th\\ \mathbf{else}:\\ \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(ky, kx\right)} \cdot \sin th\\ \end{array} \end{array} \]
                                (FPCore (kx ky th)
                                 :precision binary64
                                 (let* ((t_1 (pow (sin kx) 2.0))
                                        (t_2 (/ (sin ky) (sqrt (+ t_1 (pow (sin ky) 2.0))))))
                                   (if (<= t_2 -0.05)
                                     (*
                                      (/ (sin ky) (sqrt (- 0.5 (* 0.5 (cos (+ ky ky))))))
                                      (* (fma (* th th) -0.16666666666666666 1.0) th))
                                     (if (<= t_2 0.1)
                                       (* (/ ky (sqrt t_1)) (sin th))
                                       (if (<= t_2 2.0) (sin th) (* (/ (sin ky) (hypot ky kx)) (sin th)))))))
                                double code(double kx, double ky, double th) {
                                	double t_1 = pow(sin(kx), 2.0);
                                	double t_2 = sin(ky) / sqrt((t_1 + pow(sin(ky), 2.0)));
                                	double tmp;
                                	if (t_2 <= -0.05) {
                                		tmp = (sin(ky) / sqrt((0.5 - (0.5 * cos((ky + ky)))))) * (fma((th * th), -0.16666666666666666, 1.0) * th);
                                	} else if (t_2 <= 0.1) {
                                		tmp = (ky / sqrt(t_1)) * sin(th);
                                	} else if (t_2 <= 2.0) {
                                		tmp = sin(th);
                                	} else {
                                		tmp = (sin(ky) / hypot(ky, kx)) * sin(th);
                                	}
                                	return tmp;
                                }
                                
                                function code(kx, ky, th)
                                	t_1 = sin(kx) ^ 2.0
                                	t_2 = Float64(sin(ky) / sqrt(Float64(t_1 + (sin(ky) ^ 2.0))))
                                	tmp = 0.0
                                	if (t_2 <= -0.05)
                                		tmp = Float64(Float64(sin(ky) / sqrt(Float64(0.5 - Float64(0.5 * cos(Float64(ky + ky)))))) * Float64(fma(Float64(th * th), -0.16666666666666666, 1.0) * th));
                                	elseif (t_2 <= 0.1)
                                		tmp = Float64(Float64(ky / sqrt(t_1)) * sin(th));
                                	elseif (t_2 <= 2.0)
                                		tmp = sin(th);
                                	else
                                		tmp = Float64(Float64(sin(ky) / hypot(ky, kx)) * sin(th));
                                	end
                                	return tmp
                                end
                                
                                code[kx_, ky_, th_] := Block[{t$95$1 = N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision]}, Block[{t$95$2 = N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(t$95$1 + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, -0.05], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(0.5 - N[(0.5 * N[Cos[N[(ky + ky), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[(N[(N[(th * th), $MachinePrecision] * -0.16666666666666666 + 1.0), $MachinePrecision] * th), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$2, 0.1], N[(N[(ky / N[Sqrt[t$95$1], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$2, 2.0], N[Sin[th], $MachinePrecision], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[ky ^ 2 + kx ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]]]]]]
                                
                                \begin{array}{l}
                                
                                \\
                                \begin{array}{l}
                                t_1 := {\sin kx}^{2}\\
                                t_2 := \frac{\sin ky}{\sqrt{t\_1 + {\sin ky}^{2}}}\\
                                \mathbf{if}\;t\_2 \leq -0.05:\\
                                \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)\\
                                
                                \mathbf{elif}\;t\_2 \leq 0.1:\\
                                \;\;\;\;\frac{ky}{\sqrt{t\_1}} \cdot \sin th\\
                                
                                \mathbf{elif}\;t\_2 \leq 2:\\
                                \;\;\;\;\sin th\\
                                
                                \mathbf{else}:\\
                                \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(ky, kx\right)} \cdot \sin th\\
                                
                                
                                \end{array}
                                \end{array}
                                
                                Derivation
                                1. Split input into 4 regimes
                                2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < -0.050000000000000003

                                  1. Initial program 87.8%

                                    \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                  2. Add Preprocessing
                                  3. Taylor expanded in kx around 0

                                    \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                  4. Step-by-step derivation
                                    1. lift-sin.f64N/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \sin th \]
                                    2. lift-pow.f6459.6

                                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \sin th \]
                                  5. Applied rewrites59.6%

                                    \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                  6. Taylor expanded in th around 0

                                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \color{blue}{\left(th \cdot \left(1 + \frac{-1}{6} \cdot {th}^{2}\right)\right)} \]
                                  7. Step-by-step derivation
                                    1. *-commutativeN/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
                                    2. lower-*.f64N/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
                                    3. +-commutativeN/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(\frac{-1}{6} \cdot {th}^{2} + 1\right) \cdot th\right) \]
                                    4. *-commutativeN/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left({th}^{2} \cdot \frac{-1}{6} + 1\right) \cdot th\right) \]
                                    5. lower-fma.f64N/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left({th}^{2}, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                    6. unpow2N/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                    7. lower-*.f6431.2

                                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]
                                  8. Applied rewrites31.2%

                                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \color{blue}{\left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)} \]
                                  9. Step-by-step derivation
                                    1. lift-pow.f64N/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                    2. lift-sin.f64N/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                    3. pow2N/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \color{blue}{\sin ky}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                    4. sqr-sin-aN/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                    5. lower--.f64N/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                    6. lower-*.f64N/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \color{blue}{\cos \left(2 \cdot ky\right)}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                    7. cos-2N/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \left(\cos ky \cdot \cos ky - \color{blue}{\sin ky \cdot \sin ky}\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                    8. cos-sumN/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                    9. lower-cos.f64N/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                    10. lower-+.f6425.0

                                      \[\leadsto \frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]
                                  10. Applied rewrites25.0%

                                    \[\leadsto \frac{\sin ky}{\sqrt{0.5 - \color{blue}{0.5 \cdot \cos \left(ky + ky\right)}}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]

                                  if -0.050000000000000003 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.10000000000000001

                                  1. Initial program 99.0%

                                    \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                  2. Add Preprocessing
                                  3. Taylor expanded in ky around 0

                                    \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}}}} \cdot \sin th \]
                                  4. Step-by-step derivation
                                    1. lift-sin.f64N/A

                                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2}}} \cdot \sin th \]
                                    2. lift-pow.f6496.7

                                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{\color{blue}{2}}}} \cdot \sin th \]
                                  5. Applied rewrites96.7%

                                    \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}}}} \cdot \sin th \]
                                  6. Taylor expanded in ky around 0

                                    \[\leadsto \frac{\color{blue}{ky}}{\sqrt{{\sin kx}^{2}}} \cdot \sin th \]
                                  7. Step-by-step derivation
                                    1. Applied rewrites96.2%

                                      \[\leadsto \frac{\color{blue}{ky}}{\sqrt{{\sin kx}^{2}}} \cdot \sin th \]

                                    if 0.10000000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 2

                                    1. Initial program 98.3%

                                      \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                    2. Add Preprocessing
                                    3. Taylor expanded in kx around 0

                                      \[\leadsto \color{blue}{\sin th} \]
                                    4. Step-by-step derivation
                                      1. lift-sin.f6462.5

                                        \[\leadsto \sin th \]
                                    5. Applied rewrites62.5%

                                      \[\leadsto \color{blue}{\sin th} \]

                                    if 2 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

                                    1. Initial program 2.2%

                                      \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                    2. Add Preprocessing
                                    3. Step-by-step derivation
                                      1. lift-sqrt.f64N/A

                                        \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                                      2. lift-+.f64N/A

                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                                      3. lift-pow.f64N/A

                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
                                      4. lift-sin.f64N/A

                                        \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                      5. lift-pow.f64N/A

                                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                      6. lift-sin.f64N/A

                                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
                                      7. +-commutativeN/A

                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
                                      8. unpow2N/A

                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
                                      9. unpow2N/A

                                        \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
                                      10. lower-hypot.f64N/A

                                        \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                                      11. lift-sin.f64N/A

                                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
                                      12. lift-sin.f6499.7

                                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
                                    4. Applied rewrites99.7%

                                      \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                                    5. Taylor expanded in ky around 0

                                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                                    6. Step-by-step derivation
                                      1. Applied rewrites99.7%

                                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                                      2. Taylor expanded in kx around 0

                                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(ky, \color{blue}{kx}\right)} \cdot \sin th \]
                                      3. Step-by-step derivation
                                        1. Applied rewrites99.7%

                                          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(ky, \color{blue}{kx}\right)} \cdot \sin th \]
                                      4. Recombined 4 regimes into one program.
                                      5. Add Preprocessing

                                      Alternative 9: 52.4% accurate, 0.3× speedup?

                                      \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}\\ \mathbf{if}\;t\_1 \leq -0.95:\\ \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)\\ \mathbf{elif}\;t\_1 \leq 0.003:\\ \;\;\;\;\frac{\sin ky}{\sin kx} \cdot \sin th\\ \mathbf{elif}\;t\_1 \leq 2:\\ \;\;\;\;\sin th\\ \mathbf{else}:\\ \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(ky, kx\right)} \cdot \sin th\\ \end{array} \end{array} \]
                                      (FPCore (kx ky th)
                                       :precision binary64
                                       (let* ((t_1 (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0))))))
                                         (if (<= t_1 -0.95)
                                           (*
                                            (/ (sin ky) (sqrt (- 0.5 (* 0.5 (cos (+ ky ky))))))
                                            (* (fma (* th th) -0.16666666666666666 1.0) th))
                                           (if (<= t_1 0.003)
                                             (* (/ (sin ky) (sin kx)) (sin th))
                                             (if (<= t_1 2.0) (sin th) (* (/ (sin ky) (hypot ky kx)) (sin th)))))))
                                      double code(double kx, double ky, double th) {
                                      	double t_1 = sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)));
                                      	double tmp;
                                      	if (t_1 <= -0.95) {
                                      		tmp = (sin(ky) / sqrt((0.5 - (0.5 * cos((ky + ky)))))) * (fma((th * th), -0.16666666666666666, 1.0) * th);
                                      	} else if (t_1 <= 0.003) {
                                      		tmp = (sin(ky) / sin(kx)) * sin(th);
                                      	} else if (t_1 <= 2.0) {
                                      		tmp = sin(th);
                                      	} else {
                                      		tmp = (sin(ky) / hypot(ky, kx)) * sin(th);
                                      	}
                                      	return tmp;
                                      }
                                      
                                      function code(kx, ky, th)
                                      	t_1 = Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0))))
                                      	tmp = 0.0
                                      	if (t_1 <= -0.95)
                                      		tmp = Float64(Float64(sin(ky) / sqrt(Float64(0.5 - Float64(0.5 * cos(Float64(ky + ky)))))) * Float64(fma(Float64(th * th), -0.16666666666666666, 1.0) * th));
                                      	elseif (t_1 <= 0.003)
                                      		tmp = Float64(Float64(sin(ky) / sin(kx)) * sin(th));
                                      	elseif (t_1 <= 2.0)
                                      		tmp = sin(th);
                                      	else
                                      		tmp = Float64(Float64(sin(ky) / hypot(ky, kx)) * sin(th));
                                      	end
                                      	return tmp
                                      end
                                      
                                      code[kx_, ky_, th_] := Block[{t$95$1 = N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$1, -0.95], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(0.5 - N[(0.5 * N[Cos[N[(ky + ky), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[(N[(N[(th * th), $MachinePrecision] * -0.16666666666666666 + 1.0), $MachinePrecision] * th), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$1, 0.003], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sin[kx], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$1, 2.0], N[Sin[th], $MachinePrecision], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[ky ^ 2 + kx ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]]]]]
                                      
                                      \begin{array}{l}
                                      
                                      \\
                                      \begin{array}{l}
                                      t_1 := \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}\\
                                      \mathbf{if}\;t\_1 \leq -0.95:\\
                                      \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)\\
                                      
                                      \mathbf{elif}\;t\_1 \leq 0.003:\\
                                      \;\;\;\;\frac{\sin ky}{\sin kx} \cdot \sin th\\
                                      
                                      \mathbf{elif}\;t\_1 \leq 2:\\
                                      \;\;\;\;\sin th\\
                                      
                                      \mathbf{else}:\\
                                      \;\;\;\;\frac{\sin ky}{\mathsf{hypot}\left(ky, kx\right)} \cdot \sin th\\
                                      
                                      
                                      \end{array}
                                      \end{array}
                                      
                                      Derivation
                                      1. Split input into 4 regimes
                                      2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < -0.94999999999999996

                                        1. Initial program 83.4%

                                          \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                        2. Add Preprocessing
                                        3. Taylor expanded in kx around 0

                                          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                        4. Step-by-step derivation
                                          1. lift-sin.f64N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \sin th \]
                                          2. lift-pow.f6474.4

                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \sin th \]
                                        5. Applied rewrites74.4%

                                          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                        6. Taylor expanded in th around 0

                                          \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \color{blue}{\left(th \cdot \left(1 + \frac{-1}{6} \cdot {th}^{2}\right)\right)} \]
                                        7. Step-by-step derivation
                                          1. *-commutativeN/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
                                          2. lower-*.f64N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
                                          3. +-commutativeN/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(\frac{-1}{6} \cdot {th}^{2} + 1\right) \cdot th\right) \]
                                          4. *-commutativeN/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left({th}^{2} \cdot \frac{-1}{6} + 1\right) \cdot th\right) \]
                                          5. lower-fma.f64N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left({th}^{2}, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                          6. unpow2N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                          7. lower-*.f6436.5

                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]
                                        8. Applied rewrites36.5%

                                          \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \color{blue}{\left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)} \]
                                        9. Step-by-step derivation
                                          1. lift-pow.f64N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                          2. lift-sin.f64N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                          3. pow2N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \color{blue}{\sin ky}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                          4. sqr-sin-aN/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                          5. lower--.f64N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                          6. lower-*.f64N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \color{blue}{\cos \left(2 \cdot ky\right)}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                          7. cos-2N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \left(\cos ky \cdot \cos ky - \color{blue}{\sin ky \cdot \sin ky}\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                          8. cos-sumN/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                          9. lower-cos.f64N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                          10. lower-+.f6428.0

                                            \[\leadsto \frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]
                                        10. Applied rewrites28.0%

                                          \[\leadsto \frac{\sin ky}{\sqrt{0.5 - \color{blue}{0.5 \cdot \cos \left(ky + ky\right)}}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]

                                        if -0.94999999999999996 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.0030000000000000001

                                        1. Initial program 99.1%

                                          \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                        2. Add Preprocessing
                                        3. Taylor expanded in ky around 0

                                          \[\leadsto \frac{\sin ky}{\color{blue}{\sin kx}} \cdot \sin th \]
                                        4. Step-by-step derivation
                                          1. lift-sin.f6450.5

                                            \[\leadsto \frac{\sin ky}{\sin kx} \cdot \sin th \]
                                        5. Applied rewrites50.5%

                                          \[\leadsto \frac{\sin ky}{\color{blue}{\sin kx}} \cdot \sin th \]

                                        if 0.0030000000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 2

                                        1. Initial program 98.4%

                                          \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                        2. Add Preprocessing
                                        3. Taylor expanded in kx around 0

                                          \[\leadsto \color{blue}{\sin th} \]
                                        4. Step-by-step derivation
                                          1. lift-sin.f6461.9

                                            \[\leadsto \sin th \]
                                        5. Applied rewrites61.9%

                                          \[\leadsto \color{blue}{\sin th} \]

                                        if 2 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

                                        1. Initial program 2.2%

                                          \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                        2. Add Preprocessing
                                        3. Step-by-step derivation
                                          1. lift-sqrt.f64N/A

                                            \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                                          2. lift-+.f64N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                                          3. lift-pow.f64N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
                                          4. lift-sin.f64N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                          5. lift-pow.f64N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                          6. lift-sin.f64N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
                                          7. +-commutativeN/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
                                          8. unpow2N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
                                          9. unpow2N/A

                                            \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
                                          10. lower-hypot.f64N/A

                                            \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                                          11. lift-sin.f64N/A

                                            \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
                                          12. lift-sin.f6499.7

                                            \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
                                        4. Applied rewrites99.7%

                                          \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                                        5. Taylor expanded in ky around 0

                                          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                                        6. Step-by-step derivation
                                          1. Applied rewrites99.7%

                                            \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                                          2. Taylor expanded in kx around 0

                                            \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(ky, \color{blue}{kx}\right)} \cdot \sin th \]
                                          3. Step-by-step derivation
                                            1. Applied rewrites99.7%

                                              \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(ky, \color{blue}{kx}\right)} \cdot \sin th \]
                                          4. Recombined 4 regimes into one program.
                                          5. Add Preprocessing

                                          Alternative 10: 51.0% accurate, 0.5× speedup?

                                          \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}\\ \mathbf{if}\;t\_1 \leq -0.95:\\ \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)\\ \mathbf{elif}\;t\_1 \leq 0.003:\\ \;\;\;\;\frac{\sin ky}{\sin kx} \cdot \sin th\\ \mathbf{else}:\\ \;\;\;\;\sin th\\ \end{array} \end{array} \]
                                          (FPCore (kx ky th)
                                           :precision binary64
                                           (let* ((t_1 (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0))))))
                                             (if (<= t_1 -0.95)
                                               (*
                                                (/ (sin ky) (sqrt (- 0.5 (* 0.5 (cos (+ ky ky))))))
                                                (* (fma (* th th) -0.16666666666666666 1.0) th))
                                               (if (<= t_1 0.003) (* (/ (sin ky) (sin kx)) (sin th)) (sin th)))))
                                          double code(double kx, double ky, double th) {
                                          	double t_1 = sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)));
                                          	double tmp;
                                          	if (t_1 <= -0.95) {
                                          		tmp = (sin(ky) / sqrt((0.5 - (0.5 * cos((ky + ky)))))) * (fma((th * th), -0.16666666666666666, 1.0) * th);
                                          	} else if (t_1 <= 0.003) {
                                          		tmp = (sin(ky) / sin(kx)) * sin(th);
                                          	} else {
                                          		tmp = sin(th);
                                          	}
                                          	return tmp;
                                          }
                                          
                                          function code(kx, ky, th)
                                          	t_1 = Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0))))
                                          	tmp = 0.0
                                          	if (t_1 <= -0.95)
                                          		tmp = Float64(Float64(sin(ky) / sqrt(Float64(0.5 - Float64(0.5 * cos(Float64(ky + ky)))))) * Float64(fma(Float64(th * th), -0.16666666666666666, 1.0) * th));
                                          	elseif (t_1 <= 0.003)
                                          		tmp = Float64(Float64(sin(ky) / sin(kx)) * sin(th));
                                          	else
                                          		tmp = sin(th);
                                          	end
                                          	return tmp
                                          end
                                          
                                          code[kx_, ky_, th_] := Block[{t$95$1 = N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$1, -0.95], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(0.5 - N[(0.5 * N[Cos[N[(ky + ky), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[(N[(N[(th * th), $MachinePrecision] * -0.16666666666666666 + 1.0), $MachinePrecision] * th), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$1, 0.003], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sin[kx], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], N[Sin[th], $MachinePrecision]]]]
                                          
                                          \begin{array}{l}
                                          
                                          \\
                                          \begin{array}{l}
                                          t_1 := \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}\\
                                          \mathbf{if}\;t\_1 \leq -0.95:\\
                                          \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)\\
                                          
                                          \mathbf{elif}\;t\_1 \leq 0.003:\\
                                          \;\;\;\;\frac{\sin ky}{\sin kx} \cdot \sin th\\
                                          
                                          \mathbf{else}:\\
                                          \;\;\;\;\sin th\\
                                          
                                          
                                          \end{array}
                                          \end{array}
                                          
                                          Derivation
                                          1. Split input into 3 regimes
                                          2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < -0.94999999999999996

                                            1. Initial program 83.4%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in kx around 0

                                              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                            4. Step-by-step derivation
                                              1. lift-sin.f64N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \sin th \]
                                              2. lift-pow.f6474.4

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \sin th \]
                                            5. Applied rewrites74.4%

                                              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                            6. Taylor expanded in th around 0

                                              \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \color{blue}{\left(th \cdot \left(1 + \frac{-1}{6} \cdot {th}^{2}\right)\right)} \]
                                            7. Step-by-step derivation
                                              1. *-commutativeN/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
                                              2. lower-*.f64N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
                                              3. +-commutativeN/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(\frac{-1}{6} \cdot {th}^{2} + 1\right) \cdot th\right) \]
                                              4. *-commutativeN/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left({th}^{2} \cdot \frac{-1}{6} + 1\right) \cdot th\right) \]
                                              5. lower-fma.f64N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left({th}^{2}, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              6. unpow2N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              7. lower-*.f6436.5

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]
                                            8. Applied rewrites36.5%

                                              \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \color{blue}{\left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)} \]
                                            9. Step-by-step derivation
                                              1. lift-pow.f64N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              2. lift-sin.f64N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              3. pow2N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \color{blue}{\sin ky}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              4. sqr-sin-aN/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              5. lower--.f64N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              6. lower-*.f64N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \color{blue}{\cos \left(2 \cdot ky\right)}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              7. cos-2N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \left(\cos ky \cdot \cos ky - \color{blue}{\sin ky \cdot \sin ky}\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              8. cos-sumN/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              9. lower-cos.f64N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              10. lower-+.f6428.0

                                                \[\leadsto \frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]
                                            10. Applied rewrites28.0%

                                              \[\leadsto \frac{\sin ky}{\sqrt{0.5 - \color{blue}{0.5 \cdot \cos \left(ky + ky\right)}}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]

                                            if -0.94999999999999996 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.0030000000000000001

                                            1. Initial program 99.1%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in ky around 0

                                              \[\leadsto \frac{\sin ky}{\color{blue}{\sin kx}} \cdot \sin th \]
                                            4. Step-by-step derivation
                                              1. lift-sin.f6450.5

                                                \[\leadsto \frac{\sin ky}{\sin kx} \cdot \sin th \]
                                            5. Applied rewrites50.5%

                                              \[\leadsto \frac{\sin ky}{\color{blue}{\sin kx}} \cdot \sin th \]

                                            if 0.0030000000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

                                            1. Initial program 91.3%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in kx around 0

                                              \[\leadsto \color{blue}{\sin th} \]
                                            4. Step-by-step derivation
                                              1. lift-sin.f6460.1

                                                \[\leadsto \sin th \]
                                            5. Applied rewrites60.1%

                                              \[\leadsto \color{blue}{\sin th} \]
                                          3. Recombined 3 regimes into one program.
                                          4. Add Preprocessing

                                          Alternative 11: 50.8% accurate, 0.5× speedup?

                                          \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}\\ \mathbf{if}\;t\_1 \leq -0.05:\\ \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)\\ \mathbf{elif}\;t\_1 \leq 0.003:\\ \;\;\;\;\frac{ky}{\sin kx} \cdot \sin th\\ \mathbf{else}:\\ \;\;\;\;\sin th\\ \end{array} \end{array} \]
                                          (FPCore (kx ky th)
                                           :precision binary64
                                           (let* ((t_1 (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0))))))
                                             (if (<= t_1 -0.05)
                                               (*
                                                (/ (sin ky) (sqrt (- 0.5 (* 0.5 (cos (+ ky ky))))))
                                                (* (fma (* th th) -0.16666666666666666 1.0) th))
                                               (if (<= t_1 0.003) (* (/ ky (sin kx)) (sin th)) (sin th)))))
                                          double code(double kx, double ky, double th) {
                                          	double t_1 = sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)));
                                          	double tmp;
                                          	if (t_1 <= -0.05) {
                                          		tmp = (sin(ky) / sqrt((0.5 - (0.5 * cos((ky + ky)))))) * (fma((th * th), -0.16666666666666666, 1.0) * th);
                                          	} else if (t_1 <= 0.003) {
                                          		tmp = (ky / sin(kx)) * sin(th);
                                          	} else {
                                          		tmp = sin(th);
                                          	}
                                          	return tmp;
                                          }
                                          
                                          function code(kx, ky, th)
                                          	t_1 = Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0))))
                                          	tmp = 0.0
                                          	if (t_1 <= -0.05)
                                          		tmp = Float64(Float64(sin(ky) / sqrt(Float64(0.5 - Float64(0.5 * cos(Float64(ky + ky)))))) * Float64(fma(Float64(th * th), -0.16666666666666666, 1.0) * th));
                                          	elseif (t_1 <= 0.003)
                                          		tmp = Float64(Float64(ky / sin(kx)) * sin(th));
                                          	else
                                          		tmp = sin(th);
                                          	end
                                          	return tmp
                                          end
                                          
                                          code[kx_, ky_, th_] := Block[{t$95$1 = N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$1, -0.05], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(0.5 - N[(0.5 * N[Cos[N[(ky + ky), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[(N[(N[(th * th), $MachinePrecision] * -0.16666666666666666 + 1.0), $MachinePrecision] * th), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$1, 0.003], N[(N[(ky / N[Sin[kx], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], N[Sin[th], $MachinePrecision]]]]
                                          
                                          \begin{array}{l}
                                          
                                          \\
                                          \begin{array}{l}
                                          t_1 := \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}\\
                                          \mathbf{if}\;t\_1 \leq -0.05:\\
                                          \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)\\
                                          
                                          \mathbf{elif}\;t\_1 \leq 0.003:\\
                                          \;\;\;\;\frac{ky}{\sin kx} \cdot \sin th\\
                                          
                                          \mathbf{else}:\\
                                          \;\;\;\;\sin th\\
                                          
                                          
                                          \end{array}
                                          \end{array}
                                          
                                          Derivation
                                          1. Split input into 3 regimes
                                          2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < -0.050000000000000003

                                            1. Initial program 87.8%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in kx around 0

                                              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                            4. Step-by-step derivation
                                              1. lift-sin.f64N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \sin th \]
                                              2. lift-pow.f6459.6

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \sin th \]
                                            5. Applied rewrites59.6%

                                              \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                            6. Taylor expanded in th around 0

                                              \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \color{blue}{\left(th \cdot \left(1 + \frac{-1}{6} \cdot {th}^{2}\right)\right)} \]
                                            7. Step-by-step derivation
                                              1. *-commutativeN/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
                                              2. lower-*.f64N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
                                              3. +-commutativeN/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(\frac{-1}{6} \cdot {th}^{2} + 1\right) \cdot th\right) \]
                                              4. *-commutativeN/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left({th}^{2} \cdot \frac{-1}{6} + 1\right) \cdot th\right) \]
                                              5. lower-fma.f64N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left({th}^{2}, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              6. unpow2N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              7. lower-*.f6431.2

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]
                                            8. Applied rewrites31.2%

                                              \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \color{blue}{\left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)} \]
                                            9. Step-by-step derivation
                                              1. lift-pow.f64N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              2. lift-sin.f64N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              3. pow2N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \color{blue}{\sin ky}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              4. sqr-sin-aN/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              5. lower--.f64N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              6. lower-*.f64N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \color{blue}{\cos \left(2 \cdot ky\right)}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              7. cos-2N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \left(\cos ky \cdot \cos ky - \color{blue}{\sin ky \cdot \sin ky}\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              8. cos-sumN/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              9. lower-cos.f64N/A

                                                \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                              10. lower-+.f6425.0

                                                \[\leadsto \frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]
                                            10. Applied rewrites25.0%

                                              \[\leadsto \frac{\sin ky}{\sqrt{0.5 - \color{blue}{0.5 \cdot \cos \left(ky + ky\right)}}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]

                                            if -0.050000000000000003 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.0030000000000000001

                                            1. Initial program 99.0%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in ky around 0

                                              \[\leadsto \color{blue}{\frac{ky}{\sin kx}} \cdot \sin th \]
                                            4. Step-by-step derivation
                                              1. lower-/.f64N/A

                                                \[\leadsto \frac{ky}{\color{blue}{\sin kx}} \cdot \sin th \]
                                              2. lift-sin.f6460.0

                                                \[\leadsto \frac{ky}{\sin kx} \cdot \sin th \]
                                            5. Applied rewrites60.0%

                                              \[\leadsto \color{blue}{\frac{ky}{\sin kx}} \cdot \sin th \]

                                            if 0.0030000000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

                                            1. Initial program 91.3%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in kx around 0

                                              \[\leadsto \color{blue}{\sin th} \]
                                            4. Step-by-step derivation
                                              1. lift-sin.f6460.1

                                                \[\leadsto \sin th \]
                                            5. Applied rewrites60.1%

                                              \[\leadsto \color{blue}{\sin th} \]
                                          3. Recombined 3 regimes into one program.
                                          4. Add Preprocessing

                                          Alternative 12: 44.9% accurate, 0.8× speedup?

                                          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \leq 0.003:\\ \;\;\;\;\frac{ky}{\sin kx} \cdot \sin th\\ \mathbf{else}:\\ \;\;\;\;\sin th\\ \end{array} \end{array} \]
                                          (FPCore (kx ky th)
                                           :precision binary64
                                           (if (<= (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0)))) 0.003)
                                             (* (/ ky (sin kx)) (sin th))
                                             (sin th)))
                                          double code(double kx, double ky, double th) {
                                          	double tmp;
                                          	if ((sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)))) <= 0.003) {
                                          		tmp = (ky / sin(kx)) * sin(th);
                                          	} else {
                                          		tmp = sin(th);
                                          	}
                                          	return tmp;
                                          }
                                          
                                          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(kx, ky, th)
                                          use fmin_fmax_functions
                                              real(8), intent (in) :: kx
                                              real(8), intent (in) :: ky
                                              real(8), intent (in) :: th
                                              real(8) :: tmp
                                              if ((sin(ky) / sqrt(((sin(kx) ** 2.0d0) + (sin(ky) ** 2.0d0)))) <= 0.003d0) then
                                                  tmp = (ky / sin(kx)) * sin(th)
                                              else
                                                  tmp = sin(th)
                                              end if
                                              code = tmp
                                          end function
                                          
                                          public static double code(double kx, double ky, double th) {
                                          	double tmp;
                                          	if ((Math.sin(ky) / Math.sqrt((Math.pow(Math.sin(kx), 2.0) + Math.pow(Math.sin(ky), 2.0)))) <= 0.003) {
                                          		tmp = (ky / Math.sin(kx)) * Math.sin(th);
                                          	} else {
                                          		tmp = Math.sin(th);
                                          	}
                                          	return tmp;
                                          }
                                          
                                          def code(kx, ky, th):
                                          	tmp = 0
                                          	if (math.sin(ky) / math.sqrt((math.pow(math.sin(kx), 2.0) + math.pow(math.sin(ky), 2.0)))) <= 0.003:
                                          		tmp = (ky / math.sin(kx)) * math.sin(th)
                                          	else:
                                          		tmp = math.sin(th)
                                          	return tmp
                                          
                                          function code(kx, ky, th)
                                          	tmp = 0.0
                                          	if (Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) <= 0.003)
                                          		tmp = Float64(Float64(ky / sin(kx)) * sin(th));
                                          	else
                                          		tmp = sin(th);
                                          	end
                                          	return tmp
                                          end
                                          
                                          function tmp_2 = code(kx, ky, th)
                                          	tmp = 0.0;
                                          	if ((sin(ky) / sqrt(((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) <= 0.003)
                                          		tmp = (ky / sin(kx)) * sin(th);
                                          	else
                                          		tmp = sin(th);
                                          	end
                                          	tmp_2 = tmp;
                                          end
                                          
                                          code[kx_, ky_, th_] := If[LessEqual[N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 0.003], N[(N[(ky / N[Sin[kx], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], N[Sin[th], $MachinePrecision]]
                                          
                                          \begin{array}{l}
                                          
                                          \\
                                          \begin{array}{l}
                                          \mathbf{if}\;\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \leq 0.003:\\
                                          \;\;\;\;\frac{ky}{\sin kx} \cdot \sin th\\
                                          
                                          \mathbf{else}:\\
                                          \;\;\;\;\sin th\\
                                          
                                          
                                          \end{array}
                                          \end{array}
                                          
                                          Derivation
                                          1. Split input into 2 regimes
                                          2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.0030000000000000001

                                            1. Initial program 93.8%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in ky around 0

                                              \[\leadsto \color{blue}{\frac{ky}{\sin kx}} \cdot \sin th \]
                                            4. Step-by-step derivation
                                              1. lower-/.f64N/A

                                                \[\leadsto \frac{ky}{\color{blue}{\sin kx}} \cdot \sin th \]
                                              2. lift-sin.f6435.0

                                                \[\leadsto \frac{ky}{\sin kx} \cdot \sin th \]
                                            5. Applied rewrites35.0%

                                              \[\leadsto \color{blue}{\frac{ky}{\sin kx}} \cdot \sin th \]

                                            if 0.0030000000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

                                            1. Initial program 91.3%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in kx around 0

                                              \[\leadsto \color{blue}{\sin th} \]
                                            4. Step-by-step derivation
                                              1. lift-sin.f6460.1

                                                \[\leadsto \sin th \]
                                            5. Applied rewrites60.1%

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

                                          Alternative 13: 44.2% accurate, 0.8× speedup?

                                          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \leq 0.003:\\ \;\;\;\;\frac{\sin th \cdot ky}{\sin kx}\\ \mathbf{else}:\\ \;\;\;\;\sin th\\ \end{array} \end{array} \]
                                          (FPCore (kx ky th)
                                           :precision binary64
                                           (if (<= (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0)))) 0.003)
                                             (/ (* (sin th) ky) (sin kx))
                                             (sin th)))
                                          double code(double kx, double ky, double th) {
                                          	double tmp;
                                          	if ((sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)))) <= 0.003) {
                                          		tmp = (sin(th) * ky) / sin(kx);
                                          	} else {
                                          		tmp = sin(th);
                                          	}
                                          	return tmp;
                                          }
                                          
                                          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(kx, ky, th)
                                          use fmin_fmax_functions
                                              real(8), intent (in) :: kx
                                              real(8), intent (in) :: ky
                                              real(8), intent (in) :: th
                                              real(8) :: tmp
                                              if ((sin(ky) / sqrt(((sin(kx) ** 2.0d0) + (sin(ky) ** 2.0d0)))) <= 0.003d0) then
                                                  tmp = (sin(th) * ky) / sin(kx)
                                              else
                                                  tmp = sin(th)
                                              end if
                                              code = tmp
                                          end function
                                          
                                          public static double code(double kx, double ky, double th) {
                                          	double tmp;
                                          	if ((Math.sin(ky) / Math.sqrt((Math.pow(Math.sin(kx), 2.0) + Math.pow(Math.sin(ky), 2.0)))) <= 0.003) {
                                          		tmp = (Math.sin(th) * ky) / Math.sin(kx);
                                          	} else {
                                          		tmp = Math.sin(th);
                                          	}
                                          	return tmp;
                                          }
                                          
                                          def code(kx, ky, th):
                                          	tmp = 0
                                          	if (math.sin(ky) / math.sqrt((math.pow(math.sin(kx), 2.0) + math.pow(math.sin(ky), 2.0)))) <= 0.003:
                                          		tmp = (math.sin(th) * ky) / math.sin(kx)
                                          	else:
                                          		tmp = math.sin(th)
                                          	return tmp
                                          
                                          function code(kx, ky, th)
                                          	tmp = 0.0
                                          	if (Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) <= 0.003)
                                          		tmp = Float64(Float64(sin(th) * ky) / sin(kx));
                                          	else
                                          		tmp = sin(th);
                                          	end
                                          	return tmp
                                          end
                                          
                                          function tmp_2 = code(kx, ky, th)
                                          	tmp = 0.0;
                                          	if ((sin(ky) / sqrt(((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) <= 0.003)
                                          		tmp = (sin(th) * ky) / sin(kx);
                                          	else
                                          		tmp = sin(th);
                                          	end
                                          	tmp_2 = tmp;
                                          end
                                          
                                          code[kx_, ky_, th_] := If[LessEqual[N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 0.003], N[(N[(N[Sin[th], $MachinePrecision] * ky), $MachinePrecision] / N[Sin[kx], $MachinePrecision]), $MachinePrecision], N[Sin[th], $MachinePrecision]]
                                          
                                          \begin{array}{l}
                                          
                                          \\
                                          \begin{array}{l}
                                          \mathbf{if}\;\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \leq 0.003:\\
                                          \;\;\;\;\frac{\sin th \cdot ky}{\sin kx}\\
                                          
                                          \mathbf{else}:\\
                                          \;\;\;\;\sin th\\
                                          
                                          
                                          \end{array}
                                          \end{array}
                                          
                                          Derivation
                                          1. Split input into 2 regimes
                                          2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.0030000000000000001

                                            1. Initial program 93.8%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in ky around 0

                                              \[\leadsto \color{blue}{\frac{ky \cdot \sin th}{\sin kx}} \]
                                            4. Step-by-step derivation
                                              1. lower-/.f64N/A

                                                \[\leadsto \frac{ky \cdot \sin th}{\color{blue}{\sin kx}} \]
                                              2. *-commutativeN/A

                                                \[\leadsto \frac{\sin th \cdot ky}{\sin \color{blue}{kx}} \]
                                              3. lower-*.f64N/A

                                                \[\leadsto \frac{\sin th \cdot ky}{\sin \color{blue}{kx}} \]
                                              4. lift-sin.f64N/A

                                                \[\leadsto \frac{\sin th \cdot ky}{\sin kx} \]
                                              5. lift-sin.f6433.0

                                                \[\leadsto \frac{\sin th \cdot ky}{\sin kx} \]
                                            5. Applied rewrites33.0%

                                              \[\leadsto \color{blue}{\frac{\sin th \cdot ky}{\sin kx}} \]

                                            if 0.0030000000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

                                            1. Initial program 91.3%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in kx around 0

                                              \[\leadsto \color{blue}{\sin th} \]
                                            4. Step-by-step derivation
                                              1. lift-sin.f6460.1

                                                \[\leadsto \sin th \]
                                            5. Applied rewrites60.1%

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

                                          Alternative 14: 36.8% accurate, 0.9× speedup?

                                          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \leq 0.003:\\ \;\;\;\;\frac{ky}{\mathsf{fma}\left(\mathsf{fma}\left(-0.0001984126984126984, kx \cdot kx, 0.008333333333333333\right) \cdot \left(kx \cdot kx\right) - 0.16666666666666666, kx \cdot kx, 1\right) \cdot kx} \cdot \sin th\\ \mathbf{else}:\\ \;\;\;\;\sin th\\ \end{array} \end{array} \]
                                          (FPCore (kx ky th)
                                           :precision binary64
                                           (if (<= (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0)))) 0.003)
                                             (*
                                              (/
                                               ky
                                               (*
                                                (fma
                                                 (-
                                                  (*
                                                   (fma -0.0001984126984126984 (* kx kx) 0.008333333333333333)
                                                   (* kx kx))
                                                  0.16666666666666666)
                                                 (* kx kx)
                                                 1.0)
                                                kx))
                                              (sin th))
                                             (sin th)))
                                          double code(double kx, double ky, double th) {
                                          	double tmp;
                                          	if ((sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)))) <= 0.003) {
                                          		tmp = (ky / (fma(((fma(-0.0001984126984126984, (kx * kx), 0.008333333333333333) * (kx * kx)) - 0.16666666666666666), (kx * kx), 1.0) * kx)) * sin(th);
                                          	} else {
                                          		tmp = sin(th);
                                          	}
                                          	return tmp;
                                          }
                                          
                                          function code(kx, ky, th)
                                          	tmp = 0.0
                                          	if (Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) <= 0.003)
                                          		tmp = Float64(Float64(ky / Float64(fma(Float64(Float64(fma(-0.0001984126984126984, Float64(kx * kx), 0.008333333333333333) * Float64(kx * kx)) - 0.16666666666666666), Float64(kx * kx), 1.0) * kx)) * sin(th));
                                          	else
                                          		tmp = sin(th);
                                          	end
                                          	return tmp
                                          end
                                          
                                          code[kx_, ky_, th_] := If[LessEqual[N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 0.003], N[(N[(ky / N[(N[(N[(N[(N[(-0.0001984126984126984 * N[(kx * kx), $MachinePrecision] + 0.008333333333333333), $MachinePrecision] * N[(kx * kx), $MachinePrecision]), $MachinePrecision] - 0.16666666666666666), $MachinePrecision] * N[(kx * kx), $MachinePrecision] + 1.0), $MachinePrecision] * kx), $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], N[Sin[th], $MachinePrecision]]
                                          
                                          \begin{array}{l}
                                          
                                          \\
                                          \begin{array}{l}
                                          \mathbf{if}\;\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \leq 0.003:\\
                                          \;\;\;\;\frac{ky}{\mathsf{fma}\left(\mathsf{fma}\left(-0.0001984126984126984, kx \cdot kx, 0.008333333333333333\right) \cdot \left(kx \cdot kx\right) - 0.16666666666666666, kx \cdot kx, 1\right) \cdot kx} \cdot \sin th\\
                                          
                                          \mathbf{else}:\\
                                          \;\;\;\;\sin th\\
                                          
                                          
                                          \end{array}
                                          \end{array}
                                          
                                          Derivation
                                          1. Split input into 2 regimes
                                          2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.0030000000000000001

                                            1. Initial program 93.8%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in ky around 0

                                              \[\leadsto \color{blue}{\frac{ky}{\sin kx}} \cdot \sin th \]
                                            4. Step-by-step derivation
                                              1. lower-/.f64N/A

                                                \[\leadsto \frac{ky}{\color{blue}{\sin kx}} \cdot \sin th \]
                                              2. lift-sin.f6435.0

                                                \[\leadsto \frac{ky}{\sin kx} \cdot \sin th \]
                                            5. Applied rewrites35.0%

                                              \[\leadsto \color{blue}{\frac{ky}{\sin kx}} \cdot \sin th \]
                                            6. Taylor expanded in kx around 0

                                              \[\leadsto \frac{ky}{kx \cdot \color{blue}{\left(1 + {kx}^{2} \cdot \left({kx}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {kx}^{2}\right) - \frac{1}{6}\right)\right)}} \cdot \sin th \]
                                            7. Step-by-step derivation
                                              1. *-commutativeN/A

                                                \[\leadsto \frac{ky}{\left(1 + {kx}^{2} \cdot \left({kx}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {kx}^{2}\right) - \frac{1}{6}\right)\right) \cdot kx} \cdot \sin th \]
                                              2. lower-*.f64N/A

                                                \[\leadsto \frac{ky}{\left(1 + {kx}^{2} \cdot \left({kx}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {kx}^{2}\right) - \frac{1}{6}\right)\right) \cdot kx} \cdot \sin th \]
                                            8. Applied rewrites22.5%

                                              \[\leadsto \frac{ky}{\mathsf{fma}\left(\mathsf{fma}\left(-0.0001984126984126984, kx \cdot kx, 0.008333333333333333\right) \cdot \left(kx \cdot kx\right) - 0.16666666666666666, kx \cdot kx, 1\right) \cdot \color{blue}{kx}} \cdot \sin th \]

                                            if 0.0030000000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

                                            1. Initial program 91.3%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in kx around 0

                                              \[\leadsto \color{blue}{\sin th} \]
                                            4. Step-by-step derivation
                                              1. lift-sin.f6460.1

                                                \[\leadsto \sin th \]
                                            5. Applied rewrites60.1%

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

                                          Alternative 15: 36.8% accurate, 0.9× speedup?

                                          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \leq 0.003:\\ \;\;\;\;\frac{ky}{\mathsf{fma}\left(0.008333333333333333 \cdot \left(kx \cdot kx\right) - 0.16666666666666666, kx \cdot kx, 1\right) \cdot kx} \cdot \sin th\\ \mathbf{else}:\\ \;\;\;\;\sin th\\ \end{array} \end{array} \]
                                          (FPCore (kx ky th)
                                           :precision binary64
                                           (if (<= (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0)))) 0.003)
                                             (*
                                              (/
                                               ky
                                               (*
                                                (fma
                                                 (- (* 0.008333333333333333 (* kx kx)) 0.16666666666666666)
                                                 (* kx kx)
                                                 1.0)
                                                kx))
                                              (sin th))
                                             (sin th)))
                                          double code(double kx, double ky, double th) {
                                          	double tmp;
                                          	if ((sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)))) <= 0.003) {
                                          		tmp = (ky / (fma(((0.008333333333333333 * (kx * kx)) - 0.16666666666666666), (kx * kx), 1.0) * kx)) * sin(th);
                                          	} else {
                                          		tmp = sin(th);
                                          	}
                                          	return tmp;
                                          }
                                          
                                          function code(kx, ky, th)
                                          	tmp = 0.0
                                          	if (Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) <= 0.003)
                                          		tmp = Float64(Float64(ky / Float64(fma(Float64(Float64(0.008333333333333333 * Float64(kx * kx)) - 0.16666666666666666), Float64(kx * kx), 1.0) * kx)) * sin(th));
                                          	else
                                          		tmp = sin(th);
                                          	end
                                          	return tmp
                                          end
                                          
                                          code[kx_, ky_, th_] := If[LessEqual[N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 0.003], N[(N[(ky / N[(N[(N[(N[(0.008333333333333333 * N[(kx * kx), $MachinePrecision]), $MachinePrecision] - 0.16666666666666666), $MachinePrecision] * N[(kx * kx), $MachinePrecision] + 1.0), $MachinePrecision] * kx), $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], N[Sin[th], $MachinePrecision]]
                                          
                                          \begin{array}{l}
                                          
                                          \\
                                          \begin{array}{l}
                                          \mathbf{if}\;\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \leq 0.003:\\
                                          \;\;\;\;\frac{ky}{\mathsf{fma}\left(0.008333333333333333 \cdot \left(kx \cdot kx\right) - 0.16666666666666666, kx \cdot kx, 1\right) \cdot kx} \cdot \sin th\\
                                          
                                          \mathbf{else}:\\
                                          \;\;\;\;\sin th\\
                                          
                                          
                                          \end{array}
                                          \end{array}
                                          
                                          Derivation
                                          1. Split input into 2 regimes
                                          2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.0030000000000000001

                                            1. Initial program 93.8%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in ky around 0

                                              \[\leadsto \color{blue}{\frac{ky}{\sin kx}} \cdot \sin th \]
                                            4. Step-by-step derivation
                                              1. lower-/.f64N/A

                                                \[\leadsto \frac{ky}{\color{blue}{\sin kx}} \cdot \sin th \]
                                              2. lift-sin.f6435.0

                                                \[\leadsto \frac{ky}{\sin kx} \cdot \sin th \]
                                            5. Applied rewrites35.0%

                                              \[\leadsto \color{blue}{\frac{ky}{\sin kx}} \cdot \sin th \]
                                            6. Taylor expanded in kx around 0

                                              \[\leadsto \frac{ky}{kx \cdot \color{blue}{\left(1 + {kx}^{2} \cdot \left(\frac{1}{120} \cdot {kx}^{2} - \frac{1}{6}\right)\right)}} \cdot \sin th \]
                                            7. Step-by-step derivation
                                              1. *-commutativeN/A

                                                \[\leadsto \frac{ky}{\left(1 + {kx}^{2} \cdot \left(\frac{1}{120} \cdot {kx}^{2} - \frac{1}{6}\right)\right) \cdot kx} \cdot \sin th \]
                                              2. lower-*.f64N/A

                                                \[\leadsto \frac{ky}{\left(1 + {kx}^{2} \cdot \left(\frac{1}{120} \cdot {kx}^{2} - \frac{1}{6}\right)\right) \cdot kx} \cdot \sin th \]
                                              3. +-commutativeN/A

                                                \[\leadsto \frac{ky}{\left({kx}^{2} \cdot \left(\frac{1}{120} \cdot {kx}^{2} - \frac{1}{6}\right) + 1\right) \cdot kx} \cdot \sin th \]
                                              4. *-commutativeN/A

                                                \[\leadsto \frac{ky}{\left(\left(\frac{1}{120} \cdot {kx}^{2} - \frac{1}{6}\right) \cdot {kx}^{2} + 1\right) \cdot kx} \cdot \sin th \]
                                              5. lower-fma.f64N/A

                                                \[\leadsto \frac{ky}{\mathsf{fma}\left(\frac{1}{120} \cdot {kx}^{2} - \frac{1}{6}, {kx}^{2}, 1\right) \cdot kx} \cdot \sin th \]
                                              6. lower--.f64N/A

                                                \[\leadsto \frac{ky}{\mathsf{fma}\left(\frac{1}{120} \cdot {kx}^{2} - \frac{1}{6}, {kx}^{2}, 1\right) \cdot kx} \cdot \sin th \]
                                              7. lower-*.f64N/A

                                                \[\leadsto \frac{ky}{\mathsf{fma}\left(\frac{1}{120} \cdot {kx}^{2} - \frac{1}{6}, {kx}^{2}, 1\right) \cdot kx} \cdot \sin th \]
                                              8. unpow2N/A

                                                \[\leadsto \frac{ky}{\mathsf{fma}\left(\frac{1}{120} \cdot \left(kx \cdot kx\right) - \frac{1}{6}, {kx}^{2}, 1\right) \cdot kx} \cdot \sin th \]
                                              9. lower-*.f64N/A

                                                \[\leadsto \frac{ky}{\mathsf{fma}\left(\frac{1}{120} \cdot \left(kx \cdot kx\right) - \frac{1}{6}, {kx}^{2}, 1\right) \cdot kx} \cdot \sin th \]
                                              10. unpow2N/A

                                                \[\leadsto \frac{ky}{\mathsf{fma}\left(\frac{1}{120} \cdot \left(kx \cdot kx\right) - \frac{1}{6}, kx \cdot kx, 1\right) \cdot kx} \cdot \sin th \]
                                              11. lower-*.f6422.6

                                                \[\leadsto \frac{ky}{\mathsf{fma}\left(0.008333333333333333 \cdot \left(kx \cdot kx\right) - 0.16666666666666666, kx \cdot kx, 1\right) \cdot kx} \cdot \sin th \]
                                            8. Applied rewrites22.6%

                                              \[\leadsto \frac{ky}{\mathsf{fma}\left(0.008333333333333333 \cdot \left(kx \cdot kx\right) - 0.16666666666666666, kx \cdot kx, 1\right) \cdot \color{blue}{kx}} \cdot \sin th \]

                                            if 0.0030000000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

                                            1. Initial program 91.3%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in kx around 0

                                              \[\leadsto \color{blue}{\sin th} \]
                                            4. Step-by-step derivation
                                              1. lift-sin.f6460.1

                                                \[\leadsto \sin th \]
                                            5. Applied rewrites60.1%

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

                                          Alternative 16: 36.8% accurate, 1.0× speedup?

                                          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \leq 0.003:\\ \;\;\;\;\frac{ky}{\mathsf{fma}\left(kx \cdot kx, -0.16666666666666666, 1\right) \cdot kx} \cdot \sin th\\ \mathbf{else}:\\ \;\;\;\;\sin th\\ \end{array} \end{array} \]
                                          (FPCore (kx ky th)
                                           :precision binary64
                                           (if (<= (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0)))) 0.003)
                                             (* (/ ky (* (fma (* kx kx) -0.16666666666666666 1.0) kx)) (sin th))
                                             (sin th)))
                                          double code(double kx, double ky, double th) {
                                          	double tmp;
                                          	if ((sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)))) <= 0.003) {
                                          		tmp = (ky / (fma((kx * kx), -0.16666666666666666, 1.0) * kx)) * sin(th);
                                          	} else {
                                          		tmp = sin(th);
                                          	}
                                          	return tmp;
                                          }
                                          
                                          function code(kx, ky, th)
                                          	tmp = 0.0
                                          	if (Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) <= 0.003)
                                          		tmp = Float64(Float64(ky / Float64(fma(Float64(kx * kx), -0.16666666666666666, 1.0) * kx)) * sin(th));
                                          	else
                                          		tmp = sin(th);
                                          	end
                                          	return tmp
                                          end
                                          
                                          code[kx_, ky_, th_] := If[LessEqual[N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 0.003], N[(N[(ky / N[(N[(N[(kx * kx), $MachinePrecision] * -0.16666666666666666 + 1.0), $MachinePrecision] * kx), $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], N[Sin[th], $MachinePrecision]]
                                          
                                          \begin{array}{l}
                                          
                                          \\
                                          \begin{array}{l}
                                          \mathbf{if}\;\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \leq 0.003:\\
                                          \;\;\;\;\frac{ky}{\mathsf{fma}\left(kx \cdot kx, -0.16666666666666666, 1\right) \cdot kx} \cdot \sin th\\
                                          
                                          \mathbf{else}:\\
                                          \;\;\;\;\sin th\\
                                          
                                          
                                          \end{array}
                                          \end{array}
                                          
                                          Derivation
                                          1. Split input into 2 regimes
                                          2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.0030000000000000001

                                            1. Initial program 93.8%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in ky around 0

                                              \[\leadsto \color{blue}{\frac{ky}{\sin kx}} \cdot \sin th \]
                                            4. Step-by-step derivation
                                              1. lower-/.f64N/A

                                                \[\leadsto \frac{ky}{\color{blue}{\sin kx}} \cdot \sin th \]
                                              2. lift-sin.f6435.0

                                                \[\leadsto \frac{ky}{\sin kx} \cdot \sin th \]
                                            5. Applied rewrites35.0%

                                              \[\leadsto \color{blue}{\frac{ky}{\sin kx}} \cdot \sin th \]
                                            6. Taylor expanded in kx around 0

                                              \[\leadsto \frac{ky}{kx \cdot \color{blue}{\left(1 + \frac{-1}{6} \cdot {kx}^{2}\right)}} \cdot \sin th \]
                                            7. Step-by-step derivation
                                              1. *-commutativeN/A

                                                \[\leadsto \frac{ky}{\left(1 + \frac{-1}{6} \cdot {kx}^{2}\right) \cdot kx} \cdot \sin th \]
                                              2. lower-*.f64N/A

                                                \[\leadsto \frac{ky}{\left(1 + \frac{-1}{6} \cdot {kx}^{2}\right) \cdot kx} \cdot \sin th \]
                                              3. +-commutativeN/A

                                                \[\leadsto \frac{ky}{\left(\frac{-1}{6} \cdot {kx}^{2} + 1\right) \cdot kx} \cdot \sin th \]
                                              4. *-commutativeN/A

                                                \[\leadsto \frac{ky}{\left({kx}^{2} \cdot \frac{-1}{6} + 1\right) \cdot kx} \cdot \sin th \]
                                              5. lower-fma.f64N/A

                                                \[\leadsto \frac{ky}{\mathsf{fma}\left({kx}^{2}, \frac{-1}{6}, 1\right) \cdot kx} \cdot \sin th \]
                                              6. unpow2N/A

                                                \[\leadsto \frac{ky}{\mathsf{fma}\left(kx \cdot kx, \frac{-1}{6}, 1\right) \cdot kx} \cdot \sin th \]
                                              7. lower-*.f6422.4

                                                \[\leadsto \frac{ky}{\mathsf{fma}\left(kx \cdot kx, -0.16666666666666666, 1\right) \cdot kx} \cdot \sin th \]
                                            8. Applied rewrites22.4%

                                              \[\leadsto \frac{ky}{\mathsf{fma}\left(kx \cdot kx, -0.16666666666666666, 1\right) \cdot \color{blue}{kx}} \cdot \sin th \]

                                            if 0.0030000000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

                                            1. Initial program 91.3%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in kx around 0

                                              \[\leadsto \color{blue}{\sin th} \]
                                            4. Step-by-step derivation
                                              1. lift-sin.f6460.1

                                                \[\leadsto \sin th \]
                                            5. Applied rewrites60.1%

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

                                          Alternative 17: 15.7% accurate, 1.0× speedup?

                                          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \leq 5 \cdot 10^{-303}:\\ \;\;\;\;\left(\left(th \cdot th\right) \cdot -0.16666666666666666\right) \cdot th\\ \mathbf{else}:\\ \;\;\;\;th\\ \end{array} \end{array} \]
                                          (FPCore (kx ky th)
                                           :precision binary64
                                           (if (<=
                                                (*
                                                 (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0))))
                                                 (sin th))
                                                5e-303)
                                             (* (* (* th th) -0.16666666666666666) th)
                                             th))
                                          double code(double kx, double ky, double th) {
                                          	double tmp;
                                          	if (((sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)))) * sin(th)) <= 5e-303) {
                                          		tmp = ((th * th) * -0.16666666666666666) * th;
                                          	} else {
                                          		tmp = th;
                                          	}
                                          	return tmp;
                                          }
                                          
                                          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(kx, ky, th)
                                          use fmin_fmax_functions
                                              real(8), intent (in) :: kx
                                              real(8), intent (in) :: ky
                                              real(8), intent (in) :: th
                                              real(8) :: tmp
                                              if (((sin(ky) / sqrt(((sin(kx) ** 2.0d0) + (sin(ky) ** 2.0d0)))) * sin(th)) <= 5d-303) then
                                                  tmp = ((th * th) * (-0.16666666666666666d0)) * th
                                              else
                                                  tmp = th
                                              end if
                                              code = tmp
                                          end function
                                          
                                          public static double code(double kx, double ky, double th) {
                                          	double tmp;
                                          	if (((Math.sin(ky) / Math.sqrt((Math.pow(Math.sin(kx), 2.0) + Math.pow(Math.sin(ky), 2.0)))) * Math.sin(th)) <= 5e-303) {
                                          		tmp = ((th * th) * -0.16666666666666666) * th;
                                          	} else {
                                          		tmp = th;
                                          	}
                                          	return tmp;
                                          }
                                          
                                          def code(kx, ky, th):
                                          	tmp = 0
                                          	if ((math.sin(ky) / math.sqrt((math.pow(math.sin(kx), 2.0) + math.pow(math.sin(ky), 2.0)))) * math.sin(th)) <= 5e-303:
                                          		tmp = ((th * th) * -0.16666666666666666) * th
                                          	else:
                                          		tmp = th
                                          	return tmp
                                          
                                          function code(kx, ky, th)
                                          	tmp = 0.0
                                          	if (Float64(Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) * sin(th)) <= 5e-303)
                                          		tmp = Float64(Float64(Float64(th * th) * -0.16666666666666666) * th);
                                          	else
                                          		tmp = th;
                                          	end
                                          	return tmp
                                          end
                                          
                                          function tmp_2 = code(kx, ky, th)
                                          	tmp = 0.0;
                                          	if (((sin(ky) / sqrt(((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) * sin(th)) <= 5e-303)
                                          		tmp = ((th * th) * -0.16666666666666666) * th;
                                          	else
                                          		tmp = th;
                                          	end
                                          	tmp_2 = tmp;
                                          end
                                          
                                          code[kx_, ky_, th_] := If[LessEqual[N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], 5e-303], N[(N[(N[(th * th), $MachinePrecision] * -0.16666666666666666), $MachinePrecision] * th), $MachinePrecision], th]
                                          
                                          \begin{array}{l}
                                          
                                          \\
                                          \begin{array}{l}
                                          \mathbf{if}\;\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \leq 5 \cdot 10^{-303}:\\
                                          \;\;\;\;\left(\left(th \cdot th\right) \cdot -0.16666666666666666\right) \cdot th\\
                                          
                                          \mathbf{else}:\\
                                          \;\;\;\;th\\
                                          
                                          
                                          \end{array}
                                          \end{array}
                                          
                                          Derivation
                                          1. Split input into 2 regimes
                                          2. if (*.f64 (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) (sin.f64 th)) < 4.9999999999999998e-303

                                            1. Initial program 95.0%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in kx around 0

                                              \[\leadsto \color{blue}{\sin th} \]
                                            4. Step-by-step derivation
                                              1. lift-sin.f6418.7

                                                \[\leadsto \sin th \]
                                            5. Applied rewrites18.7%

                                              \[\leadsto \color{blue}{\sin th} \]
                                            6. Taylor expanded in th around 0

                                              \[\leadsto th \cdot \color{blue}{\left(1 + \frac{-1}{6} \cdot {th}^{2}\right)} \]
                                            7. Step-by-step derivation
                                              1. *-commutativeN/A

                                                \[\leadsto \left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot th \]
                                              2. lower-*.f64N/A

                                                \[\leadsto \left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot th \]
                                              3. +-commutativeN/A

                                                \[\leadsto \left(\frac{-1}{6} \cdot {th}^{2} + 1\right) \cdot th \]
                                              4. *-commutativeN/A

                                                \[\leadsto \left({th}^{2} \cdot \frac{-1}{6} + 1\right) \cdot th \]
                                              5. lower-fma.f64N/A

                                                \[\leadsto \mathsf{fma}\left({th}^{2}, \frac{-1}{6}, 1\right) \cdot th \]
                                              6. unpow2N/A

                                                \[\leadsto \mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th \]
                                              7. lower-*.f6412.8

                                                \[\leadsto \mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th \]
                                            8. Applied rewrites12.8%

                                              \[\leadsto \mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot \color{blue}{th} \]
                                            9. Taylor expanded in th around inf

                                              \[\leadsto \left(\frac{-1}{6} \cdot {th}^{2}\right) \cdot th \]
                                            10. Step-by-step derivation
                                              1. *-commutativeN/A

                                                \[\leadsto \left({th}^{2} \cdot \frac{-1}{6}\right) \cdot th \]
                                              2. lower-*.f64N/A

                                                \[\leadsto \left({th}^{2} \cdot \frac{-1}{6}\right) \cdot th \]
                                              3. pow2N/A

                                                \[\leadsto \left(\left(th \cdot th\right) \cdot \frac{-1}{6}\right) \cdot th \]
                                              4. lift-*.f6416.9

                                                \[\leadsto \left(\left(th \cdot th\right) \cdot -0.16666666666666666\right) \cdot th \]
                                            11. Applied rewrites16.9%

                                              \[\leadsto \left(\left(th \cdot th\right) \cdot -0.16666666666666666\right) \cdot th \]

                                            if 4.9999999999999998e-303 < (*.f64 (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) (sin.f64 th))

                                            1. Initial program 90.7%

                                              \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in kx around 0

                                              \[\leadsto \color{blue}{\sin th} \]
                                            4. Step-by-step derivation
                                              1. lift-sin.f6425.7

                                                \[\leadsto \sin th \]
                                            5. Applied rewrites25.7%

                                              \[\leadsto \color{blue}{\sin th} \]
                                            6. Taylor expanded in th around 0

                                              \[\leadsto th \cdot \color{blue}{\left(1 + \frac{-1}{6} \cdot {th}^{2}\right)} \]
                                            7. Step-by-step derivation
                                              1. *-commutativeN/A

                                                \[\leadsto \left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot th \]
                                              2. lower-*.f64N/A

                                                \[\leadsto \left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot th \]
                                              3. +-commutativeN/A

                                                \[\leadsto \left(\frac{-1}{6} \cdot {th}^{2} + 1\right) \cdot th \]
                                              4. *-commutativeN/A

                                                \[\leadsto \left({th}^{2} \cdot \frac{-1}{6} + 1\right) \cdot th \]
                                              5. lower-fma.f64N/A

                                                \[\leadsto \mathsf{fma}\left({th}^{2}, \frac{-1}{6}, 1\right) \cdot th \]
                                              6. unpow2N/A

                                                \[\leadsto \mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th \]
                                              7. lower-*.f6412.5

                                                \[\leadsto \mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th \]
                                            8. Applied rewrites12.5%

                                              \[\leadsto \mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot \color{blue}{th} \]
                                            9. Taylor expanded in th around 0

                                              \[\leadsto th \]
                                            10. Step-by-step derivation
                                              1. Applied rewrites13.0%

                                                \[\leadsto th \]
                                            11. Recombined 2 regimes into one program.
                                            12. Add Preprocessing

                                            Alternative 18: 36.8% accurate, 1.0× speedup?

                                            \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \leq 0.003:\\ \;\;\;\;\frac{ky}{kx} \cdot \sin th\\ \mathbf{else}:\\ \;\;\;\;\sin th\\ \end{array} \end{array} \]
                                            (FPCore (kx ky th)
                                             :precision binary64
                                             (if (<= (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0)))) 0.003)
                                               (* (/ ky kx) (sin th))
                                               (sin th)))
                                            double code(double kx, double ky, double th) {
                                            	double tmp;
                                            	if ((sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)))) <= 0.003) {
                                            		tmp = (ky / kx) * sin(th);
                                            	} else {
                                            		tmp = sin(th);
                                            	}
                                            	return tmp;
                                            }
                                            
                                            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(kx, ky, th)
                                            use fmin_fmax_functions
                                                real(8), intent (in) :: kx
                                                real(8), intent (in) :: ky
                                                real(8), intent (in) :: th
                                                real(8) :: tmp
                                                if ((sin(ky) / sqrt(((sin(kx) ** 2.0d0) + (sin(ky) ** 2.0d0)))) <= 0.003d0) then
                                                    tmp = (ky / kx) * sin(th)
                                                else
                                                    tmp = sin(th)
                                                end if
                                                code = tmp
                                            end function
                                            
                                            public static double code(double kx, double ky, double th) {
                                            	double tmp;
                                            	if ((Math.sin(ky) / Math.sqrt((Math.pow(Math.sin(kx), 2.0) + Math.pow(Math.sin(ky), 2.0)))) <= 0.003) {
                                            		tmp = (ky / kx) * Math.sin(th);
                                            	} else {
                                            		tmp = Math.sin(th);
                                            	}
                                            	return tmp;
                                            }
                                            
                                            def code(kx, ky, th):
                                            	tmp = 0
                                            	if (math.sin(ky) / math.sqrt((math.pow(math.sin(kx), 2.0) + math.pow(math.sin(ky), 2.0)))) <= 0.003:
                                            		tmp = (ky / kx) * math.sin(th)
                                            	else:
                                            		tmp = math.sin(th)
                                            	return tmp
                                            
                                            function code(kx, ky, th)
                                            	tmp = 0.0
                                            	if (Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) <= 0.003)
                                            		tmp = Float64(Float64(ky / kx) * sin(th));
                                            	else
                                            		tmp = sin(th);
                                            	end
                                            	return tmp
                                            end
                                            
                                            function tmp_2 = code(kx, ky, th)
                                            	tmp = 0.0;
                                            	if ((sin(ky) / sqrt(((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) <= 0.003)
                                            		tmp = (ky / kx) * sin(th);
                                            	else
                                            		tmp = sin(th);
                                            	end
                                            	tmp_2 = tmp;
                                            end
                                            
                                            code[kx_, ky_, th_] := If[LessEqual[N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 0.003], N[(N[(ky / kx), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], N[Sin[th], $MachinePrecision]]
                                            
                                            \begin{array}{l}
                                            
                                            \\
                                            \begin{array}{l}
                                            \mathbf{if}\;\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \leq 0.003:\\
                                            \;\;\;\;\frac{ky}{kx} \cdot \sin th\\
                                            
                                            \mathbf{else}:\\
                                            \;\;\;\;\sin th\\
                                            
                                            
                                            \end{array}
                                            \end{array}
                                            
                                            Derivation
                                            1. Split input into 2 regimes
                                            2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 0.0030000000000000001

                                              1. Initial program 93.8%

                                                \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                              2. Add Preprocessing
                                              3. Taylor expanded in ky around 0

                                                \[\leadsto \color{blue}{\frac{ky}{\sin kx}} \cdot \sin th \]
                                              4. Step-by-step derivation
                                                1. lower-/.f64N/A

                                                  \[\leadsto \frac{ky}{\color{blue}{\sin kx}} \cdot \sin th \]
                                                2. lift-sin.f6435.0

                                                  \[\leadsto \frac{ky}{\sin kx} \cdot \sin th \]
                                              5. Applied rewrites35.0%

                                                \[\leadsto \color{blue}{\frac{ky}{\sin kx}} \cdot \sin th \]
                                              6. Taylor expanded in kx around 0

                                                \[\leadsto \frac{ky}{kx} \cdot \sin th \]
                                              7. Step-by-step derivation
                                                1. Applied rewrites22.2%

                                                  \[\leadsto \frac{ky}{kx} \cdot \sin th \]

                                                if 0.0030000000000000001 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

                                                1. Initial program 91.3%

                                                  \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                2. Add Preprocessing
                                                3. Taylor expanded in kx around 0

                                                  \[\leadsto \color{blue}{\sin th} \]
                                                4. Step-by-step derivation
                                                  1. lift-sin.f6460.1

                                                    \[\leadsto \sin th \]
                                                5. Applied rewrites60.1%

                                                  \[\leadsto \color{blue}{\sin th} \]
                                              8. Recombined 2 regimes into one program.
                                              9. Add Preprocessing

                                              Alternative 19: 31.6% accurate, 1.0× speedup?

                                              \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \leq 3.2 \cdot 10^{-107}:\\ \;\;\;\;\left(\left(th \cdot th\right) \cdot -0.16666666666666666\right) \cdot th\\ \mathbf{else}:\\ \;\;\;\;\sin th\\ \end{array} \end{array} \]
                                              (FPCore (kx ky th)
                                               :precision binary64
                                               (if (<=
                                                    (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0))))
                                                    3.2e-107)
                                                 (* (* (* th th) -0.16666666666666666) th)
                                                 (sin th)))
                                              double code(double kx, double ky, double th) {
                                              	double tmp;
                                              	if ((sin(ky) / sqrt((pow(sin(kx), 2.0) + pow(sin(ky), 2.0)))) <= 3.2e-107) {
                                              		tmp = ((th * th) * -0.16666666666666666) * th;
                                              	} else {
                                              		tmp = sin(th);
                                              	}
                                              	return tmp;
                                              }
                                              
                                              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(kx, ky, th)
                                              use fmin_fmax_functions
                                                  real(8), intent (in) :: kx
                                                  real(8), intent (in) :: ky
                                                  real(8), intent (in) :: th
                                                  real(8) :: tmp
                                                  if ((sin(ky) / sqrt(((sin(kx) ** 2.0d0) + (sin(ky) ** 2.0d0)))) <= 3.2d-107) then
                                                      tmp = ((th * th) * (-0.16666666666666666d0)) * th
                                                  else
                                                      tmp = sin(th)
                                                  end if
                                                  code = tmp
                                              end function
                                              
                                              public static double code(double kx, double ky, double th) {
                                              	double tmp;
                                              	if ((Math.sin(ky) / Math.sqrt((Math.pow(Math.sin(kx), 2.0) + Math.pow(Math.sin(ky), 2.0)))) <= 3.2e-107) {
                                              		tmp = ((th * th) * -0.16666666666666666) * th;
                                              	} else {
                                              		tmp = Math.sin(th);
                                              	}
                                              	return tmp;
                                              }
                                              
                                              def code(kx, ky, th):
                                              	tmp = 0
                                              	if (math.sin(ky) / math.sqrt((math.pow(math.sin(kx), 2.0) + math.pow(math.sin(ky), 2.0)))) <= 3.2e-107:
                                              		tmp = ((th * th) * -0.16666666666666666) * th
                                              	else:
                                              		tmp = math.sin(th)
                                              	return tmp
                                              
                                              function code(kx, ky, th)
                                              	tmp = 0.0
                                              	if (Float64(sin(ky) / sqrt(Float64((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) <= 3.2e-107)
                                              		tmp = Float64(Float64(Float64(th * th) * -0.16666666666666666) * th);
                                              	else
                                              		tmp = sin(th);
                                              	end
                                              	return tmp
                                              end
                                              
                                              function tmp_2 = code(kx, ky, th)
                                              	tmp = 0.0;
                                              	if ((sin(ky) / sqrt(((sin(kx) ^ 2.0) + (sin(ky) ^ 2.0)))) <= 3.2e-107)
                                              		tmp = ((th * th) * -0.16666666666666666) * th;
                                              	else
                                              		tmp = sin(th);
                                              	end
                                              	tmp_2 = tmp;
                                              end
                                              
                                              code[kx_, ky_, th_] := If[LessEqual[N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(N[Power[N[Sin[kx], $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 3.2e-107], N[(N[(N[(th * th), $MachinePrecision] * -0.16666666666666666), $MachinePrecision] * th), $MachinePrecision], N[Sin[th], $MachinePrecision]]
                                              
                                              \begin{array}{l}
                                              
                                              \\
                                              \begin{array}{l}
                                              \mathbf{if}\;\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \leq 3.2 \cdot 10^{-107}:\\
                                              \;\;\;\;\left(\left(th \cdot th\right) \cdot -0.16666666666666666\right) \cdot th\\
                                              
                                              \mathbf{else}:\\
                                              \;\;\;\;\sin th\\
                                              
                                              
                                              \end{array}
                                              \end{array}
                                              
                                              Derivation
                                              1. Split input into 2 regimes
                                              2. if (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64))))) < 3.20000000000000013e-107

                                                1. Initial program 93.0%

                                                  \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                2. Add Preprocessing
                                                3. Taylor expanded in kx around 0

                                                  \[\leadsto \color{blue}{\sin th} \]
                                                4. Step-by-step derivation
                                                  1. lift-sin.f643.4

                                                    \[\leadsto \sin th \]
                                                5. Applied rewrites3.4%

                                                  \[\leadsto \color{blue}{\sin th} \]
                                                6. Taylor expanded in th around 0

                                                  \[\leadsto th \cdot \color{blue}{\left(1 + \frac{-1}{6} \cdot {th}^{2}\right)} \]
                                                7. Step-by-step derivation
                                                  1. *-commutativeN/A

                                                    \[\leadsto \left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot th \]
                                                  2. lower-*.f64N/A

                                                    \[\leadsto \left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot th \]
                                                  3. +-commutativeN/A

                                                    \[\leadsto \left(\frac{-1}{6} \cdot {th}^{2} + 1\right) \cdot th \]
                                                  4. *-commutativeN/A

                                                    \[\leadsto \left({th}^{2} \cdot \frac{-1}{6} + 1\right) \cdot th \]
                                                  5. lower-fma.f64N/A

                                                    \[\leadsto \mathsf{fma}\left({th}^{2}, \frac{-1}{6}, 1\right) \cdot th \]
                                                  6. unpow2N/A

                                                    \[\leadsto \mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th \]
                                                  7. lower-*.f643.5

                                                    \[\leadsto \mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th \]
                                                8. Applied rewrites3.5%

                                                  \[\leadsto \mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot \color{blue}{th} \]
                                                9. Taylor expanded in th around inf

                                                  \[\leadsto \left(\frac{-1}{6} \cdot {th}^{2}\right) \cdot th \]
                                                10. Step-by-step derivation
                                                  1. *-commutativeN/A

                                                    \[\leadsto \left({th}^{2} \cdot \frac{-1}{6}\right) \cdot th \]
                                                  2. lower-*.f64N/A

                                                    \[\leadsto \left({th}^{2} \cdot \frac{-1}{6}\right) \cdot th \]
                                                  3. pow2N/A

                                                    \[\leadsto \left(\left(th \cdot th\right) \cdot \frac{-1}{6}\right) \cdot th \]
                                                  4. lift-*.f6415.0

                                                    \[\leadsto \left(\left(th \cdot th\right) \cdot -0.16666666666666666\right) \cdot th \]
                                                11. Applied rewrites15.0%

                                                  \[\leadsto \left(\left(th \cdot th\right) \cdot -0.16666666666666666\right) \cdot th \]

                                                if 3.20000000000000013e-107 < (/.f64 (sin.f64 ky) (sqrt.f64 (+.f64 (pow.f64 (sin.f64 kx) #s(literal 2 binary64)) (pow.f64 (sin.f64 ky) #s(literal 2 binary64)))))

                                                1. Initial program 92.9%

                                                  \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                2. Add Preprocessing
                                                3. Taylor expanded in kx around 0

                                                  \[\leadsto \color{blue}{\sin th} \]
                                                4. Step-by-step derivation
                                                  1. lift-sin.f6449.9

                                                    \[\leadsto \sin th \]
                                                5. Applied rewrites49.9%

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

                                              Alternative 20: 72.1% accurate, 1.2× speedup?

                                              \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\sin ky \leq -0.01:\\ \;\;\;\;\frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(1 \cdot th\right)\\ \mathbf{elif}\;\sin ky \leq 0.0005:\\ \;\;\;\;\frac{\mathsf{fma}\left(ky \cdot ky, -0.16666666666666666, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th\\ \mathbf{else}:\\ \;\;\;\;\sin th\\ \end{array} \end{array} \]
                                              (FPCore (kx ky th)
                                               :precision binary64
                                               (if (<= (sin ky) -0.01)
                                                 (* (/ (sin ky) (sqrt (pow (sin ky) 2.0))) (* 1.0 th))
                                                 (if (<= (sin ky) 0.0005)
                                                   (*
                                                    (/ (* (fma (* ky ky) -0.16666666666666666 1.0) ky) (hypot ky (sin kx)))
                                                    (sin th))
                                                   (sin th))))
                                              double code(double kx, double ky, double th) {
                                              	double tmp;
                                              	if (sin(ky) <= -0.01) {
                                              		tmp = (sin(ky) / sqrt(pow(sin(ky), 2.0))) * (1.0 * th);
                                              	} else if (sin(ky) <= 0.0005) {
                                              		tmp = ((fma((ky * ky), -0.16666666666666666, 1.0) * ky) / hypot(ky, sin(kx))) * sin(th);
                                              	} else {
                                              		tmp = sin(th);
                                              	}
                                              	return tmp;
                                              }
                                              
                                              function code(kx, ky, th)
                                              	tmp = 0.0
                                              	if (sin(ky) <= -0.01)
                                              		tmp = Float64(Float64(sin(ky) / sqrt((sin(ky) ^ 2.0))) * Float64(1.0 * th));
                                              	elseif (sin(ky) <= 0.0005)
                                              		tmp = Float64(Float64(Float64(fma(Float64(ky * ky), -0.16666666666666666, 1.0) * ky) / hypot(ky, sin(kx))) * sin(th));
                                              	else
                                              		tmp = sin(th);
                                              	end
                                              	return tmp
                                              end
                                              
                                              code[kx_, ky_, th_] := If[LessEqual[N[Sin[ky], $MachinePrecision], -0.01], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[Power[N[Sin[ky], $MachinePrecision], 2.0], $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[(1.0 * th), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[Sin[ky], $MachinePrecision], 0.0005], N[(N[(N[(N[(N[(ky * ky), $MachinePrecision] * -0.16666666666666666 + 1.0), $MachinePrecision] * ky), $MachinePrecision] / N[Sqrt[ky ^ 2 + N[Sin[kx], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], N[Sin[th], $MachinePrecision]]]
                                              
                                              \begin{array}{l}
                                              
                                              \\
                                              \begin{array}{l}
                                              \mathbf{if}\;\sin ky \leq -0.01:\\
                                              \;\;\;\;\frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(1 \cdot th\right)\\
                                              
                                              \mathbf{elif}\;\sin ky \leq 0.0005:\\
                                              \;\;\;\;\frac{\mathsf{fma}\left(ky \cdot ky, -0.16666666666666666, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th\\
                                              
                                              \mathbf{else}:\\
                                              \;\;\;\;\sin th\\
                                              
                                              
                                              \end{array}
                                              \end{array}
                                              
                                              Derivation
                                              1. Split input into 3 regimes
                                              2. if (sin.f64 ky) < -0.0100000000000000002

                                                1. Initial program 99.8%

                                                  \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                2. Add Preprocessing
                                                3. Taylor expanded in kx around 0

                                                  \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                                4. Step-by-step derivation
                                                  1. lift-sin.f64N/A

                                                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \sin th \]
                                                  2. lift-pow.f6464.4

                                                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \sin th \]
                                                5. Applied rewrites64.4%

                                                  \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                                6. Taylor expanded in th around 0

                                                  \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \color{blue}{\left(th \cdot \left(1 + \frac{-1}{6} \cdot {th}^{2}\right)\right)} \]
                                                7. Step-by-step derivation
                                                  1. *-commutativeN/A

                                                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
                                                  2. lower-*.f64N/A

                                                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot \color{blue}{th}\right) \]
                                                  3. +-commutativeN/A

                                                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left(\frac{-1}{6} \cdot {th}^{2} + 1\right) \cdot th\right) \]
                                                  4. *-commutativeN/A

                                                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\left({th}^{2} \cdot \frac{-1}{6} + 1\right) \cdot th\right) \]
                                                  5. lower-fma.f64N/A

                                                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left({th}^{2}, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                                  6. unpow2N/A

                                                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th\right) \]
                                                  7. lower-*.f6431.7

                                                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right) \]
                                                8. Applied rewrites31.7%

                                                  \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \color{blue}{\left(\mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th\right)} \]
                                                9. Taylor expanded in th around 0

                                                  \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(1 \cdot th\right) \]
                                                10. Step-by-step derivation
                                                  1. Applied rewrites32.2%

                                                    \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \left(1 \cdot th\right) \]

                                                  if -0.0100000000000000002 < (sin.f64 ky) < 5.0000000000000001e-4

                                                  1. Initial program 86.3%

                                                    \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                  2. Add Preprocessing
                                                  3. Step-by-step derivation
                                                    1. lift-sqrt.f64N/A

                                                      \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                                                    2. lift-+.f64N/A

                                                      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                                                    3. lift-pow.f64N/A

                                                      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
                                                    4. lift-sin.f64N/A

                                                      \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                    5. lift-pow.f64N/A

                                                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                                    6. lift-sin.f64N/A

                                                      \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
                                                    7. +-commutativeN/A

                                                      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
                                                    8. unpow2N/A

                                                      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
                                                    9. unpow2N/A

                                                      \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
                                                    10. lower-hypot.f64N/A

                                                      \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                                                    11. lift-sin.f64N/A

                                                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
                                                    12. lift-sin.f6499.7

                                                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
                                                  4. Applied rewrites99.7%

                                                    \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                                                  5. Taylor expanded in ky around 0

                                                    \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                                                  6. Step-by-step derivation
                                                    1. Applied rewrites97.8%

                                                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                                                    2. Taylor expanded in ky around 0

                                                      \[\leadsto \frac{\color{blue}{ky \cdot \left(1 + \frac{-1}{6} \cdot {ky}^{2}\right)}}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                    3. Step-by-step derivation
                                                      1. *-commutativeN/A

                                                        \[\leadsto \frac{\left(1 + \frac{-1}{6} \cdot {ky}^{2}\right) \cdot \color{blue}{ky}}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                      2. lower-*.f64N/A

                                                        \[\leadsto \frac{\left(1 + \frac{-1}{6} \cdot {ky}^{2}\right) \cdot \color{blue}{ky}}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                      3. +-commutativeN/A

                                                        \[\leadsto \frac{\left(\frac{-1}{6} \cdot {ky}^{2} + 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                      4. *-commutativeN/A

                                                        \[\leadsto \frac{\left({ky}^{2} \cdot \frac{-1}{6} + 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                      5. lower-fma.f64N/A

                                                        \[\leadsto \frac{\mathsf{fma}\left({ky}^{2}, \frac{-1}{6}, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                      6. pow2N/A

                                                        \[\leadsto \frac{\mathsf{fma}\left(ky \cdot ky, \frac{-1}{6}, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                      7. lift-*.f6497.8

                                                        \[\leadsto \frac{\mathsf{fma}\left(ky \cdot ky, -0.16666666666666666, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                    4. Applied rewrites97.8%

                                                      \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(ky \cdot ky, -0.16666666666666666, 1\right) \cdot ky}}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]

                                                    if 5.0000000000000001e-4 < (sin.f64 ky)

                                                    1. Initial program 99.8%

                                                      \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                    2. Add Preprocessing
                                                    3. Taylor expanded in kx around 0

                                                      \[\leadsto \color{blue}{\sin th} \]
                                                    4. Step-by-step derivation
                                                      1. lift-sin.f6455.8

                                                        \[\leadsto \sin th \]
                                                    5. Applied rewrites55.8%

                                                      \[\leadsto \color{blue}{\sin th} \]
                                                  7. Recombined 3 regimes into one program.
                                                  8. Add Preprocessing

                                                  Alternative 21: 64.9% accurate, 1.6× speedup?

                                                  \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;ky \leq 0.062:\\ \;\;\;\;\frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th\\ \mathbf{else}:\\ \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \sin th\\ \end{array} \end{array} \]
                                                  (FPCore (kx ky th)
                                                   :precision binary64
                                                   (if (<= ky 0.062)
                                                     (*
                                                      (/
                                                       (*
                                                        (fma
                                                         (- (* (* ky ky) 0.008333333333333333) 0.16666666666666666)
                                                         (* ky ky)
                                                         1.0)
                                                        ky)
                                                       (hypot
                                                        (*
                                                         (fma
                                                          (-
                                                           (*
                                                            (fma (* ky ky) -0.0001984126984126984 0.008333333333333333)
                                                            (* ky ky))
                                                           0.16666666666666666)
                                                          (* ky ky)
                                                          1.0)
                                                         ky)
                                                        (sin kx)))
                                                      (sin th))
                                                     (* (/ (sin ky) (sqrt (- 0.5 (* 0.5 (cos (+ ky ky)))))) (sin th))))
                                                  double code(double kx, double ky, double th) {
                                                  	double tmp;
                                                  	if (ky <= 0.062) {
                                                  		tmp = ((fma((((ky * ky) * 0.008333333333333333) - 0.16666666666666666), (ky * ky), 1.0) * ky) / hypot((fma(((fma((ky * ky), -0.0001984126984126984, 0.008333333333333333) * (ky * ky)) - 0.16666666666666666), (ky * ky), 1.0) * ky), sin(kx))) * sin(th);
                                                  	} else {
                                                  		tmp = (sin(ky) / sqrt((0.5 - (0.5 * cos((ky + ky)))))) * sin(th);
                                                  	}
                                                  	return tmp;
                                                  }
                                                  
                                                  function code(kx, ky, th)
                                                  	tmp = 0.0
                                                  	if (ky <= 0.062)
                                                  		tmp = Float64(Float64(Float64(fma(Float64(Float64(Float64(ky * ky) * 0.008333333333333333) - 0.16666666666666666), Float64(ky * ky), 1.0) * ky) / hypot(Float64(fma(Float64(Float64(fma(Float64(ky * ky), -0.0001984126984126984, 0.008333333333333333) * Float64(ky * ky)) - 0.16666666666666666), Float64(ky * ky), 1.0) * ky), sin(kx))) * sin(th));
                                                  	else
                                                  		tmp = Float64(Float64(sin(ky) / sqrt(Float64(0.5 - Float64(0.5 * cos(Float64(ky + ky)))))) * sin(th));
                                                  	end
                                                  	return tmp
                                                  end
                                                  
                                                  code[kx_, ky_, th_] := If[LessEqual[ky, 0.062], N[(N[(N[(N[(N[(N[(N[(ky * ky), $MachinePrecision] * 0.008333333333333333), $MachinePrecision] - 0.16666666666666666), $MachinePrecision] * N[(ky * ky), $MachinePrecision] + 1.0), $MachinePrecision] * ky), $MachinePrecision] / N[Sqrt[N[(N[(N[(N[(N[(N[(ky * ky), $MachinePrecision] * -0.0001984126984126984 + 0.008333333333333333), $MachinePrecision] * N[(ky * ky), $MachinePrecision]), $MachinePrecision] - 0.16666666666666666), $MachinePrecision] * N[(ky * ky), $MachinePrecision] + 1.0), $MachinePrecision] * ky), $MachinePrecision] ^ 2 + N[Sin[kx], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(0.5 - N[(0.5 * N[Cos[N[(ky + ky), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]]
                                                  
                                                  \begin{array}{l}
                                                  
                                                  \\
                                                  \begin{array}{l}
                                                  \mathbf{if}\;ky \leq 0.062:\\
                                                  \;\;\;\;\frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th\\
                                                  
                                                  \mathbf{else}:\\
                                                  \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \sin th\\
                                                  
                                                  
                                                  \end{array}
                                                  \end{array}
                                                  
                                                  Derivation
                                                  1. Split input into 2 regimes
                                                  2. if ky < 0.062

                                                    1. Initial program 91.2%

                                                      \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                    2. Add Preprocessing
                                                    3. Step-by-step derivation
                                                      1. lift-sqrt.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                                                      2. lift-+.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                                                      3. lift-pow.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
                                                      4. lift-sin.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                      5. lift-pow.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                                      6. lift-sin.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
                                                      7. +-commutativeN/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
                                                      8. unpow2N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
                                                      9. unpow2N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
                                                      10. lower-hypot.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                                                      11. lift-sin.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
                                                      12. lift-sin.f6499.7

                                                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
                                                    4. Applied rewrites99.7%

                                                      \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                                                    5. Taylor expanded in ky around 0

                                                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky \cdot \left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right)}, \sin kx\right)} \cdot \sin th \]
                                                    6. Step-by-step derivation
                                                      1. *-commutativeN/A

                                                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                                                      2. lower-*.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                                                    7. Applied rewrites65.0%

                                                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}, \sin kx\right)} \cdot \sin th \]
                                                    8. Taylor expanded in ky around 0

                                                      \[\leadsto \frac{\color{blue}{ky \cdot \left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right)}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                    9. Step-by-step derivation
                                                      1. *-commutativeN/A

                                                        \[\leadsto \frac{\left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      2. lower-*.f64N/A

                                                        \[\leadsto \frac{\left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      3. +-commutativeN/A

                                                        \[\leadsto \frac{\left({ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right) + 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      4. *-commutativeN/A

                                                        \[\leadsto \frac{\left(\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right) \cdot {ky}^{2} + 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      5. lower-fma.f64N/A

                                                        \[\leadsto \frac{\mathsf{fma}\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      6. lower--.f64N/A

                                                        \[\leadsto \frac{\mathsf{fma}\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      7. *-commutativeN/A

                                                        \[\leadsto \frac{\mathsf{fma}\left({ky}^{2} \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      8. lower-*.f64N/A

                                                        \[\leadsto \frac{\mathsf{fma}\left({ky}^{2} \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      9. pow2N/A

                                                        \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      10. lift-*.f64N/A

                                                        \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      11. pow2N/A

                                                        \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      12. lift-*.f6463.7

                                                        \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                    10. Applied rewrites63.7%

                                                      \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]

                                                    if 0.062 < ky

                                                    1. Initial program 99.8%

                                                      \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                    2. Add Preprocessing
                                                    3. Taylor expanded in kx around 0

                                                      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                                    4. Step-by-step derivation
                                                      1. lift-sin.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \sin th \]
                                                      2. lift-pow.f6462.9

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \sin th \]
                                                    5. Applied rewrites62.9%

                                                      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                                    6. Step-by-step derivation
                                                      1. lift-pow.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \sin th \]
                                                      2. lift-sin.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \sin th \]
                                                      3. pow2N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \color{blue}{\sin ky}}} \cdot \sin th \]
                                                      4. sqr-sin-aN/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \sin th \]
                                                      5. lower--.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \sin th \]
                                                      6. lower-*.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \color{blue}{\cos \left(2 \cdot ky\right)}}} \cdot \sin th \]
                                                      7. cos-2N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \left(\cos ky \cdot \cos ky - \color{blue}{\sin ky \cdot \sin ky}\right)}} \cdot \sin th \]
                                                      8. cos-sumN/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \sin th \]
                                                      9. lower-cos.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \sin th \]
                                                      10. lower-+.f6462.0

                                                        \[\leadsto \frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \sin th \]
                                                    7. Applied rewrites62.0%

                                                      \[\leadsto \frac{\sin ky}{\sqrt{0.5 - \color{blue}{0.5 \cdot \cos \left(ky + ky\right)}}} \cdot \sin th \]
                                                  3. Recombined 2 regimes into one program.
                                                  4. Add Preprocessing

                                                  Alternative 22: 65.0% accurate, 1.7× speedup?

                                                  \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;ky \leq 0.058:\\ \;\;\;\;\frac{\mathsf{fma}\left(ky \cdot ky, -0.16666666666666666, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th\\ \mathbf{else}:\\ \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \sin th\\ \end{array} \end{array} \]
                                                  (FPCore (kx ky th)
                                                   :precision binary64
                                                   (if (<= ky 0.058)
                                                     (*
                                                      (/
                                                       (* (fma (* ky ky) -0.16666666666666666 1.0) ky)
                                                       (hypot
                                                        (*
                                                         (fma
                                                          (-
                                                           (*
                                                            (fma (* ky ky) -0.0001984126984126984 0.008333333333333333)
                                                            (* ky ky))
                                                           0.16666666666666666)
                                                          (* ky ky)
                                                          1.0)
                                                         ky)
                                                        (sin kx)))
                                                      (sin th))
                                                     (* (/ (sin ky) (sqrt (- 0.5 (* 0.5 (cos (+ ky ky)))))) (sin th))))
                                                  double code(double kx, double ky, double th) {
                                                  	double tmp;
                                                  	if (ky <= 0.058) {
                                                  		tmp = ((fma((ky * ky), -0.16666666666666666, 1.0) * ky) / hypot((fma(((fma((ky * ky), -0.0001984126984126984, 0.008333333333333333) * (ky * ky)) - 0.16666666666666666), (ky * ky), 1.0) * ky), sin(kx))) * sin(th);
                                                  	} else {
                                                  		tmp = (sin(ky) / sqrt((0.5 - (0.5 * cos((ky + ky)))))) * sin(th);
                                                  	}
                                                  	return tmp;
                                                  }
                                                  
                                                  function code(kx, ky, th)
                                                  	tmp = 0.0
                                                  	if (ky <= 0.058)
                                                  		tmp = Float64(Float64(Float64(fma(Float64(ky * ky), -0.16666666666666666, 1.0) * ky) / hypot(Float64(fma(Float64(Float64(fma(Float64(ky * ky), -0.0001984126984126984, 0.008333333333333333) * Float64(ky * ky)) - 0.16666666666666666), Float64(ky * ky), 1.0) * ky), sin(kx))) * sin(th));
                                                  	else
                                                  		tmp = Float64(Float64(sin(ky) / sqrt(Float64(0.5 - Float64(0.5 * cos(Float64(ky + ky)))))) * sin(th));
                                                  	end
                                                  	return tmp
                                                  end
                                                  
                                                  code[kx_, ky_, th_] := If[LessEqual[ky, 0.058], N[(N[(N[(N[(N[(ky * ky), $MachinePrecision] * -0.16666666666666666 + 1.0), $MachinePrecision] * ky), $MachinePrecision] / N[Sqrt[N[(N[(N[(N[(N[(N[(ky * ky), $MachinePrecision] * -0.0001984126984126984 + 0.008333333333333333), $MachinePrecision] * N[(ky * ky), $MachinePrecision]), $MachinePrecision] - 0.16666666666666666), $MachinePrecision] * N[(ky * ky), $MachinePrecision] + 1.0), $MachinePrecision] * ky), $MachinePrecision] ^ 2 + N[Sin[kx], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(0.5 - N[(0.5 * N[Cos[N[(ky + ky), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]]
                                                  
                                                  \begin{array}{l}
                                                  
                                                  \\
                                                  \begin{array}{l}
                                                  \mathbf{if}\;ky \leq 0.058:\\
                                                  \;\;\;\;\frac{\mathsf{fma}\left(ky \cdot ky, -0.16666666666666666, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th\\
                                                  
                                                  \mathbf{else}:\\
                                                  \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \sin th\\
                                                  
                                                  
                                                  \end{array}
                                                  \end{array}
                                                  
                                                  Derivation
                                                  1. Split input into 2 regimes
                                                  2. if ky < 0.0580000000000000029

                                                    1. Initial program 91.2%

                                                      \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                    2. Add Preprocessing
                                                    3. Step-by-step derivation
                                                      1. lift-sqrt.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                                                      2. lift-+.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                                                      3. lift-pow.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
                                                      4. lift-sin.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                      5. lift-pow.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                                      6. lift-sin.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
                                                      7. +-commutativeN/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
                                                      8. unpow2N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
                                                      9. unpow2N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
                                                      10. lower-hypot.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                                                      11. lift-sin.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
                                                      12. lift-sin.f6499.7

                                                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
                                                    4. Applied rewrites99.7%

                                                      \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                                                    5. Taylor expanded in ky around 0

                                                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky \cdot \left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right)}, \sin kx\right)} \cdot \sin th \]
                                                    6. Step-by-step derivation
                                                      1. *-commutativeN/A

                                                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                                                      2. lower-*.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\left(1 + {ky}^{2} \cdot \left({ky}^{2} \cdot \left(\frac{1}{120} + \frac{-1}{5040} \cdot {ky}^{2}\right) - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                                                    7. Applied rewrites65.0%

                                                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}, \sin kx\right)} \cdot \sin th \]
                                                    8. Taylor expanded in ky around 0

                                                      \[\leadsto \frac{\color{blue}{ky \cdot \left(1 + \frac{-1}{6} \cdot {ky}^{2}\right)}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                    9. Step-by-step derivation
                                                      1. *-commutativeN/A

                                                        \[\leadsto \frac{\left(1 + \frac{-1}{6} \cdot {ky}^{2}\right) \cdot \color{blue}{ky}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      2. lower-*.f64N/A

                                                        \[\leadsto \frac{\left(1 + \frac{-1}{6} \cdot {ky}^{2}\right) \cdot \color{blue}{ky}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      3. +-commutativeN/A

                                                        \[\leadsto \frac{\left(\frac{-1}{6} \cdot {ky}^{2} + 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      4. *-commutativeN/A

                                                        \[\leadsto \frac{\left({ky}^{2} \cdot \frac{-1}{6} + 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      5. lower-fma.f64N/A

                                                        \[\leadsto \frac{\mathsf{fma}\left({ky}^{2}, \frac{-1}{6}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      6. pow2N/A

                                                        \[\leadsto \frac{\mathsf{fma}\left(ky \cdot ky, \frac{-1}{6}, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, \frac{-1}{5040}, \frac{1}{120}\right) \cdot \left(ky \cdot ky\right) - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                      7. lift-*.f6463.6

                                                        \[\leadsto \frac{\mathsf{fma}\left(ky \cdot ky, -0.16666666666666666, 1\right) \cdot ky}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]
                                                    10. Applied rewrites63.6%

                                                      \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(ky \cdot ky, -0.16666666666666666, 1\right) \cdot ky}}{\mathsf{hypot}\left(\mathsf{fma}\left(\mathsf{fma}\left(ky \cdot ky, -0.0001984126984126984, 0.008333333333333333\right) \cdot \left(ky \cdot ky\right) - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky, \sin kx\right)} \cdot \sin th \]

                                                    if 0.0580000000000000029 < ky

                                                    1. Initial program 99.8%

                                                      \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                    2. Add Preprocessing
                                                    3. Taylor expanded in kx around 0

                                                      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                                    4. Step-by-step derivation
                                                      1. lift-sin.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \sin th \]
                                                      2. lift-pow.f6462.9

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \sin th \]
                                                    5. Applied rewrites62.9%

                                                      \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                                    6. Step-by-step derivation
                                                      1. lift-pow.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \sin th \]
                                                      2. lift-sin.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \sin th \]
                                                      3. pow2N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \color{blue}{\sin ky}}} \cdot \sin th \]
                                                      4. sqr-sin-aN/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \sin th \]
                                                      5. lower--.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \sin th \]
                                                      6. lower-*.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \color{blue}{\cos \left(2 \cdot ky\right)}}} \cdot \sin th \]
                                                      7. cos-2N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \left(\cos ky \cdot \cos ky - \color{blue}{\sin ky \cdot \sin ky}\right)}} \cdot \sin th \]
                                                      8. cos-sumN/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \sin th \]
                                                      9. lower-cos.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \sin th \]
                                                      10. lower-+.f6462.0

                                                        \[\leadsto \frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \sin th \]
                                                    7. Applied rewrites62.0%

                                                      \[\leadsto \frac{\sin ky}{\sqrt{0.5 - \color{blue}{0.5 \cdot \cos \left(ky + ky\right)}}} \cdot \sin th \]
                                                  3. Recombined 2 regimes into one program.
                                                  4. Add Preprocessing

                                                  Alternative 23: 65.0% accurate, 1.8× speedup?

                                                  \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;ky \leq 0.0145:\\ \;\;\;\;\frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th\\ \mathbf{else}:\\ \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \sin th\\ \end{array} \end{array} \]
                                                  (FPCore (kx ky th)
                                                   :precision binary64
                                                   (if (<= ky 0.0145)
                                                     (*
                                                      (/
                                                       (*
                                                        (fma
                                                         (- (* (* ky ky) 0.008333333333333333) 0.16666666666666666)
                                                         (* ky ky)
                                                         1.0)
                                                        ky)
                                                       (hypot ky (sin kx)))
                                                      (sin th))
                                                     (* (/ (sin ky) (sqrt (- 0.5 (* 0.5 (cos (+ ky ky)))))) (sin th))))
                                                  double code(double kx, double ky, double th) {
                                                  	double tmp;
                                                  	if (ky <= 0.0145) {
                                                  		tmp = ((fma((((ky * ky) * 0.008333333333333333) - 0.16666666666666666), (ky * ky), 1.0) * ky) / hypot(ky, sin(kx))) * sin(th);
                                                  	} else {
                                                  		tmp = (sin(ky) / sqrt((0.5 - (0.5 * cos((ky + ky)))))) * sin(th);
                                                  	}
                                                  	return tmp;
                                                  }
                                                  
                                                  function code(kx, ky, th)
                                                  	tmp = 0.0
                                                  	if (ky <= 0.0145)
                                                  		tmp = Float64(Float64(Float64(fma(Float64(Float64(Float64(ky * ky) * 0.008333333333333333) - 0.16666666666666666), Float64(ky * ky), 1.0) * ky) / hypot(ky, sin(kx))) * sin(th));
                                                  	else
                                                  		tmp = Float64(Float64(sin(ky) / sqrt(Float64(0.5 - Float64(0.5 * cos(Float64(ky + ky)))))) * sin(th));
                                                  	end
                                                  	return tmp
                                                  end
                                                  
                                                  code[kx_, ky_, th_] := If[LessEqual[ky, 0.0145], N[(N[(N[(N[(N[(N[(N[(ky * ky), $MachinePrecision] * 0.008333333333333333), $MachinePrecision] - 0.16666666666666666), $MachinePrecision] * N[(ky * ky), $MachinePrecision] + 1.0), $MachinePrecision] * ky), $MachinePrecision] / N[Sqrt[ky ^ 2 + N[Sin[kx], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(0.5 - N[(0.5 * N[Cos[N[(ky + ky), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]]
                                                  
                                                  \begin{array}{l}
                                                  
                                                  \\
                                                  \begin{array}{l}
                                                  \mathbf{if}\;ky \leq 0.0145:\\
                                                  \;\;\;\;\frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th\\
                                                  
                                                  \mathbf{else}:\\
                                                  \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \sin th\\
                                                  
                                                  
                                                  \end{array}
                                                  \end{array}
                                                  
                                                  Derivation
                                                  1. Split input into 2 regimes
                                                  2. if ky < 0.0145000000000000007

                                                    1. Initial program 91.2%

                                                      \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                    2. Add Preprocessing
                                                    3. Step-by-step derivation
                                                      1. lift-sqrt.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                                                      2. lift-+.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                                                      3. lift-pow.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
                                                      4. lift-sin.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                      5. lift-pow.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                                      6. lift-sin.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
                                                      7. +-commutativeN/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
                                                      8. unpow2N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
                                                      9. unpow2N/A

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
                                                      10. lower-hypot.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                                                      11. lift-sin.f64N/A

                                                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
                                                      12. lift-sin.f6499.7

                                                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
                                                    4. Applied rewrites99.7%

                                                      \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                                                    5. Taylor expanded in ky around 0

                                                      \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                                                    6. Step-by-step derivation
                                                      1. Applied rewrites64.8%

                                                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                                                      2. Taylor expanded in ky around 0

                                                        \[\leadsto \frac{\color{blue}{ky \cdot \left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right)}}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                      3. Step-by-step derivation
                                                        1. *-commutativeN/A

                                                          \[\leadsto \frac{\left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                        2. lower-*.f64N/A

                                                          \[\leadsto \frac{\left(1 + {ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right)\right) \cdot \color{blue}{ky}}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                        3. +-commutativeN/A

                                                          \[\leadsto \frac{\left({ky}^{2} \cdot \left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right) + 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                        4. *-commutativeN/A

                                                          \[\leadsto \frac{\left(\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}\right) \cdot {ky}^{2} + 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                        5. lower-fma.f64N/A

                                                          \[\leadsto \frac{\mathsf{fma}\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                        6. lower--.f64N/A

                                                          \[\leadsto \frac{\mathsf{fma}\left(\frac{1}{120} \cdot {ky}^{2} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                        7. *-commutativeN/A

                                                          \[\leadsto \frac{\mathsf{fma}\left({ky}^{2} \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                        8. lower-*.f64N/A

                                                          \[\leadsto \frac{\mathsf{fma}\left({ky}^{2} \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                        9. pow2N/A

                                                          \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                        10. lift-*.f64N/A

                                                          \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, {ky}^{2}, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                        11. pow2N/A

                                                          \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot \frac{1}{120} - \frac{1}{6}, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                        12. lift-*.f6463.5

                                                          \[\leadsto \frac{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                      4. Applied rewrites63.5%

                                                        \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\left(ky \cdot ky\right) \cdot 0.008333333333333333 - 0.16666666666666666, ky \cdot ky, 1\right) \cdot ky}}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]

                                                      if 0.0145000000000000007 < ky

                                                      1. Initial program 99.8%

                                                        \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                      2. Add Preprocessing
                                                      3. Taylor expanded in kx around 0

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                                      4. Step-by-step derivation
                                                        1. lift-sin.f64N/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \sin th \]
                                                        2. lift-pow.f6462.0

                                                          \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \sin th \]
                                                      5. Applied rewrites62.0%

                                                        \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                                      6. Step-by-step derivation
                                                        1. lift-pow.f64N/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \sin th \]
                                                        2. lift-sin.f64N/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \sin th \]
                                                        3. pow2N/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \color{blue}{\sin ky}}} \cdot \sin th \]
                                                        4. sqr-sin-aN/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \sin th \]
                                                        5. lower--.f64N/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \sin th \]
                                                        6. lower-*.f64N/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \color{blue}{\cos \left(2 \cdot ky\right)}}} \cdot \sin th \]
                                                        7. cos-2N/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \left(\cos ky \cdot \cos ky - \color{blue}{\sin ky \cdot \sin ky}\right)}} \cdot \sin th \]
                                                        8. cos-sumN/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \sin th \]
                                                        9. lower-cos.f64N/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \sin th \]
                                                        10. lower-+.f6461.1

                                                          \[\leadsto \frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \sin th \]
                                                      7. Applied rewrites61.1%

                                                        \[\leadsto \frac{\sin ky}{\sqrt{0.5 - \color{blue}{0.5 \cdot \cos \left(ky + ky\right)}}} \cdot \sin th \]
                                                    7. Recombined 2 regimes into one program.
                                                    8. Add Preprocessing

                                                    Alternative 24: 65.1% accurate, 1.8× speedup?

                                                    \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;ky \leq 0.0145:\\ \;\;\;\;\frac{\mathsf{fma}\left(ky \cdot ky, -0.16666666666666666, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th\\ \mathbf{else}:\\ \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \sin th\\ \end{array} \end{array} \]
                                                    (FPCore (kx ky th)
                                                     :precision binary64
                                                     (if (<= ky 0.0145)
                                                       (*
                                                        (/ (* (fma (* ky ky) -0.16666666666666666 1.0) ky) (hypot ky (sin kx)))
                                                        (sin th))
                                                       (* (/ (sin ky) (sqrt (- 0.5 (* 0.5 (cos (+ ky ky)))))) (sin th))))
                                                    double code(double kx, double ky, double th) {
                                                    	double tmp;
                                                    	if (ky <= 0.0145) {
                                                    		tmp = ((fma((ky * ky), -0.16666666666666666, 1.0) * ky) / hypot(ky, sin(kx))) * sin(th);
                                                    	} else {
                                                    		tmp = (sin(ky) / sqrt((0.5 - (0.5 * cos((ky + ky)))))) * sin(th);
                                                    	}
                                                    	return tmp;
                                                    }
                                                    
                                                    function code(kx, ky, th)
                                                    	tmp = 0.0
                                                    	if (ky <= 0.0145)
                                                    		tmp = Float64(Float64(Float64(fma(Float64(ky * ky), -0.16666666666666666, 1.0) * ky) / hypot(ky, sin(kx))) * sin(th));
                                                    	else
                                                    		tmp = Float64(Float64(sin(ky) / sqrt(Float64(0.5 - Float64(0.5 * cos(Float64(ky + ky)))))) * sin(th));
                                                    	end
                                                    	return tmp
                                                    end
                                                    
                                                    code[kx_, ky_, th_] := If[LessEqual[ky, 0.0145], N[(N[(N[(N[(N[(ky * ky), $MachinePrecision] * -0.16666666666666666 + 1.0), $MachinePrecision] * ky), $MachinePrecision] / N[Sqrt[ky ^ 2 + N[Sin[kx], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision], N[(N[(N[Sin[ky], $MachinePrecision] / N[Sqrt[N[(0.5 - N[(0.5 * N[Cos[N[(ky + ky), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Sin[th], $MachinePrecision]), $MachinePrecision]]
                                                    
                                                    \begin{array}{l}
                                                    
                                                    \\
                                                    \begin{array}{l}
                                                    \mathbf{if}\;ky \leq 0.0145:\\
                                                    \;\;\;\;\frac{\mathsf{fma}\left(ky \cdot ky, -0.16666666666666666, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th\\
                                                    
                                                    \mathbf{else}:\\
                                                    \;\;\;\;\frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \sin th\\
                                                    
                                                    
                                                    \end{array}
                                                    \end{array}
                                                    
                                                    Derivation
                                                    1. Split input into 2 regimes
                                                    2. if ky < 0.0145000000000000007

                                                      1. Initial program 91.2%

                                                        \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                      2. Add Preprocessing
                                                      3. Step-by-step derivation
                                                        1. lift-sqrt.f64N/A

                                                          \[\leadsto \frac{\sin ky}{\color{blue}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                                                        2. lift-+.f64N/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2} + {\sin ky}^{2}}}} \cdot \sin th \]
                                                        3. lift-pow.f64N/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin kx}^{2}} + {\sin ky}^{2}}} \cdot \sin th \]
                                                        4. lift-sin.f64N/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{{\color{blue}{\sin kx}}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                        5. lift-pow.f64N/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + \color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                                        6. lift-sin.f64N/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\color{blue}{\sin ky}}^{2}}} \cdot \sin th \]
                                                        7. +-commutativeN/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2} + {\sin kx}^{2}}}} \cdot \sin th \]
                                                        8. unpow2N/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{\sin ky \cdot \sin ky} + {\sin kx}^{2}}} \cdot \sin th \]
                                                        9. unpow2N/A

                                                          \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \sin ky + \color{blue}{\sin kx \cdot \sin kx}}} \cdot \sin th \]
                                                        10. lower-hypot.f64N/A

                                                          \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                                                        11. lift-sin.f64N/A

                                                          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{\sin ky}, \sin kx\right)} \cdot \sin th \]
                                                        12. lift-sin.f6499.7

                                                          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\sin ky, \color{blue}{\sin kx}\right)} \cdot \sin th \]
                                                      4. Applied rewrites99.7%

                                                        \[\leadsto \frac{\sin ky}{\color{blue}{\mathsf{hypot}\left(\sin ky, \sin kx\right)}} \cdot \sin th \]
                                                      5. Taylor expanded in ky around 0

                                                        \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                                                      6. Step-by-step derivation
                                                        1. Applied rewrites64.8%

                                                          \[\leadsto \frac{\sin ky}{\mathsf{hypot}\left(\color{blue}{ky}, \sin kx\right)} \cdot \sin th \]
                                                        2. Taylor expanded in ky around 0

                                                          \[\leadsto \frac{\color{blue}{ky \cdot \left(1 + \frac{-1}{6} \cdot {ky}^{2}\right)}}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                        3. Step-by-step derivation
                                                          1. *-commutativeN/A

                                                            \[\leadsto \frac{\left(1 + \frac{-1}{6} \cdot {ky}^{2}\right) \cdot \color{blue}{ky}}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                          2. lower-*.f64N/A

                                                            \[\leadsto \frac{\left(1 + \frac{-1}{6} \cdot {ky}^{2}\right) \cdot \color{blue}{ky}}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                          3. +-commutativeN/A

                                                            \[\leadsto \frac{\left(\frac{-1}{6} \cdot {ky}^{2} + 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                          4. *-commutativeN/A

                                                            \[\leadsto \frac{\left({ky}^{2} \cdot \frac{-1}{6} + 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                          5. lower-fma.f64N/A

                                                            \[\leadsto \frac{\mathsf{fma}\left({ky}^{2}, \frac{-1}{6}, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                          6. pow2N/A

                                                            \[\leadsto \frac{\mathsf{fma}\left(ky \cdot ky, \frac{-1}{6}, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                          7. lift-*.f6463.7

                                                            \[\leadsto \frac{\mathsf{fma}\left(ky \cdot ky, -0.16666666666666666, 1\right) \cdot ky}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]
                                                        4. Applied rewrites63.7%

                                                          \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(ky \cdot ky, -0.16666666666666666, 1\right) \cdot ky}}{\mathsf{hypot}\left(ky, \sin kx\right)} \cdot \sin th \]

                                                        if 0.0145000000000000007 < ky

                                                        1. Initial program 99.8%

                                                          \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                        2. Add Preprocessing
                                                        3. Taylor expanded in kx around 0

                                                          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                                        4. Step-by-step derivation
                                                          1. lift-sin.f64N/A

                                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \sin th \]
                                                          2. lift-pow.f6462.0

                                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \sin th \]
                                                        5. Applied rewrites62.0%

                                                          \[\leadsto \frac{\sin ky}{\sqrt{\color{blue}{{\sin ky}^{2}}}} \cdot \sin th \]
                                                        6. Step-by-step derivation
                                                          1. lift-pow.f64N/A

                                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{\color{blue}{2}}}} \cdot \sin th \]
                                                          2. lift-sin.f64N/A

                                                            \[\leadsto \frac{\sin ky}{\sqrt{{\sin ky}^{2}}} \cdot \sin th \]
                                                          3. pow2N/A

                                                            \[\leadsto \frac{\sin ky}{\sqrt{\sin ky \cdot \color{blue}{\sin ky}}} \cdot \sin th \]
                                                          4. sqr-sin-aN/A

                                                            \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \sin th \]
                                                          5. lower--.f64N/A

                                                            \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \color{blue}{\frac{1}{2} \cdot \cos \left(2 \cdot ky\right)}}} \cdot \sin th \]
                                                          6. lower-*.f64N/A

                                                            \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \color{blue}{\cos \left(2 \cdot ky\right)}}} \cdot \sin th \]
                                                          7. cos-2N/A

                                                            \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \left(\cos ky \cdot \cos ky - \color{blue}{\sin ky \cdot \sin ky}\right)}} \cdot \sin th \]
                                                          8. cos-sumN/A

                                                            \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \sin th \]
                                                          9. lower-cos.f64N/A

                                                            \[\leadsto \frac{\sin ky}{\sqrt{\frac{1}{2} - \frac{1}{2} \cdot \cos \left(ky + ky\right)}} \cdot \sin th \]
                                                          10. lower-+.f6461.1

                                                            \[\leadsto \frac{\sin ky}{\sqrt{0.5 - 0.5 \cdot \cos \left(ky + ky\right)}} \cdot \sin th \]
                                                        7. Applied rewrites61.1%

                                                          \[\leadsto \frac{\sin ky}{\sqrt{0.5 - \color{blue}{0.5 \cdot \cos \left(ky + ky\right)}}} \cdot \sin th \]
                                                      7. Recombined 2 regimes into one program.
                                                      8. Add Preprocessing

                                                      Alternative 25: 13.6% accurate, 632.0× speedup?

                                                      \[\begin{array}{l} \\ th \end{array} \]
                                                      (FPCore (kx ky th) :precision binary64 th)
                                                      double code(double kx, double ky, double th) {
                                                      	return th;
                                                      }
                                                      
                                                      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(kx, ky, th)
                                                      use fmin_fmax_functions
                                                          real(8), intent (in) :: kx
                                                          real(8), intent (in) :: ky
                                                          real(8), intent (in) :: th
                                                          code = th
                                                      end function
                                                      
                                                      public static double code(double kx, double ky, double th) {
                                                      	return th;
                                                      }
                                                      
                                                      def code(kx, ky, th):
                                                      	return th
                                                      
                                                      function code(kx, ky, th)
                                                      	return th
                                                      end
                                                      
                                                      function tmp = code(kx, ky, th)
                                                      	tmp = th;
                                                      end
                                                      
                                                      code[kx_, ky_, th_] := th
                                                      
                                                      \begin{array}{l}
                                                      
                                                      \\
                                                      th
                                                      \end{array}
                                                      
                                                      Derivation
                                                      1. Initial program 93.0%

                                                        \[\frac{\sin ky}{\sqrt{{\sin kx}^{2} + {\sin ky}^{2}}} \cdot \sin th \]
                                                      2. Add Preprocessing
                                                      3. Taylor expanded in kx around 0

                                                        \[\leadsto \color{blue}{\sin th} \]
                                                      4. Step-by-step derivation
                                                        1. lift-sin.f6422.0

                                                          \[\leadsto \sin th \]
                                                      5. Applied rewrites22.0%

                                                        \[\leadsto \color{blue}{\sin th} \]
                                                      6. Taylor expanded in th around 0

                                                        \[\leadsto th \cdot \color{blue}{\left(1 + \frac{-1}{6} \cdot {th}^{2}\right)} \]
                                                      7. Step-by-step derivation
                                                        1. *-commutativeN/A

                                                          \[\leadsto \left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot th \]
                                                        2. lower-*.f64N/A

                                                          \[\leadsto \left(1 + \frac{-1}{6} \cdot {th}^{2}\right) \cdot th \]
                                                        3. +-commutativeN/A

                                                          \[\leadsto \left(\frac{-1}{6} \cdot {th}^{2} + 1\right) \cdot th \]
                                                        4. *-commutativeN/A

                                                          \[\leadsto \left({th}^{2} \cdot \frac{-1}{6} + 1\right) \cdot th \]
                                                        5. lower-fma.f64N/A

                                                          \[\leadsto \mathsf{fma}\left({th}^{2}, \frac{-1}{6}, 1\right) \cdot th \]
                                                        6. unpow2N/A

                                                          \[\leadsto \mathsf{fma}\left(th \cdot th, \frac{-1}{6}, 1\right) \cdot th \]
                                                        7. lower-*.f6412.7

                                                          \[\leadsto \mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot th \]
                                                      8. Applied rewrites12.7%

                                                        \[\leadsto \mathsf{fma}\left(th \cdot th, -0.16666666666666666, 1\right) \cdot \color{blue}{th} \]
                                                      9. Taylor expanded in th around 0

                                                        \[\leadsto th \]
                                                      10. Step-by-step derivation
                                                        1. Applied rewrites13.0%

                                                          \[\leadsto th \]
                                                        2. Add Preprocessing

                                                        Reproduce

                                                        ?
                                                        herbie shell --seed 2025050 
                                                        (FPCore (kx ky th)
                                                          :name "Toniolo and Linder, Equation (3b), real"
                                                          :precision binary64
                                                          :pre (TRUE)
                                                          (* (/ (sin ky) (sqrt (+ (pow (sin kx) 2.0) (pow (sin ky) 2.0)))) (sin th)))