UniformSampleCone, x

Percentage Accurate: 57.1% → 99.1%
Time: 9.5s
Alternatives: 18
Speedup: 5.8×

Specification

?
\[\left(\left(2.328306437 \cdot 10^{-10} \leq ux \land ux \leq 1\right) \land \left(2.328306437 \cdot 10^{-10} \leq uy \land uy \leq 1\right)\right) \land \left(0 \leq maxCos \land maxCos \leq 1\right)\]
\[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(1 - ux\right) + ux \cdot maxCos\\ \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - t\_0 \cdot t\_0} \end{array} \end{array} \]
(FPCore (ux uy maxCos)
 :precision binary32
 (let* ((t_0 (+ (- 1.0 ux) (* ux maxCos))))
   (* (cos (* (* uy 2.0) (PI))) (sqrt (- 1.0 (* t_0 t_0))))))
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \left(1 - ux\right) + ux \cdot maxCos\\
\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - t\_0 \cdot t\_0}
\end{array}
\end{array}

Sampling outcomes in binary32 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 18 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: 57.1% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(1 - ux\right) + ux \cdot maxCos\\ \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - t\_0 \cdot t\_0} \end{array} \end{array} \]
(FPCore (ux uy maxCos)
 :precision binary32
 (let* ((t_0 (+ (- 1.0 ux) (* ux maxCos))))
   (* (cos (* (* uy 2.0) (PI))) (sqrt (- 1.0 (* t_0 t_0))))))
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \left(1 - ux\right) + ux \cdot maxCos\\
\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - t\_0 \cdot t\_0}
\end{array}
\end{array}

Alternative 1: 99.1% accurate, 0.6× speedup?

\[\begin{array}{l} \\ \sin \left(\mathsf{fma}\left(-uy, \mathsf{PI}\left(\right) \cdot 2, \frac{\mathsf{PI}\left(\right)}{2}\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux} \end{array} \]
(FPCore (ux uy maxCos)
 :precision binary32
 (*
  (sin (fma (- uy) (* (PI) 2.0) (/ (PI) 2.0)))
  (sqrt (* (fma -2.0 maxCos (- 2.0 (* (pow (- maxCos 1.0) 2.0) ux))) ux))))
\begin{array}{l}

\\
\sin \left(\mathsf{fma}\left(-uy, \mathsf{PI}\left(\right) \cdot 2, \frac{\mathsf{PI}\left(\right)}{2}\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux}
\end{array}
Derivation
  1. Initial program 58.7%

    \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
  2. Add Preprocessing
  3. Taylor expanded in ux around 0

    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{ux \cdot \left(\left(2 + -1 \cdot \left(ux \cdot {\left(maxCos - 1\right)}^{2}\right)\right) - 2 \cdot maxCos\right)}} \]
  4. Step-by-step derivation
    1. Applied rewrites98.9%

      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux}} \]
    2. Step-by-step derivation
      1. lift-cos.f32N/A

        \[\leadsto \color{blue}{\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right)} \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux} \]
      2. cos-neg-revN/A

        \[\leadsto \color{blue}{\cos \left(\mathsf{neg}\left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right)\right)} \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux} \]
      3. sin-+PI/2-revN/A

        \[\leadsto \color{blue}{\sin \left(\left(\mathsf{neg}\left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux} \]
      4. lower-sin.f32N/A

        \[\leadsto \color{blue}{\sin \left(\left(\mathsf{neg}\left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right)} \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux} \]
      5. lift-*.f32N/A

        \[\leadsto \sin \left(\left(\mathsf{neg}\left(\color{blue}{\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux} \]
      6. lift-*.f32N/A

        \[\leadsto \sin \left(\left(\mathsf{neg}\left(\color{blue}{\left(uy \cdot 2\right)} \cdot \mathsf{PI}\left(\right)\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux} \]
      7. associate-*l*N/A

        \[\leadsto \sin \left(\left(\mathsf{neg}\left(\color{blue}{uy \cdot \left(2 \cdot \mathsf{PI}\left(\right)\right)}\right)\right) + \frac{\mathsf{PI}\left(\right)}{2}\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux} \]
      8. distribute-lft-neg-inN/A

        \[\leadsto \sin \left(\color{blue}{\left(\mathsf{neg}\left(uy\right)\right) \cdot \left(2 \cdot \mathsf{PI}\left(\right)\right)} + \frac{\mathsf{PI}\left(\right)}{2}\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux} \]
      9. lift-PI.f32N/A

        \[\leadsto \sin \left(\left(\mathsf{neg}\left(uy\right)\right) \cdot \left(2 \cdot \mathsf{PI}\left(\right)\right) + \frac{\color{blue}{\mathsf{PI}\left(\right)}}{2}\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux} \]
      10. lift-/.f32N/A

        \[\leadsto \sin \left(\left(\mathsf{neg}\left(uy\right)\right) \cdot \left(2 \cdot \mathsf{PI}\left(\right)\right) + \color{blue}{\frac{\mathsf{PI}\left(\right)}{2}}\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux} \]
      11. lower-fma.f32N/A

        \[\leadsto \sin \color{blue}{\left(\mathsf{fma}\left(\mathsf{neg}\left(uy\right), 2 \cdot \mathsf{PI}\left(\right), \frac{\mathsf{PI}\left(\right)}{2}\right)\right)} \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux} \]
      12. lower-neg.f32N/A

        \[\leadsto \sin \left(\mathsf{fma}\left(\color{blue}{-uy}, 2 \cdot \mathsf{PI}\left(\right), \frac{\mathsf{PI}\left(\right)}{2}\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux} \]
      13. *-commutativeN/A

        \[\leadsto \sin \left(\mathsf{fma}\left(-uy, \color{blue}{\mathsf{PI}\left(\right) \cdot 2}, \frac{\mathsf{PI}\left(\right)}{2}\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux} \]
      14. lower-*.f3299.1

        \[\leadsto \sin \left(\mathsf{fma}\left(-uy, \color{blue}{\mathsf{PI}\left(\right) \cdot 2}, \frac{\mathsf{PI}\left(\right)}{2}\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux} \]
    3. Applied rewrites99.1%

      \[\leadsto \color{blue}{\sin \left(\mathsf{fma}\left(-uy, \mathsf{PI}\left(\right) \cdot 2, \frac{\mathsf{PI}\left(\right)}{2}\right)\right)} \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux} \]
    4. Add Preprocessing

    Alternative 2: 85.3% accurate, 0.5× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(1 - ux\right) + ux \cdot maxCos\\ t_1 := \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right)\\ t_2 := \sqrt{1 - t\_0 \cdot t\_0}\\ \mathbf{if}\;t\_1 \cdot t\_2 \leq 0.019999999552965164:\\ \;\;\;\;t\_1 \cdot \sqrt{2 \cdot ux}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\left(uy \cdot uy\right) \cdot -2, \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right), 1\right) \cdot t\_2\\ \end{array} \end{array} \]
    (FPCore (ux uy maxCos)
     :precision binary32
     (let* ((t_0 (+ (- 1.0 ux) (* ux maxCos)))
            (t_1 (cos (* (* uy 2.0) (PI))))
            (t_2 (sqrt (- 1.0 (* t_0 t_0)))))
       (if (<= (* t_1 t_2) 0.019999999552965164)
         (* t_1 (sqrt (* 2.0 ux)))
         (* (fma (* (* uy uy) -2.0) (* (PI) (PI)) 1.0) t_2))))
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    t_0 := \left(1 - ux\right) + ux \cdot maxCos\\
    t_1 := \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right)\\
    t_2 := \sqrt{1 - t\_0 \cdot t\_0}\\
    \mathbf{if}\;t\_1 \cdot t\_2 \leq 0.019999999552965164:\\
    \;\;\;\;t\_1 \cdot \sqrt{2 \cdot ux}\\
    
    \mathbf{else}:\\
    \;\;\;\;\mathsf{fma}\left(\left(uy \cdot uy\right) \cdot -2, \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right), 1\right) \cdot t\_2\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 2 regimes
    2. if (*.f32 (cos.f32 (*.f32 (*.f32 uy #s(literal 2 binary32)) (PI.f32))) (sqrt.f32 (-.f32 #s(literal 1 binary32) (*.f32 (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos)) (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos)))))) < 0.0199999996

      1. Initial program 39.9%

        \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. lift--.f32N/A

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}} \]
        2. lift-*.f32N/A

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \color{blue}{\left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}} \]
        3. fp-cancel-sub-sign-invN/A

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{1 + \left(\mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right)\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}} \]
        4. +-commutativeN/A

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\left(\mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right)\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right) + 1}} \]
        5. *-commutativeN/A

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right)\right)} + 1} \]
        6. lower-fma.f32N/A

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(\left(1 - ux\right) + ux \cdot maxCos, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)}} \]
        7. lift-+.f32N/A

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{\left(1 - ux\right) + ux \cdot maxCos}, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
        8. +-commutativeN/A

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{ux \cdot maxCos + \left(1 - ux\right)}, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
        9. lift-*.f32N/A

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{ux \cdot maxCos} + \left(1 - ux\right), \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
        10. *-commutativeN/A

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{maxCos \cdot ux} + \left(1 - ux\right), \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
        11. lower-fma.f32N/A

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(maxCos, ux, 1 - ux\right)}, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
        12. lower-neg.f3239.8

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), \color{blue}{-\left(\left(1 - ux\right) + ux \cdot maxCos\right)}, 1\right)} \]
        13. lift-+.f32N/A

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\color{blue}{\left(\left(1 - ux\right) + ux \cdot maxCos\right)}, 1\right)} \]
        14. +-commutativeN/A

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\color{blue}{\left(ux \cdot maxCos + \left(1 - ux\right)\right)}, 1\right)} \]
        15. lift-*.f32N/A

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\left(\color{blue}{ux \cdot maxCos} + \left(1 - ux\right)\right), 1\right)} \]
        16. *-commutativeN/A

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\left(\color{blue}{maxCos \cdot ux} + \left(1 - ux\right)\right), 1\right)} \]
        17. lower-fma.f3239.8

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\color{blue}{\mathsf{fma}\left(maxCos, ux, 1 - ux\right)}, 1\right)} \]
      4. Applied rewrites39.8%

        \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\mathsf{fma}\left(maxCos, ux, 1 - ux\right), 1\right)}} \]
      5. Taylor expanded in ux around 0

        \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{ux \cdot \left(\left(1 + -1 \cdot \left(maxCos - 1\right)\right) - maxCos\right)}} \]
      6. Step-by-step derivation
        1. Applied rewrites91.5%

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\left(\mathsf{fma}\left(-1, maxCos - 1, 1\right) - maxCos\right) \cdot ux}} \]
        2. Taylor expanded in maxCos around 0

          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{2 \cdot ux} \]
        3. Step-by-step derivation
          1. Applied rewrites88.3%

            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{2 \cdot ux} \]

          if 0.0199999996 < (*.f32 (cos.f32 (*.f32 (*.f32 uy #s(literal 2 binary32)) (PI.f32))) (sqrt.f32 (-.f32 #s(literal 1 binary32) (*.f32 (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos)) (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos))))))

          1. Initial program 91.1%

            \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
          2. Add Preprocessing
          3. Taylor expanded in uy around 0

            \[\leadsto \color{blue}{\left(1 + -2 \cdot \left({uy}^{2} \cdot {\mathsf{PI}\left(\right)}^{2}\right)\right)} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
          4. Step-by-step derivation
            1. Applied rewrites85.8%

              \[\leadsto \color{blue}{\mathsf{fma}\left(\left(uy \cdot uy\right) \cdot -2, \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right), 1\right)} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
          5. Recombined 2 regimes into one program.
          6. Add Preprocessing

          Alternative 3: 96.2% accurate, 0.6× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} t_0 := \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right)\\ \mathbf{if}\;t\_0 \leq 0.9999998807907104:\\ \;\;\;\;t\_0 \cdot \sqrt{\left(2 - ux\right) \cdot ux}\\ \mathbf{else}:\\ \;\;\;\;1 \cdot \sqrt{\left(\mathsf{fma}\left(-2, maxCos, 2\right) - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux}\\ \end{array} \end{array} \]
          (FPCore (ux uy maxCos)
           :precision binary32
           (let* ((t_0 (cos (* (* uy 2.0) (PI)))))
             (if (<= t_0 0.9999998807907104)
               (* t_0 (sqrt (* (- 2.0 ux) ux)))
               (*
                1.0
                (sqrt
                 (* (- (fma -2.0 maxCos 2.0) (* (pow (- maxCos 1.0) 2.0) ux)) ux))))))
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          t_0 := \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right)\\
          \mathbf{if}\;t\_0 \leq 0.9999998807907104:\\
          \;\;\;\;t\_0 \cdot \sqrt{\left(2 - ux\right) \cdot ux}\\
          
          \mathbf{else}:\\
          \;\;\;\;1 \cdot \sqrt{\left(\mathsf{fma}\left(-2, maxCos, 2\right) - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux}\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 2 regimes
          2. if (cos.f32 (*.f32 (*.f32 uy #s(literal 2 binary32)) (PI.f32))) < 0.999999881

            1. Initial program 58.7%

              \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
            2. Add Preprocessing
            3. Taylor expanded in ux around 0

              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{ux \cdot \left(\left(2 + -1 \cdot \left(ux \cdot {\left(maxCos - 1\right)}^{2}\right)\right) - 2 \cdot maxCos\right)}} \]
            4. Step-by-step derivation
              1. Applied rewrites98.4%

                \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux}} \]
              2. Taylor expanded in maxCos around 0

                \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{ux \cdot \color{blue}{\left(2 - ux\right)}} \]
              3. Step-by-step derivation
                1. Applied rewrites95.7%

                  \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\left(2 - ux\right) \cdot \color{blue}{ux}} \]

                if 0.999999881 < (cos.f32 (*.f32 (*.f32 uy #s(literal 2 binary32)) (PI.f32)))

                1. Initial program 58.6%

                  \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                2. Add Preprocessing
                3. Taylor expanded in uy around 0

                  \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                4. Step-by-step derivation
                  1. Applied rewrites58.7%

                    \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                  2. Taylor expanded in ux around 0

                    \[\leadsto 1 \cdot \sqrt{1 - \color{blue}{1}} \]
                  3. Step-by-step derivation
                    1. Applied rewrites6.6%

                      \[\leadsto 1 \cdot \sqrt{1 - \color{blue}{1}} \]
                    2. Taylor expanded in ux around 0

                      \[\leadsto 1 \cdot \sqrt{\color{blue}{ux \cdot \left(\left(2 + -1 \cdot \left(ux \cdot {\left(maxCos - 1\right)}^{2}\right)\right) - 2 \cdot maxCos\right)}} \]
                    3. Step-by-step derivation
                      1. Applied rewrites99.3%

                        \[\leadsto 1 \cdot \sqrt{\color{blue}{\left(\mathsf{fma}\left(-2, maxCos, 2\right) - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux}} \]
                    4. Recombined 2 regimes into one program.
                    5. Add Preprocessing

                    Alternative 4: 80.3% accurate, 0.7× speedup?

                    \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(1 - ux\right) + ux \cdot maxCos\\ \mathbf{if}\;\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - t\_0 \cdot t\_0} \leq 0.03999999910593033:\\ \;\;\;\;\mathsf{fma}\left(-2 \cdot \left(uy \cdot uy\right), \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right), 1\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}\\ \mathbf{else}:\\ \;\;\;\;1 \cdot \sqrt{1 - t\_0 \cdot \mathsf{fma}\left(maxCos - 1, ux, 1\right)}\\ \end{array} \end{array} \]
                    (FPCore (ux uy maxCos)
                     :precision binary32
                     (let* ((t_0 (+ (- 1.0 ux) (* ux maxCos))))
                       (if (<=
                            (* (cos (* (* uy 2.0) (PI))) (sqrt (- 1.0 (* t_0 t_0))))
                            0.03999999910593033)
                         (*
                          (fma (* -2.0 (* uy uy)) (* (PI) (PI)) 1.0)
                          (sqrt (* (fma -2.0 maxCos 2.0) ux)))
                         (* 1.0 (sqrt (- 1.0 (* t_0 (fma (- maxCos 1.0) ux 1.0))))))))
                    \begin{array}{l}
                    
                    \\
                    \begin{array}{l}
                    t_0 := \left(1 - ux\right) + ux \cdot maxCos\\
                    \mathbf{if}\;\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - t\_0 \cdot t\_0} \leq 0.03999999910593033:\\
                    \;\;\;\;\mathsf{fma}\left(-2 \cdot \left(uy \cdot uy\right), \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right), 1\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}\\
                    
                    \mathbf{else}:\\
                    \;\;\;\;1 \cdot \sqrt{1 - t\_0 \cdot \mathsf{fma}\left(maxCos - 1, ux, 1\right)}\\
                    
                    
                    \end{array}
                    \end{array}
                    
                    Derivation
                    1. Split input into 2 regimes
                    2. if (*.f32 (cos.f32 (*.f32 (*.f32 uy #s(literal 2 binary32)) (PI.f32))) (sqrt.f32 (-.f32 #s(literal 1 binary32) (*.f32 (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos)) (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos)))))) < 0.0399999991

                      1. Initial program 42.7%

                        \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                      2. Add Preprocessing
                      3. Taylor expanded in uy around 0

                        \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                      4. Step-by-step derivation
                        1. Applied rewrites36.5%

                          \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                        2. Taylor expanded in ux around 0

                          \[\leadsto 1 \cdot \sqrt{\color{blue}{ux \cdot \left(2 - 2 \cdot maxCos\right)}} \]
                        3. Step-by-step derivation
                          1. Applied rewrites71.5%

                            \[\leadsto 1 \cdot \sqrt{\color{blue}{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}} \]
                          2. Taylor expanded in uy around 0

                            \[\leadsto \color{blue}{\left(1 + -2 \cdot \left({uy}^{2} \cdot {\mathsf{PI}\left(\right)}^{2}\right)\right)} \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux} \]
                          3. Step-by-step derivation
                            1. Applied rewrites79.1%

                              \[\leadsto \color{blue}{\mathsf{fma}\left(-2 \cdot \left(uy \cdot uy\right), \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right), 1\right)} \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux} \]

                            if 0.0399999991 < (*.f32 (cos.f32 (*.f32 (*.f32 uy #s(literal 2 binary32)) (PI.f32))) (sqrt.f32 (-.f32 #s(literal 1 binary32) (*.f32 (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos)) (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos))))))

                            1. Initial program 93.3%

                              \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                            2. Add Preprocessing
                            3. Taylor expanded in uy around 0

                              \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                            4. Step-by-step derivation
                              1. Applied rewrites78.6%

                                \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                              2. Taylor expanded in ux around 0

                                \[\leadsto 1 \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \color{blue}{\left(1 + ux \cdot \left(maxCos - 1\right)\right)}} \]
                              3. Step-by-step derivation
                                1. Applied rewrites78.8%

                                  \[\leadsto 1 \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \color{blue}{\mathsf{fma}\left(maxCos - 1, ux, 1\right)}} \]
                              4. Recombined 2 regimes into one program.
                              5. Add Preprocessing

                              Alternative 5: 98.9% accurate, 1.0× speedup?

                              \[\begin{array}{l} \\ \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(-\mathsf{fma}\left(\mathsf{fma}\left(-2, ux, 2\right), ux, \left(ux \cdot ux\right) \cdot maxCos\right), maxCos, \left(2 - ux\right) \cdot ux\right)} \end{array} \]
                              (FPCore (ux uy maxCos)
                               :precision binary32
                               (*
                                (cos (* (* uy 2.0) (PI)))
                                (sqrt
                                 (fma
                                  (- (fma (fma -2.0 ux 2.0) ux (* (* ux ux) maxCos)))
                                  maxCos
                                  (* (- 2.0 ux) ux)))))
                              \begin{array}{l}
                              
                              \\
                              \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(-\mathsf{fma}\left(\mathsf{fma}\left(-2, ux, 2\right), ux, \left(ux \cdot ux\right) \cdot maxCos\right), maxCos, \left(2 - ux\right) \cdot ux\right)}
                              \end{array}
                              
                              Derivation
                              1. Initial program 58.7%

                                \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                              2. Add Preprocessing
                              3. Taylor expanded in ux around 0

                                \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{ux \cdot \left(\left(2 + -1 \cdot \left(ux \cdot {\left(maxCos - 1\right)}^{2}\right)\right) - 2 \cdot maxCos\right)}} \]
                              4. Step-by-step derivation
                                1. Applied rewrites98.9%

                                  \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux}} \]
                                2. Taylor expanded in maxCos around 0

                                  \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{maxCos \cdot \left(-1 \cdot \left(maxCos \cdot {ux}^{2}\right) + -1 \cdot \left(ux \cdot \left(2 + -2 \cdot ux\right)\right)\right) + \color{blue}{ux \cdot \left(2 - ux\right)}} \]
                                3. Step-by-step derivation
                                  1. Applied rewrites99.0%

                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(-\mathsf{fma}\left(\mathsf{fma}\left(-2, ux, 2\right), ux, \left(ux \cdot ux\right) \cdot maxCos\right), \color{blue}{maxCos}, \left(2 - ux\right) \cdot ux\right)} \]
                                  2. Add Preprocessing

                                  Alternative 6: 98.9% accurate, 1.0× speedup?

                                  \[\begin{array}{l} \\ \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\left(\left(\mathsf{fma}\left(\left(1 - maxCos\right) \cdot \left(maxCos - 1\right), ux, \left(-maxCos\right) - -1\right) - -1\right) - maxCos\right) \cdot ux} \end{array} \]
                                  (FPCore (ux uy maxCos)
                                   :precision binary32
                                   (*
                                    (cos (* (* uy 2.0) (PI)))
                                    (sqrt
                                     (*
                                      (-
                                       (- (fma (* (- 1.0 maxCos) (- maxCos 1.0)) ux (- (- maxCos) -1.0)) -1.0)
                                       maxCos)
                                      ux))))
                                  \begin{array}{l}
                                  
                                  \\
                                  \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\left(\left(\mathsf{fma}\left(\left(1 - maxCos\right) \cdot \left(maxCos - 1\right), ux, \left(-maxCos\right) - -1\right) - -1\right) - maxCos\right) \cdot ux}
                                  \end{array}
                                  
                                  Derivation
                                  1. Initial program 58.7%

                                    \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                  2. Add Preprocessing
                                  3. Step-by-step derivation
                                    1. lift--.f32N/A

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}} \]
                                    2. lift-*.f32N/A

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \color{blue}{\left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}} \]
                                    3. fp-cancel-sub-sign-invN/A

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{1 + \left(\mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right)\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}} \]
                                    4. +-commutativeN/A

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\left(\mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right)\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right) + 1}} \]
                                    5. *-commutativeN/A

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right)\right)} + 1} \]
                                    6. lower-fma.f32N/A

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(\left(1 - ux\right) + ux \cdot maxCos, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)}} \]
                                    7. lift-+.f32N/A

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{\left(1 - ux\right) + ux \cdot maxCos}, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                    8. +-commutativeN/A

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{ux \cdot maxCos + \left(1 - ux\right)}, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                    9. lift-*.f32N/A

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{ux \cdot maxCos} + \left(1 - ux\right), \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                    10. *-commutativeN/A

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{maxCos \cdot ux} + \left(1 - ux\right), \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                    11. lower-fma.f32N/A

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(maxCos, ux, 1 - ux\right)}, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                    12. lower-neg.f3258.6

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), \color{blue}{-\left(\left(1 - ux\right) + ux \cdot maxCos\right)}, 1\right)} \]
                                    13. lift-+.f32N/A

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\color{blue}{\left(\left(1 - ux\right) + ux \cdot maxCos\right)}, 1\right)} \]
                                    14. +-commutativeN/A

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\color{blue}{\left(ux \cdot maxCos + \left(1 - ux\right)\right)}, 1\right)} \]
                                    15. lift-*.f32N/A

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\left(\color{blue}{ux \cdot maxCos} + \left(1 - ux\right)\right), 1\right)} \]
                                    16. *-commutativeN/A

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\left(\color{blue}{maxCos \cdot ux} + \left(1 - ux\right)\right), 1\right)} \]
                                    17. lower-fma.f3258.6

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\color{blue}{\mathsf{fma}\left(maxCos, ux, 1 - ux\right)}, 1\right)} \]
                                  4. Applied rewrites58.6%

                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\mathsf{fma}\left(maxCos, ux, 1 - ux\right), 1\right)}} \]
                                  5. Taylor expanded in ux around 0

                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{ux \cdot \left(\left(1 + \left(-1 \cdot \left(maxCos - 1\right) + ux \cdot \left(\left(1 - maxCos\right) \cdot \left(maxCos - 1\right)\right)\right)\right) - maxCos\right)}} \]
                                  6. Step-by-step derivation
                                    1. Applied rewrites99.0%

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\left(\left(\mathsf{fma}\left(\left(1 - maxCos\right) \cdot \left(maxCos - 1\right), ux, -\left(maxCos - 1\right)\right) + 1\right) - maxCos\right) \cdot ux}} \]
                                    2. Final simplification99.0%

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\left(\left(\mathsf{fma}\left(\left(1 - maxCos\right) \cdot \left(maxCos - 1\right), ux, \left(-maxCos\right) - -1\right) - -1\right) - maxCos\right) \cdot ux} \]
                                    3. Add Preprocessing

                                    Alternative 7: 98.9% accurate, 1.0× speedup?

                                    \[\begin{array}{l} \\ \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - \mathsf{fma}\left(maxCos - 2, maxCos, 1\right) \cdot ux\right) \cdot ux} \end{array} \]
                                    (FPCore (ux uy maxCos)
                                     :precision binary32
                                     (*
                                      (cos (* (* uy 2.0) (PI)))
                                      (sqrt
                                       (* (fma -2.0 maxCos (- 2.0 (* (fma (- maxCos 2.0) maxCos 1.0) ux))) ux))))
                                    \begin{array}{l}
                                    
                                    \\
                                    \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - \mathsf{fma}\left(maxCos - 2, maxCos, 1\right) \cdot ux\right) \cdot ux}
                                    \end{array}
                                    
                                    Derivation
                                    1. Initial program 58.7%

                                      \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                    2. Add Preprocessing
                                    3. Taylor expanded in ux around 0

                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{ux \cdot \left(\left(2 + -1 \cdot \left(ux \cdot {\left(maxCos - 1\right)}^{2}\right)\right) - 2 \cdot maxCos\right)}} \]
                                    4. Step-by-step derivation
                                      1. Applied rewrites98.9%

                                        \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux}} \]
                                      2. Taylor expanded in maxCos around 0

                                        \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - \left(1 + maxCos \cdot \left(maxCos - 2\right)\right) \cdot ux\right) \cdot ux} \]
                                      3. Step-by-step derivation
                                        1. Applied rewrites98.9%

                                          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - \mathsf{fma}\left(maxCos - 2, maxCos, 1\right) \cdot ux\right) \cdot ux} \]
                                        2. Add Preprocessing

                                        Alternative 8: 98.4% accurate, 1.0× speedup?

                                        \[\begin{array}{l} \\ \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\left(2 - ux\right) \cdot ux - \left(\mathsf{fma}\left(-2, ux, 2\right) \cdot ux\right) \cdot maxCos} \end{array} \]
                                        (FPCore (ux uy maxCos)
                                         :precision binary32
                                         (*
                                          (cos (* (* uy 2.0) (PI)))
                                          (sqrt (- (* (- 2.0 ux) ux) (* (* (fma -2.0 ux 2.0) ux) maxCos)))))
                                        \begin{array}{l}
                                        
                                        \\
                                        \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\left(2 - ux\right) \cdot ux - \left(\mathsf{fma}\left(-2, ux, 2\right) \cdot ux\right) \cdot maxCos}
                                        \end{array}
                                        
                                        Derivation
                                        1. Initial program 58.7%

                                          \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                        2. Add Preprocessing
                                        3. Taylor expanded in ux around 0

                                          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{ux \cdot \left(\left(2 + -1 \cdot \left(ux \cdot {\left(maxCos - 1\right)}^{2}\right)\right) - 2 \cdot maxCos\right)}} \]
                                        4. Step-by-step derivation
                                          1. Applied rewrites98.9%

                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux}} \]
                                          2. Taylor expanded in maxCos around 0

                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{-1 \cdot \left(maxCos \cdot \left(ux \cdot \left(2 + -2 \cdot ux\right)\right)\right) + \color{blue}{ux \cdot \left(2 - ux\right)}} \]
                                          3. Step-by-step derivation
                                            1. Applied rewrites98.5%

                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\left(2 - ux\right) \cdot ux - \color{blue}{\left(\mathsf{fma}\left(-2, ux, 2\right) \cdot ux\right) \cdot maxCos}} \]
                                            2. Add Preprocessing

                                            Alternative 9: 98.4% accurate, 1.0× speedup?

                                            \[\begin{array}{l} \\ \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - \mathsf{fma}\left(-2, maxCos, 1\right) \cdot ux\right) \cdot ux} \end{array} \]
                                            (FPCore (ux uy maxCos)
                                             :precision binary32
                                             (*
                                              (cos (* (* uy 2.0) (PI)))
                                              (sqrt (* (fma -2.0 maxCos (- 2.0 (* (fma -2.0 maxCos 1.0) ux))) ux))))
                                            \begin{array}{l}
                                            
                                            \\
                                            \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - \mathsf{fma}\left(-2, maxCos, 1\right) \cdot ux\right) \cdot ux}
                                            \end{array}
                                            
                                            Derivation
                                            1. Initial program 58.7%

                                              \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in ux around 0

                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{ux \cdot \left(\left(2 + -1 \cdot \left(ux \cdot {\left(maxCos - 1\right)}^{2}\right)\right) - 2 \cdot maxCos\right)}} \]
                                            4. Step-by-step derivation
                                              1. Applied rewrites98.9%

                                                \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux}} \]
                                              2. Taylor expanded in maxCos around 0

                                                \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - \left(1 + -2 \cdot maxCos\right) \cdot ux\right) \cdot ux} \]
                                              3. Step-by-step derivation
                                                1. Applied rewrites98.5%

                                                  \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - \mathsf{fma}\left(-2, maxCos, 1\right) \cdot ux\right) \cdot ux} \]
                                                2. Add Preprocessing

                                                Alternative 10: 97.7% accurate, 1.1× speedup?

                                                \[\begin{array}{l} \\ \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - 1 \cdot ux\right) \cdot ux} \end{array} \]
                                                (FPCore (ux uy maxCos)
                                                 :precision binary32
                                                 (*
                                                  (cos (* (* uy 2.0) (PI)))
                                                  (sqrt (* (fma -2.0 maxCos (- 2.0 (* 1.0 ux))) ux))))
                                                \begin{array}{l}
                                                
                                                \\
                                                \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - 1 \cdot ux\right) \cdot ux}
                                                \end{array}
                                                
                                                Derivation
                                                1. Initial program 58.7%

                                                  \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                2. Add Preprocessing
                                                3. Taylor expanded in ux around 0

                                                  \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{ux \cdot \left(\left(2 + -1 \cdot \left(ux \cdot {\left(maxCos - 1\right)}^{2}\right)\right) - 2 \cdot maxCos\right)}} \]
                                                4. Step-by-step derivation
                                                  1. Applied rewrites98.9%

                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux}} \]
                                                  2. Taylor expanded in maxCos around 0

                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - 1 \cdot ux\right) \cdot ux} \]
                                                  3. Step-by-step derivation
                                                    1. Applied rewrites97.8%

                                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2 - 1 \cdot ux\right) \cdot ux} \]
                                                    2. Add Preprocessing

                                                    Alternative 11: 92.9% accurate, 1.2× speedup?

                                                    \[\begin{array}{l} \\ \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\left(2 - ux\right) \cdot ux} \end{array} \]
                                                    (FPCore (ux uy maxCos)
                                                     :precision binary32
                                                     (* (cos (* (* uy 2.0) (PI))) (sqrt (* (- 2.0 ux) ux))))
                                                    \begin{array}{l}
                                                    
                                                    \\
                                                    \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\left(2 - ux\right) \cdot ux}
                                                    \end{array}
                                                    
                                                    Derivation
                                                    1. Initial program 58.7%

                                                      \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                    2. Add Preprocessing
                                                    3. Taylor expanded in ux around 0

                                                      \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{ux \cdot \left(\left(2 + -1 \cdot \left(ux \cdot {\left(maxCos - 1\right)}^{2}\right)\right) - 2 \cdot maxCos\right)}} \]
                                                    4. Step-by-step derivation
                                                      1. Applied rewrites98.9%

                                                        \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(-2, maxCos, 2 - {\left(maxCos - 1\right)}^{2} \cdot ux\right) \cdot ux}} \]
                                                      2. Taylor expanded in maxCos around 0

                                                        \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{ux \cdot \color{blue}{\left(2 - ux\right)}} \]
                                                      3. Step-by-step derivation
                                                        1. Applied rewrites94.2%

                                                          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\left(2 - ux\right) \cdot \color{blue}{ux}} \]
                                                        2. Add Preprocessing

                                                        Alternative 12: 82.6% accurate, 1.4× speedup?

                                                        \[\begin{array}{l} \\ \begin{array}{l} t_0 := \mathsf{fma}\left(-2 \cdot \left(uy \cdot uy\right), \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right), 1\right)\\ t_1 := \left(1 - ux\right) + ux \cdot maxCos\\ t_2 := \mathsf{fma}\left(maxCos, ux, 1 - ux\right)\\ \mathbf{if}\;\sqrt{1 - t\_1 \cdot t\_1} \leq 0.01549999974668026:\\ \;\;\;\;t\_0 \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}\\ \mathbf{else}:\\ \;\;\;\;t\_0 \cdot \sqrt{\mathsf{fma}\left(t\_2, -t\_2, 1\right)}\\ \end{array} \end{array} \]
                                                        (FPCore (ux uy maxCos)
                                                         :precision binary32
                                                         (let* ((t_0 (fma (* -2.0 (* uy uy)) (* (PI) (PI)) 1.0))
                                                                (t_1 (+ (- 1.0 ux) (* ux maxCos)))
                                                                (t_2 (fma maxCos ux (- 1.0 ux))))
                                                           (if (<= (sqrt (- 1.0 (* t_1 t_1))) 0.01549999974668026)
                                                             (* t_0 (sqrt (* (fma -2.0 maxCos 2.0) ux)))
                                                             (* t_0 (sqrt (fma t_2 (- t_2) 1.0))))))
                                                        \begin{array}{l}
                                                        
                                                        \\
                                                        \begin{array}{l}
                                                        t_0 := \mathsf{fma}\left(-2 \cdot \left(uy \cdot uy\right), \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right), 1\right)\\
                                                        t_1 := \left(1 - ux\right) + ux \cdot maxCos\\
                                                        t_2 := \mathsf{fma}\left(maxCos, ux, 1 - ux\right)\\
                                                        \mathbf{if}\;\sqrt{1 - t\_1 \cdot t\_1} \leq 0.01549999974668026:\\
                                                        \;\;\;\;t\_0 \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}\\
                                                        
                                                        \mathbf{else}:\\
                                                        \;\;\;\;t\_0 \cdot \sqrt{\mathsf{fma}\left(t\_2, -t\_2, 1\right)}\\
                                                        
                                                        
                                                        \end{array}
                                                        \end{array}
                                                        
                                                        Derivation
                                                        1. Split input into 2 regimes
                                                        2. if (sqrt.f32 (-.f32 #s(literal 1 binary32) (*.f32 (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos)) (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos))))) < 0.0154999997

                                                          1. Initial program 37.8%

                                                            \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                          2. Add Preprocessing
                                                          3. Taylor expanded in uy around 0

                                                            \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                          4. Step-by-step derivation
                                                            1. Applied rewrites34.5%

                                                              \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                            2. Taylor expanded in ux around 0

                                                              \[\leadsto 1 \cdot \sqrt{\color{blue}{ux \cdot \left(2 - 2 \cdot maxCos\right)}} \]
                                                            3. Step-by-step derivation
                                                              1. Applied rewrites74.4%

                                                                \[\leadsto 1 \cdot \sqrt{\color{blue}{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}} \]
                                                              2. Taylor expanded in uy around 0

                                                                \[\leadsto \color{blue}{\left(1 + -2 \cdot \left({uy}^{2} \cdot {\mathsf{PI}\left(\right)}^{2}\right)\right)} \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux} \]
                                                              3. Step-by-step derivation
                                                                1. Applied rewrites81.9%

                                                                  \[\leadsto \color{blue}{\mathsf{fma}\left(-2 \cdot \left(uy \cdot uy\right), \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right), 1\right)} \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux} \]

                                                                if 0.0154999997 < (sqrt.f32 (-.f32 #s(literal 1 binary32) (*.f32 (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos)) (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos)))))

                                                                1. Initial program 90.2%

                                                                  \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                2. Add Preprocessing
                                                                3. Step-by-step derivation
                                                                  1. lift--.f32N/A

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}} \]
                                                                  2. lift-*.f32N/A

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \color{blue}{\left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}} \]
                                                                  3. fp-cancel-sub-sign-invN/A

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{1 + \left(\mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right)\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}} \]
                                                                  4. +-commutativeN/A

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\left(\mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right)\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right) + 1}} \]
                                                                  5. *-commutativeN/A

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right)\right)} + 1} \]
                                                                  6. lower-fma.f32N/A

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(\left(1 - ux\right) + ux \cdot maxCos, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)}} \]
                                                                  7. lift-+.f32N/A

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{\left(1 - ux\right) + ux \cdot maxCos}, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                                                  8. +-commutativeN/A

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{ux \cdot maxCos + \left(1 - ux\right)}, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                                                  9. lift-*.f32N/A

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{ux \cdot maxCos} + \left(1 - ux\right), \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                                                  10. *-commutativeN/A

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{maxCos \cdot ux} + \left(1 - ux\right), \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                                                  11. lower-fma.f32N/A

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(maxCos, ux, 1 - ux\right)}, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                                                  12. lower-neg.f3290.0

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), \color{blue}{-\left(\left(1 - ux\right) + ux \cdot maxCos\right)}, 1\right)} \]
                                                                  13. lift-+.f32N/A

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\color{blue}{\left(\left(1 - ux\right) + ux \cdot maxCos\right)}, 1\right)} \]
                                                                  14. +-commutativeN/A

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\color{blue}{\left(ux \cdot maxCos + \left(1 - ux\right)\right)}, 1\right)} \]
                                                                  15. lift-*.f32N/A

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\left(\color{blue}{ux \cdot maxCos} + \left(1 - ux\right)\right), 1\right)} \]
                                                                  16. *-commutativeN/A

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\left(\color{blue}{maxCos \cdot ux} + \left(1 - ux\right)\right), 1\right)} \]
                                                                  17. lower-fma.f3290.0

                                                                    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\color{blue}{\mathsf{fma}\left(maxCos, ux, 1 - ux\right)}, 1\right)} \]
                                                                4. Applied rewrites90.0%

                                                                  \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\mathsf{fma}\left(maxCos, ux, 1 - ux\right), 1\right)}} \]
                                                                5. Taylor expanded in uy around 0

                                                                  \[\leadsto \color{blue}{\left(1 + -2 \cdot \left({uy}^{2} \cdot {\mathsf{PI}\left(\right)}^{2}\right)\right)} \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\mathsf{fma}\left(maxCos, ux, 1 - ux\right), 1\right)} \]
                                                                6. Step-by-step derivation
                                                                  1. Applied rewrites82.4%

                                                                    \[\leadsto \color{blue}{\mathsf{fma}\left(-2 \cdot \left(uy \cdot uy\right), \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right), 1\right)} \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\mathsf{fma}\left(maxCos, ux, 1 - ux\right), 1\right)} \]
                                                                7. Recombined 2 regimes into one program.
                                                                8. Add Preprocessing

                                                                Alternative 13: 82.6% accurate, 1.5× speedup?

                                                                \[\begin{array}{l} \\ \begin{array}{l} t_0 := \sqrt{\mathsf{fma}\left(ux - \mathsf{fma}\left(maxCos, ux, 1\right), \mathsf{fma}\left(maxCos, ux, 1 - ux\right), 1\right)}\\ t_1 := \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right)\\ \mathbf{if}\;ux \leq 0.00011999999696854502:\\ \;\;\;\;\mathsf{fma}\left(-2 \cdot \left(uy \cdot uy\right), t\_1, 1\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(t\_0 \cdot \left(t\_1 \cdot \left(uy \cdot uy\right)\right), -2, t\_0\right)\\ \end{array} \end{array} \]
                                                                (FPCore (ux uy maxCos)
                                                                 :precision binary32
                                                                 (let* ((t_0
                                                                         (sqrt
                                                                          (fma (- ux (fma maxCos ux 1.0)) (fma maxCos ux (- 1.0 ux)) 1.0)))
                                                                        (t_1 (* (PI) (PI))))
                                                                   (if (<= ux 0.00011999999696854502)
                                                                     (* (fma (* -2.0 (* uy uy)) t_1 1.0) (sqrt (* (fma -2.0 maxCos 2.0) ux)))
                                                                     (fma (* t_0 (* t_1 (* uy uy))) -2.0 t_0))))
                                                                \begin{array}{l}
                                                                
                                                                \\
                                                                \begin{array}{l}
                                                                t_0 := \sqrt{\mathsf{fma}\left(ux - \mathsf{fma}\left(maxCos, ux, 1\right), \mathsf{fma}\left(maxCos, ux, 1 - ux\right), 1\right)}\\
                                                                t_1 := \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right)\\
                                                                \mathbf{if}\;ux \leq 0.00011999999696854502:\\
                                                                \;\;\;\;\mathsf{fma}\left(-2 \cdot \left(uy \cdot uy\right), t\_1, 1\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}\\
                                                                
                                                                \mathbf{else}:\\
                                                                \;\;\;\;\mathsf{fma}\left(t\_0 \cdot \left(t\_1 \cdot \left(uy \cdot uy\right)\right), -2, t\_0\right)\\
                                                                
                                                                
                                                                \end{array}
                                                                \end{array}
                                                                
                                                                Derivation
                                                                1. Split input into 2 regimes
                                                                2. if ux < 1.19999997e-4

                                                                  1. Initial program 37.8%

                                                                    \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                  2. Add Preprocessing
                                                                  3. Taylor expanded in uy around 0

                                                                    \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                  4. Step-by-step derivation
                                                                    1. Applied rewrites34.5%

                                                                      \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                    2. Taylor expanded in ux around 0

                                                                      \[\leadsto 1 \cdot \sqrt{\color{blue}{ux \cdot \left(2 - 2 \cdot maxCos\right)}} \]
                                                                    3. Step-by-step derivation
                                                                      1. Applied rewrites74.4%

                                                                        \[\leadsto 1 \cdot \sqrt{\color{blue}{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}} \]
                                                                      2. Taylor expanded in uy around 0

                                                                        \[\leadsto \color{blue}{\left(1 + -2 \cdot \left({uy}^{2} \cdot {\mathsf{PI}\left(\right)}^{2}\right)\right)} \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux} \]
                                                                      3. Step-by-step derivation
                                                                        1. Applied rewrites81.9%

                                                                          \[\leadsto \color{blue}{\mathsf{fma}\left(-2 \cdot \left(uy \cdot uy\right), \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right), 1\right)} \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux} \]

                                                                        if 1.19999997e-4 < ux

                                                                        1. Initial program 90.2%

                                                                          \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                        2. Add Preprocessing
                                                                        3. Step-by-step derivation
                                                                          1. lift--.f32N/A

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}} \]
                                                                          2. lift-*.f32N/A

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \color{blue}{\left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}} \]
                                                                          3. fp-cancel-sub-sign-invN/A

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{1 + \left(\mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right)\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}} \]
                                                                          4. +-commutativeN/A

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\left(\mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right)\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right) + 1}} \]
                                                                          5. *-commutativeN/A

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right)\right)} + 1} \]
                                                                          6. lower-fma.f32N/A

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(\left(1 - ux\right) + ux \cdot maxCos, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)}} \]
                                                                          7. lift-+.f32N/A

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{\left(1 - ux\right) + ux \cdot maxCos}, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                                                          8. +-commutativeN/A

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{ux \cdot maxCos + \left(1 - ux\right)}, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                                                          9. lift-*.f32N/A

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{ux \cdot maxCos} + \left(1 - ux\right), \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                                                          10. *-commutativeN/A

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{maxCos \cdot ux} + \left(1 - ux\right), \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                                                          11. lower-fma.f32N/A

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(maxCos, ux, 1 - ux\right)}, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                                                          12. lower-neg.f3290.0

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), \color{blue}{-\left(\left(1 - ux\right) + ux \cdot maxCos\right)}, 1\right)} \]
                                                                          13. lift-+.f32N/A

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\color{blue}{\left(\left(1 - ux\right) + ux \cdot maxCos\right)}, 1\right)} \]
                                                                          14. +-commutativeN/A

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\color{blue}{\left(ux \cdot maxCos + \left(1 - ux\right)\right)}, 1\right)} \]
                                                                          15. lift-*.f32N/A

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\left(\color{blue}{ux \cdot maxCos} + \left(1 - ux\right)\right), 1\right)} \]
                                                                          16. *-commutativeN/A

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\left(\color{blue}{maxCos \cdot ux} + \left(1 - ux\right)\right), 1\right)} \]
                                                                          17. lower-fma.f3290.0

                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\color{blue}{\mathsf{fma}\left(maxCos, ux, 1 - ux\right)}, 1\right)} \]
                                                                        4. Applied rewrites90.0%

                                                                          \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\mathsf{fma}\left(maxCos, ux, 1 - ux\right), 1\right)}} \]
                                                                        5. Taylor expanded in uy around 0

                                                                          \[\leadsto \color{blue}{\sqrt{1 + \left(ux - \left(1 + maxCos \cdot ux\right)\right) \cdot \left(\left(1 + maxCos \cdot ux\right) - ux\right)} + -2 \cdot \left(\left({uy}^{2} \cdot {\mathsf{PI}\left(\right)}^{2}\right) \cdot \sqrt{1 + \left(ux - \left(1 + maxCos \cdot ux\right)\right) \cdot \left(\left(1 + maxCos \cdot ux\right) - ux\right)}\right)} \]
                                                                        6. Step-by-step derivation
                                                                          1. Applied rewrites82.6%

                                                                            \[\leadsto \color{blue}{\mathsf{fma}\left(\sqrt{\mathsf{fma}\left(ux - \mathsf{fma}\left(maxCos, ux, 1\right), \mathsf{fma}\left(maxCos, ux, 1 - ux\right), 1\right)} \cdot \left(\left(\mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \left(uy \cdot uy\right)\right), -2, \sqrt{\mathsf{fma}\left(ux - \mathsf{fma}\left(maxCos, ux, 1\right), \mathsf{fma}\left(maxCos, ux, 1 - ux\right), 1\right)}\right)} \]
                                                                        7. Recombined 2 regimes into one program.
                                                                        8. Add Preprocessing

                                                                        Alternative 14: 75.8% accurate, 2.0× speedup?

                                                                        \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(1 - ux\right) + ux \cdot maxCos\\ \mathbf{if}\;t\_0 \cdot t\_0 \leq 0.9995999932289124:\\ \;\;\;\;1 \cdot \sqrt{1 - t\_0 \cdot \mathsf{fma}\left(maxCos - 1, ux, 1\right)}\\ \mathbf{else}:\\ \;\;\;\;1 \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}\\ \end{array} \end{array} \]
                                                                        (FPCore (ux uy maxCos)
                                                                         :precision binary32
                                                                         (let* ((t_0 (+ (- 1.0 ux) (* ux maxCos))))
                                                                           (if (<= (* t_0 t_0) 0.9995999932289124)
                                                                             (* 1.0 (sqrt (- 1.0 (* t_0 (fma (- maxCos 1.0) ux 1.0)))))
                                                                             (* 1.0 (sqrt (* (fma -2.0 maxCos 2.0) ux))))))
                                                                        float code(float ux, float uy, float maxCos) {
                                                                        	float t_0 = (1.0f - ux) + (ux * maxCos);
                                                                        	float tmp;
                                                                        	if ((t_0 * t_0) <= 0.9995999932289124f) {
                                                                        		tmp = 1.0f * sqrtf((1.0f - (t_0 * fmaf((maxCos - 1.0f), ux, 1.0f))));
                                                                        	} else {
                                                                        		tmp = 1.0f * sqrtf((fmaf(-2.0f, maxCos, 2.0f) * ux));
                                                                        	}
                                                                        	return tmp;
                                                                        }
                                                                        
                                                                        function code(ux, uy, maxCos)
                                                                        	t_0 = Float32(Float32(Float32(1.0) - ux) + Float32(ux * maxCos))
                                                                        	tmp = Float32(0.0)
                                                                        	if (Float32(t_0 * t_0) <= Float32(0.9995999932289124))
                                                                        		tmp = Float32(Float32(1.0) * sqrt(Float32(Float32(1.0) - Float32(t_0 * fma(Float32(maxCos - Float32(1.0)), ux, Float32(1.0))))));
                                                                        	else
                                                                        		tmp = Float32(Float32(1.0) * sqrt(Float32(fma(Float32(-2.0), maxCos, Float32(2.0)) * ux)));
                                                                        	end
                                                                        	return tmp
                                                                        end
                                                                        
                                                                        \begin{array}{l}
                                                                        
                                                                        \\
                                                                        \begin{array}{l}
                                                                        t_0 := \left(1 - ux\right) + ux \cdot maxCos\\
                                                                        \mathbf{if}\;t\_0 \cdot t\_0 \leq 0.9995999932289124:\\
                                                                        \;\;\;\;1 \cdot \sqrt{1 - t\_0 \cdot \mathsf{fma}\left(maxCos - 1, ux, 1\right)}\\
                                                                        
                                                                        \mathbf{else}:\\
                                                                        \;\;\;\;1 \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}\\
                                                                        
                                                                        
                                                                        \end{array}
                                                                        \end{array}
                                                                        
                                                                        Derivation
                                                                        1. Split input into 2 regimes
                                                                        2. if (*.f32 (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos)) (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos))) < 0.999599993

                                                                          1. Initial program 91.0%

                                                                            \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                          2. Add Preprocessing
                                                                          3. Taylor expanded in uy around 0

                                                                            \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                          4. Step-by-step derivation
                                                                            1. Applied rewrites73.9%

                                                                              \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                            2. Taylor expanded in ux around 0

                                                                              \[\leadsto 1 \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \color{blue}{\left(1 + ux \cdot \left(maxCos - 1\right)\right)}} \]
                                                                            3. Step-by-step derivation
                                                                              1. Applied rewrites74.1%

                                                                                \[\leadsto 1 \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \color{blue}{\mathsf{fma}\left(maxCos - 1, ux, 1\right)}} \]

                                                                              if 0.999599993 < (*.f32 (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos)) (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos)))

                                                                              1. Initial program 38.6%

                                                                                \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                              2. Add Preprocessing
                                                                              3. Taylor expanded in uy around 0

                                                                                \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                              4. Step-by-step derivation
                                                                                1. Applied rewrites34.9%

                                                                                  \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                2. Taylor expanded in ux around 0

                                                                                  \[\leadsto 1 \cdot \sqrt{\color{blue}{ux \cdot \left(2 - 2 \cdot maxCos\right)}} \]
                                                                                3. Step-by-step derivation
                                                                                  1. Applied rewrites73.9%

                                                                                    \[\leadsto 1 \cdot \sqrt{\color{blue}{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}} \]
                                                                                4. Recombined 2 regimes into one program.
                                                                                5. Add Preprocessing

                                                                                Alternative 15: 82.6% accurate, 2.1× speedup?

                                                                                \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(1 - ux\right) + ux \cdot maxCos\\ t_1 := \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right)\\ \mathbf{if}\;ux \leq 0.00016999999934341758:\\ \;\;\;\;\mathsf{fma}\left(-2 \cdot \left(uy \cdot uy\right), t\_1, 1\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\left(uy \cdot uy\right) \cdot -2, t\_1, 1\right) \cdot \sqrt{1 - t\_0 \cdot t\_0}\\ \end{array} \end{array} \]
                                                                                (FPCore (ux uy maxCos)
                                                                                 :precision binary32
                                                                                 (let* ((t_0 (+ (- 1.0 ux) (* ux maxCos))) (t_1 (* (PI) (PI))))
                                                                                   (if (<= ux 0.00016999999934341758)
                                                                                     (* (fma (* -2.0 (* uy uy)) t_1 1.0) (sqrt (* (fma -2.0 maxCos 2.0) ux)))
                                                                                     (* (fma (* (* uy uy) -2.0) t_1 1.0) (sqrt (- 1.0 (* t_0 t_0)))))))
                                                                                \begin{array}{l}
                                                                                
                                                                                \\
                                                                                \begin{array}{l}
                                                                                t_0 := \left(1 - ux\right) + ux \cdot maxCos\\
                                                                                t_1 := \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right)\\
                                                                                \mathbf{if}\;ux \leq 0.00016999999934341758:\\
                                                                                \;\;\;\;\mathsf{fma}\left(-2 \cdot \left(uy \cdot uy\right), t\_1, 1\right) \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}\\
                                                                                
                                                                                \mathbf{else}:\\
                                                                                \;\;\;\;\mathsf{fma}\left(\left(uy \cdot uy\right) \cdot -2, t\_1, 1\right) \cdot \sqrt{1 - t\_0 \cdot t\_0}\\
                                                                                
                                                                                
                                                                                \end{array}
                                                                                \end{array}
                                                                                
                                                                                Derivation
                                                                                1. Split input into 2 regimes
                                                                                2. if ux < 1.69999999e-4

                                                                                  1. Initial program 38.4%

                                                                                    \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                  2. Add Preprocessing
                                                                                  3. Taylor expanded in uy around 0

                                                                                    \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                  4. Step-by-step derivation
                                                                                    1. Applied rewrites34.9%

                                                                                      \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                    2. Taylor expanded in ux around 0

                                                                                      \[\leadsto 1 \cdot \sqrt{\color{blue}{ux \cdot \left(2 - 2 \cdot maxCos\right)}} \]
                                                                                    3. Step-by-step derivation
                                                                                      1. Applied rewrites74.1%

                                                                                        \[\leadsto 1 \cdot \sqrt{\color{blue}{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}} \]
                                                                                      2. Taylor expanded in uy around 0

                                                                                        \[\leadsto \color{blue}{\left(1 + -2 \cdot \left({uy}^{2} \cdot {\mathsf{PI}\left(\right)}^{2}\right)\right)} \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux} \]
                                                                                      3. Step-by-step derivation
                                                                                        1. Applied rewrites81.5%

                                                                                          \[\leadsto \color{blue}{\mathsf{fma}\left(-2 \cdot \left(uy \cdot uy\right), \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right), 1\right)} \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux} \]

                                                                                        if 1.69999999e-4 < ux

                                                                                        1. Initial program 90.8%

                                                                                          \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                        2. Add Preprocessing
                                                                                        3. Taylor expanded in uy around 0

                                                                                          \[\leadsto \color{blue}{\left(1 + -2 \cdot \left({uy}^{2} \cdot {\mathsf{PI}\left(\right)}^{2}\right)\right)} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                        4. Step-by-step derivation
                                                                                          1. Applied rewrites83.2%

                                                                                            \[\leadsto \color{blue}{\mathsf{fma}\left(\left(uy \cdot uy\right) \cdot -2, \mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right), 1\right)} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                        5. Recombined 2 regimes into one program.
                                                                                        6. Add Preprocessing

                                                                                        Alternative 16: 75.8% accurate, 2.3× speedup?

                                                                                        \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(1 - ux\right) + ux \cdot maxCos\\ \mathbf{if}\;t\_0 \cdot t\_0 \leq 0.9997599720954895:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(ux - \mathsf{fma}\left(maxCos, ux, 1\right), \mathsf{fma}\left(maxCos, ux, 1 - ux\right), 1\right)}\\ \mathbf{else}:\\ \;\;\;\;1 \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}\\ \end{array} \end{array} \]
                                                                                        (FPCore (ux uy maxCos)
                                                                                         :precision binary32
                                                                                         (let* ((t_0 (+ (- 1.0 ux) (* ux maxCos))))
                                                                                           (if (<= (* t_0 t_0) 0.9997599720954895)
                                                                                             (sqrt (fma (- ux (fma maxCos ux 1.0)) (fma maxCos ux (- 1.0 ux)) 1.0))
                                                                                             (* 1.0 (sqrt (* (fma -2.0 maxCos 2.0) ux))))))
                                                                                        float code(float ux, float uy, float maxCos) {
                                                                                        	float t_0 = (1.0f - ux) + (ux * maxCos);
                                                                                        	float tmp;
                                                                                        	if ((t_0 * t_0) <= 0.9997599720954895f) {
                                                                                        		tmp = sqrtf(fmaf((ux - fmaf(maxCos, ux, 1.0f)), fmaf(maxCos, ux, (1.0f - ux)), 1.0f));
                                                                                        	} else {
                                                                                        		tmp = 1.0f * sqrtf((fmaf(-2.0f, maxCos, 2.0f) * ux));
                                                                                        	}
                                                                                        	return tmp;
                                                                                        }
                                                                                        
                                                                                        function code(ux, uy, maxCos)
                                                                                        	t_0 = Float32(Float32(Float32(1.0) - ux) + Float32(ux * maxCos))
                                                                                        	tmp = Float32(0.0)
                                                                                        	if (Float32(t_0 * t_0) <= Float32(0.9997599720954895))
                                                                                        		tmp = sqrt(fma(Float32(ux - fma(maxCos, ux, Float32(1.0))), fma(maxCos, ux, Float32(Float32(1.0) - ux)), Float32(1.0)));
                                                                                        	else
                                                                                        		tmp = Float32(Float32(1.0) * sqrt(Float32(fma(Float32(-2.0), maxCos, Float32(2.0)) * ux)));
                                                                                        	end
                                                                                        	return tmp
                                                                                        end
                                                                                        
                                                                                        \begin{array}{l}
                                                                                        
                                                                                        \\
                                                                                        \begin{array}{l}
                                                                                        t_0 := \left(1 - ux\right) + ux \cdot maxCos\\
                                                                                        \mathbf{if}\;t\_0 \cdot t\_0 \leq 0.9997599720954895:\\
                                                                                        \;\;\;\;\sqrt{\mathsf{fma}\left(ux - \mathsf{fma}\left(maxCos, ux, 1\right), \mathsf{fma}\left(maxCos, ux, 1 - ux\right), 1\right)}\\
                                                                                        
                                                                                        \mathbf{else}:\\
                                                                                        \;\;\;\;1 \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}\\
                                                                                        
                                                                                        
                                                                                        \end{array}
                                                                                        \end{array}
                                                                                        
                                                                                        Derivation
                                                                                        1. Split input into 2 regimes
                                                                                        2. if (*.f32 (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos)) (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos))) < 0.999759972

                                                                                          1. Initial program 90.2%

                                                                                            \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                          2. Add Preprocessing
                                                                                          3. Step-by-step derivation
                                                                                            1. lift--.f32N/A

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}} \]
                                                                                            2. lift-*.f32N/A

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \color{blue}{\left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}} \]
                                                                                            3. fp-cancel-sub-sign-invN/A

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{1 + \left(\mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right)\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}} \]
                                                                                            4. +-commutativeN/A

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\left(\mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right)\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right) + 1}} \]
                                                                                            5. *-commutativeN/A

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right)\right)} + 1} \]
                                                                                            6. lower-fma.f32N/A

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(\left(1 - ux\right) + ux \cdot maxCos, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)}} \]
                                                                                            7. lift-+.f32N/A

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{\left(1 - ux\right) + ux \cdot maxCos}, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                                                                            8. +-commutativeN/A

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{ux \cdot maxCos + \left(1 - ux\right)}, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                                                                            9. lift-*.f32N/A

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{ux \cdot maxCos} + \left(1 - ux\right), \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                                                                            10. *-commutativeN/A

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{maxCos \cdot ux} + \left(1 - ux\right), \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                                                                            11. lower-fma.f32N/A

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(maxCos, ux, 1 - ux\right)}, \mathsf{neg}\left(\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right), 1\right)} \]
                                                                                            12. lower-neg.f3290.0

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), \color{blue}{-\left(\left(1 - ux\right) + ux \cdot maxCos\right)}, 1\right)} \]
                                                                                            13. lift-+.f32N/A

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\color{blue}{\left(\left(1 - ux\right) + ux \cdot maxCos\right)}, 1\right)} \]
                                                                                            14. +-commutativeN/A

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\color{blue}{\left(ux \cdot maxCos + \left(1 - ux\right)\right)}, 1\right)} \]
                                                                                            15. lift-*.f32N/A

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\left(\color{blue}{ux \cdot maxCos} + \left(1 - ux\right)\right), 1\right)} \]
                                                                                            16. *-commutativeN/A

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\left(\color{blue}{maxCos \cdot ux} + \left(1 - ux\right)\right), 1\right)} \]
                                                                                            17. lower-fma.f3290.0

                                                                                              \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\color{blue}{\mathsf{fma}\left(maxCos, ux, 1 - ux\right)}, 1\right)} \]
                                                                                          4. Applied rewrites90.0%

                                                                                            \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(maxCos, ux, 1 - ux\right), -\mathsf{fma}\left(maxCos, ux, 1 - ux\right), 1\right)}} \]
                                                                                          5. Taylor expanded in uy around 0

                                                                                            \[\leadsto \color{blue}{\sqrt{1 + \left(ux - \left(1 + maxCos \cdot ux\right)\right) \cdot \left(\left(1 + maxCos \cdot ux\right) - ux\right)}} \]
                                                                                          6. Step-by-step derivation
                                                                                            1. Applied rewrites73.2%

                                                                                              \[\leadsto \color{blue}{\sqrt{\mathsf{fma}\left(ux - \mathsf{fma}\left(maxCos, ux, 1\right), \mathsf{fma}\left(maxCos, ux, 1 - ux\right), 1\right)}} \]

                                                                                            if 0.999759972 < (*.f32 (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos)) (+.f32 (-.f32 #s(literal 1 binary32) ux) (*.f32 ux maxCos)))

                                                                                            1. Initial program 37.8%

                                                                                              \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                            2. Add Preprocessing
                                                                                            3. Taylor expanded in uy around 0

                                                                                              \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                            4. Step-by-step derivation
                                                                                              1. Applied rewrites34.5%

                                                                                                \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                              2. Taylor expanded in ux around 0

                                                                                                \[\leadsto 1 \cdot \sqrt{\color{blue}{ux \cdot \left(2 - 2 \cdot maxCos\right)}} \]
                                                                                              3. Step-by-step derivation
                                                                                                1. Applied rewrites74.4%

                                                                                                  \[\leadsto 1 \cdot \sqrt{\color{blue}{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}} \]
                                                                                              4. Recombined 2 regimes into one program.
                                                                                              5. Add Preprocessing

                                                                                              Alternative 17: 65.2% accurate, 5.8× speedup?

                                                                                              \[\begin{array}{l} \\ 1 \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux} \end{array} \]
                                                                                              (FPCore (ux uy maxCos)
                                                                                               :precision binary32
                                                                                               (* 1.0 (sqrt (* (fma -2.0 maxCos 2.0) ux))))
                                                                                              float code(float ux, float uy, float maxCos) {
                                                                                              	return 1.0f * sqrtf((fmaf(-2.0f, maxCos, 2.0f) * ux));
                                                                                              }
                                                                                              
                                                                                              function code(ux, uy, maxCos)
                                                                                              	return Float32(Float32(1.0) * sqrt(Float32(fma(Float32(-2.0), maxCos, Float32(2.0)) * ux)))
                                                                                              end
                                                                                              
                                                                                              \begin{array}{l}
                                                                                              
                                                                                              \\
                                                                                              1 \cdot \sqrt{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}
                                                                                              \end{array}
                                                                                              
                                                                                              Derivation
                                                                                              1. Initial program 58.7%

                                                                                                \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                              2. Add Preprocessing
                                                                                              3. Taylor expanded in uy around 0

                                                                                                \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                              4. Step-by-step derivation
                                                                                                1. Applied rewrites49.8%

                                                                                                  \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                                2. Taylor expanded in ux around 0

                                                                                                  \[\leadsto 1 \cdot \sqrt{\color{blue}{ux \cdot \left(2 - 2 \cdot maxCos\right)}} \]
                                                                                                3. Step-by-step derivation
                                                                                                  1. Applied rewrites63.1%

                                                                                                    \[\leadsto 1 \cdot \sqrt{\color{blue}{\mathsf{fma}\left(-2, maxCos, 2\right) \cdot ux}} \]
                                                                                                  2. Add Preprocessing

                                                                                                  Alternative 18: 6.6% accurate, 8.2× speedup?

                                                                                                  \[\begin{array}{l} \\ 1 \cdot \sqrt{1 - 1} \end{array} \]
                                                                                                  (FPCore (ux uy maxCos) :precision binary32 (* 1.0 (sqrt (- 1.0 1.0))))
                                                                                                  float code(float ux, float uy, float maxCos) {
                                                                                                  	return 1.0f * sqrtf((1.0f - 1.0f));
                                                                                                  }
                                                                                                  
                                                                                                  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(4) function code(ux, uy, maxcos)
                                                                                                  use fmin_fmax_functions
                                                                                                      real(4), intent (in) :: ux
                                                                                                      real(4), intent (in) :: uy
                                                                                                      real(4), intent (in) :: maxcos
                                                                                                      code = 1.0e0 * sqrt((1.0e0 - 1.0e0))
                                                                                                  end function
                                                                                                  
                                                                                                  function code(ux, uy, maxCos)
                                                                                                  	return Float32(Float32(1.0) * sqrt(Float32(Float32(1.0) - Float32(1.0))))
                                                                                                  end
                                                                                                  
                                                                                                  function tmp = code(ux, uy, maxCos)
                                                                                                  	tmp = single(1.0) * sqrt((single(1.0) - single(1.0)));
                                                                                                  end
                                                                                                  
                                                                                                  \begin{array}{l}
                                                                                                  
                                                                                                  \\
                                                                                                  1 \cdot \sqrt{1 - 1}
                                                                                                  \end{array}
                                                                                                  
                                                                                                  Derivation
                                                                                                  1. Initial program 58.7%

                                                                                                    \[\cos \left(\left(uy \cdot 2\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                                  2. Add Preprocessing
                                                                                                  3. Taylor expanded in uy around 0

                                                                                                    \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                                  4. Step-by-step derivation
                                                                                                    1. Applied rewrites49.8%

                                                                                                      \[\leadsto \color{blue}{1} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
                                                                                                    2. Taylor expanded in ux around 0

                                                                                                      \[\leadsto 1 \cdot \sqrt{1 - \color{blue}{1}} \]
                                                                                                    3. Step-by-step derivation
                                                                                                      1. Applied rewrites6.6%

                                                                                                        \[\leadsto 1 \cdot \sqrt{1 - \color{blue}{1}} \]
                                                                                                      2. Add Preprocessing

                                                                                                      Reproduce

                                                                                                      ?
                                                                                                      herbie shell --seed 2025019 
                                                                                                      (FPCore (ux uy maxCos)
                                                                                                        :name "UniformSampleCone, x"
                                                                                                        :precision binary32
                                                                                                        :pre (and (and (and (<= 2.328306437e-10 ux) (<= ux 1.0)) (and (<= 2.328306437e-10 uy) (<= uy 1.0))) (and (<= 0.0 maxCos) (<= maxCos 1.0)))
                                                                                                        (* (cos (* (* uy 2.0) (PI))) (sqrt (- 1.0 (* (+ (- 1.0 ux) (* ux maxCos)) (+ (- 1.0 ux) (* ux maxCos)))))))