2cos (problem 3.3.5)

Percentage Accurate: 52.5% → 99.4%
Time: 13.9s
Alternatives: 15
Speedup: 25.9×

Specification

?
\[\left(\left(-10000 \leq x \land x \leq 10000\right) \land 10^{-16} \cdot \left|x\right| < \varepsilon\right) \land \varepsilon < \left|x\right|\]
\[\begin{array}{l} \\ \cos \left(x + \varepsilon\right) - \cos x \end{array} \]
(FPCore (x eps) :precision binary64 (- (cos (+ x eps)) (cos x)))
double code(double x, double eps) {
	return cos((x + eps)) - cos(x);
}
module fmin_fmax_functions
    implicit none
    private
    public fmax
    public fmin

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

real(8) function code(x, eps)
use fmin_fmax_functions
    real(8), intent (in) :: x
    real(8), intent (in) :: eps
    code = cos((x + eps)) - cos(x)
end function
public static double code(double x, double eps) {
	return Math.cos((x + eps)) - Math.cos(x);
}
def code(x, eps):
	return math.cos((x + eps)) - math.cos(x)
function code(x, eps)
	return Float64(cos(Float64(x + eps)) - cos(x))
end
function tmp = code(x, eps)
	tmp = cos((x + eps)) - cos(x);
end
code[x_, eps_] := N[(N[Cos[N[(x + eps), $MachinePrecision]], $MachinePrecision] - N[Cos[x], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\cos \left(x + \varepsilon\right) - \cos x
\end{array}

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

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

\[\begin{array}{l} \\ \cos \left(x + \varepsilon\right) - \cos x \end{array} \]
(FPCore (x eps) :precision binary64 (- (cos (+ x eps)) (cos x)))
double code(double x, double eps) {
	return cos((x + eps)) - cos(x);
}
module fmin_fmax_functions
    implicit none
    private
    public fmax
    public fmin

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

real(8) function code(x, eps)
use fmin_fmax_functions
    real(8), intent (in) :: x
    real(8), intent (in) :: eps
    code = cos((x + eps)) - cos(x)
end function
public static double code(double x, double eps) {
	return Math.cos((x + eps)) - Math.cos(x);
}
def code(x, eps):
	return math.cos((x + eps)) - math.cos(x)
function code(x, eps)
	return Float64(cos(Float64(x + eps)) - cos(x))
end
function tmp = code(x, eps)
	tmp = cos((x + eps)) - cos(x);
end
code[x_, eps_] := N[(N[Cos[N[(x + eps), $MachinePrecision]], $MachinePrecision] - N[Cos[x], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\cos \left(x + \varepsilon\right) - \cos x
\end{array}

Alternative 1: 99.4% accurate, 0.6× speedup?

\[\begin{array}{l} \\ \left(\mathsf{fma}\left(\sin x \cdot \varepsilon, 0.16666666666666666, -0.5 \cdot \cos x\right) \cdot \varepsilon - \sin x\right) \cdot \varepsilon \end{array} \]
(FPCore (x eps)
 :precision binary64
 (*
  (-
   (* (fma (* (sin x) eps) 0.16666666666666666 (* -0.5 (cos x))) eps)
   (sin x))
  eps))
double code(double x, double eps) {
	return ((fma((sin(x) * eps), 0.16666666666666666, (-0.5 * cos(x))) * eps) - sin(x)) * eps;
}
function code(x, eps)
	return Float64(Float64(Float64(fma(Float64(sin(x) * eps), 0.16666666666666666, Float64(-0.5 * cos(x))) * eps) - sin(x)) * eps)
end
code[x_, eps_] := N[(N[(N[(N[(N[(N[Sin[x], $MachinePrecision] * eps), $MachinePrecision] * 0.16666666666666666 + N[(-0.5 * N[Cos[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * eps), $MachinePrecision] - N[Sin[x], $MachinePrecision]), $MachinePrecision] * eps), $MachinePrecision]
\begin{array}{l}

\\
\left(\mathsf{fma}\left(\sin x \cdot \varepsilon, 0.16666666666666666, -0.5 \cdot \cos x\right) \cdot \varepsilon - \sin x\right) \cdot \varepsilon
\end{array}
Derivation
  1. Initial program 53.9%

    \[\cos \left(x + \varepsilon\right) - \cos x \]
  2. Add Preprocessing
  3. Taylor expanded in eps around 0

    \[\leadsto \color{blue}{\varepsilon \cdot \left(\varepsilon \cdot \left(\frac{-1}{2} \cdot \cos x + \frac{1}{6} \cdot \left(\varepsilon \cdot \sin x\right)\right) - \sin x\right)} \]
  4. Step-by-step derivation
    1. Applied rewrites99.8%

      \[\leadsto \color{blue}{\left(\mathsf{fma}\left(\sin x \cdot \varepsilon, 0.16666666666666666, -0.5 \cdot \cos x\right) \cdot \varepsilon - \sin x\right) \cdot \varepsilon} \]
    2. Add Preprocessing

    Alternative 2: 99.3% accurate, 0.9× speedup?

    \[\begin{array}{l} \\ \mathsf{fma}\left(\cos x \cdot \varepsilon, 0.5, \sin x\right) \cdot \left(-\varepsilon\right) \end{array} \]
    (FPCore (x eps)
     :precision binary64
     (* (fma (* (cos x) eps) 0.5 (sin x)) (- eps)))
    double code(double x, double eps) {
    	return fma((cos(x) * eps), 0.5, sin(x)) * -eps;
    }
    
    function code(x, eps)
    	return Float64(fma(Float64(cos(x) * eps), 0.5, sin(x)) * Float64(-eps))
    end
    
    code[x_, eps_] := N[(N[(N[(N[Cos[x], $MachinePrecision] * eps), $MachinePrecision] * 0.5 + N[Sin[x], $MachinePrecision]), $MachinePrecision] * (-eps)), $MachinePrecision]
    
    \begin{array}{l}
    
    \\
    \mathsf{fma}\left(\cos x \cdot \varepsilon, 0.5, \sin x\right) \cdot \left(-\varepsilon\right)
    \end{array}
    
    Derivation
    1. Initial program 53.9%

      \[\cos \left(x + \varepsilon\right) - \cos x \]
    2. Add Preprocessing
    3. Taylor expanded in eps around 0

      \[\leadsto \color{blue}{\varepsilon \cdot \left(\frac{-1}{2} \cdot \left(\varepsilon \cdot \cos x\right) - \sin x\right)} \]
    4. Step-by-step derivation
      1. Applied rewrites99.8%

        \[\leadsto \color{blue}{\mathsf{fma}\left(\cos x \cdot \varepsilon, 0.5, \sin x\right) \cdot \left(-\varepsilon\right)} \]
      2. Add Preprocessing

      Alternative 3: 98.7% accurate, 1.4× speedup?

      \[\begin{array}{l} \\ \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(x \cdot x, -0.001388888888888889, 0.041666666666666664\right), x \cdot x, -0.5\right) \cdot \varepsilon, x \cdot x, \varepsilon\right), 0.5, \sin x\right) \cdot \left(-\varepsilon\right) \end{array} \]
      (FPCore (x eps)
       :precision binary64
       (*
        (fma
         (fma
          (*
           (fma
            (fma (* x x) -0.001388888888888889 0.041666666666666664)
            (* x x)
            -0.5)
           eps)
          (* x x)
          eps)
         0.5
         (sin x))
        (- eps)))
      double code(double x, double eps) {
      	return fma(fma((fma(fma((x * x), -0.001388888888888889, 0.041666666666666664), (x * x), -0.5) * eps), (x * x), eps), 0.5, sin(x)) * -eps;
      }
      
      function code(x, eps)
      	return Float64(fma(fma(Float64(fma(fma(Float64(x * x), -0.001388888888888889, 0.041666666666666664), Float64(x * x), -0.5) * eps), Float64(x * x), eps), 0.5, sin(x)) * Float64(-eps))
      end
      
      code[x_, eps_] := N[(N[(N[(N[(N[(N[(N[(x * x), $MachinePrecision] * -0.001388888888888889 + 0.041666666666666664), $MachinePrecision] * N[(x * x), $MachinePrecision] + -0.5), $MachinePrecision] * eps), $MachinePrecision] * N[(x * x), $MachinePrecision] + eps), $MachinePrecision] * 0.5 + N[Sin[x], $MachinePrecision]), $MachinePrecision] * (-eps)), $MachinePrecision]
      
      \begin{array}{l}
      
      \\
      \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(x \cdot x, -0.001388888888888889, 0.041666666666666664\right), x \cdot x, -0.5\right) \cdot \varepsilon, x \cdot x, \varepsilon\right), 0.5, \sin x\right) \cdot \left(-\varepsilon\right)
      \end{array}
      
      Derivation
      1. Initial program 53.9%

        \[\cos \left(x + \varepsilon\right) - \cos x \]
      2. Add Preprocessing
      3. Taylor expanded in eps around 0

        \[\leadsto \color{blue}{\varepsilon \cdot \left(\frac{-1}{2} \cdot \left(\varepsilon \cdot \cos x\right) - \sin x\right)} \]
      4. Step-by-step derivation
        1. Applied rewrites99.8%

          \[\leadsto \color{blue}{\mathsf{fma}\left(\cos x \cdot \varepsilon, 0.5, \sin x\right) \cdot \left(-\varepsilon\right)} \]
        2. Taylor expanded in x around 0

          \[\leadsto \mathsf{fma}\left(\varepsilon + {x}^{2} \cdot \left(\frac{-1}{2} \cdot \varepsilon + {x}^{2} \cdot \left(\frac{-1}{720} \cdot \left(\varepsilon \cdot {x}^{2}\right) + \frac{1}{24} \cdot \varepsilon\right)\right), \frac{1}{2}, \sin x\right) \cdot \left(-\varepsilon\right) \]
        3. Step-by-step derivation
          1. Applied rewrites99.8%

            \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.001388888888888889, \left(x \cdot x\right) \cdot \varepsilon, 0.041666666666666664 \cdot \varepsilon\right) \cdot x, x, -0.5 \cdot \varepsilon\right), x \cdot x, \varepsilon\right), 0.5, \sin x\right) \cdot \left(-\varepsilon\right) \]
          2. Taylor expanded in eps around 0

            \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\varepsilon \cdot \left({x}^{2} \cdot \left(\frac{1}{24} + \frac{-1}{720} \cdot {x}^{2}\right) - \frac{1}{2}\right), x \cdot x, \varepsilon\right), \frac{1}{2}, \sin x\right) \cdot \left(-\varepsilon\right) \]
          3. Step-by-step derivation
            1. Applied rewrites99.8%

              \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(x \cdot x, -0.001388888888888889, 0.041666666666666664\right), x \cdot x, -0.5\right) \cdot \varepsilon, x \cdot x, \varepsilon\right), 0.5, \sin x\right) \cdot \left(-\varepsilon\right) \]
            2. Add Preprocessing

            Alternative 4: 98.7% accurate, 1.4× speedup?

            \[\begin{array}{l} \\ \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.041666666666666664, \left(x \cdot x\right) \cdot \varepsilon, -0.5 \cdot \varepsilon\right), x \cdot x, \varepsilon\right), 0.5, \sin x\right) \cdot \left(-\varepsilon\right) \end{array} \]
            (FPCore (x eps)
             :precision binary64
             (*
              (fma
               (fma (fma 0.041666666666666664 (* (* x x) eps) (* -0.5 eps)) (* x x) eps)
               0.5
               (sin x))
              (- eps)))
            double code(double x, double eps) {
            	return fma(fma(fma(0.041666666666666664, ((x * x) * eps), (-0.5 * eps)), (x * x), eps), 0.5, sin(x)) * -eps;
            }
            
            function code(x, eps)
            	return Float64(fma(fma(fma(0.041666666666666664, Float64(Float64(x * x) * eps), Float64(-0.5 * eps)), Float64(x * x), eps), 0.5, sin(x)) * Float64(-eps))
            end
            
            code[x_, eps_] := N[(N[(N[(N[(0.041666666666666664 * N[(N[(x * x), $MachinePrecision] * eps), $MachinePrecision] + N[(-0.5 * eps), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision] + eps), $MachinePrecision] * 0.5 + N[Sin[x], $MachinePrecision]), $MachinePrecision] * (-eps)), $MachinePrecision]
            
            \begin{array}{l}
            
            \\
            \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.041666666666666664, \left(x \cdot x\right) \cdot \varepsilon, -0.5 \cdot \varepsilon\right), x \cdot x, \varepsilon\right), 0.5, \sin x\right) \cdot \left(-\varepsilon\right)
            \end{array}
            
            Derivation
            1. Initial program 53.9%

              \[\cos \left(x + \varepsilon\right) - \cos x \]
            2. Add Preprocessing
            3. Taylor expanded in eps around 0

              \[\leadsto \color{blue}{\varepsilon \cdot \left(\frac{-1}{2} \cdot \left(\varepsilon \cdot \cos x\right) - \sin x\right)} \]
            4. Step-by-step derivation
              1. Applied rewrites99.8%

                \[\leadsto \color{blue}{\mathsf{fma}\left(\cos x \cdot \varepsilon, 0.5, \sin x\right) \cdot \left(-\varepsilon\right)} \]
              2. Taylor expanded in x around 0

                \[\leadsto \mathsf{fma}\left(\varepsilon + {x}^{2} \cdot \left(\frac{-1}{2} \cdot \varepsilon + \frac{1}{24} \cdot \left(\varepsilon \cdot {x}^{2}\right)\right), \frac{1}{2}, \sin x\right) \cdot \left(-\varepsilon\right) \]
              3. Step-by-step derivation
                1. Applied rewrites99.8%

                  \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.041666666666666664, \left(x \cdot x\right) \cdot \varepsilon, -0.5 \cdot \varepsilon\right), x \cdot x, \varepsilon\right), 0.5, \sin x\right) \cdot \left(-\varepsilon\right) \]
                2. Add Preprocessing

                Alternative 5: 98.8% accurate, 1.5× speedup?

                \[\begin{array}{l} \\ \left(\mathsf{fma}\left(\mathsf{fma}\left(0.25, x, 0.16666666666666666 \cdot \varepsilon\right) \cdot \varepsilon, x, -0.5 \cdot \varepsilon\right) - \sin x\right) \cdot \varepsilon \end{array} \]
                (FPCore (x eps)
                 :precision binary64
                 (*
                  (-
                   (fma (* (fma 0.25 x (* 0.16666666666666666 eps)) eps) x (* -0.5 eps))
                   (sin x))
                  eps))
                double code(double x, double eps) {
                	return (fma((fma(0.25, x, (0.16666666666666666 * eps)) * eps), x, (-0.5 * eps)) - sin(x)) * eps;
                }
                
                function code(x, eps)
                	return Float64(Float64(fma(Float64(fma(0.25, x, Float64(0.16666666666666666 * eps)) * eps), x, Float64(-0.5 * eps)) - sin(x)) * eps)
                end
                
                code[x_, eps_] := N[(N[(N[(N[(N[(0.25 * x + N[(0.16666666666666666 * eps), $MachinePrecision]), $MachinePrecision] * eps), $MachinePrecision] * x + N[(-0.5 * eps), $MachinePrecision]), $MachinePrecision] - N[Sin[x], $MachinePrecision]), $MachinePrecision] * eps), $MachinePrecision]
                
                \begin{array}{l}
                
                \\
                \left(\mathsf{fma}\left(\mathsf{fma}\left(0.25, x, 0.16666666666666666 \cdot \varepsilon\right) \cdot \varepsilon, x, -0.5 \cdot \varepsilon\right) - \sin x\right) \cdot \varepsilon
                \end{array}
                
                Derivation
                1. Initial program 53.9%

                  \[\cos \left(x + \varepsilon\right) - \cos x \]
                2. Add Preprocessing
                3. Taylor expanded in eps around 0

                  \[\leadsto \color{blue}{\varepsilon \cdot \left(\varepsilon \cdot \left(\frac{-1}{2} \cdot \cos x + \frac{1}{6} \cdot \left(\varepsilon \cdot \sin x\right)\right) - \sin x\right)} \]
                4. Step-by-step derivation
                  1. Applied rewrites99.8%

                    \[\leadsto \color{blue}{\left(\mathsf{fma}\left(\sin x \cdot \varepsilon, 0.16666666666666666, -0.5 \cdot \cos x\right) \cdot \varepsilon - \sin x\right) \cdot \varepsilon} \]
                  2. Taylor expanded in x around 0

                    \[\leadsto \left(\frac{-1}{2} \cdot \varepsilon - \sin x\right) \cdot \varepsilon \]
                  3. Step-by-step derivation
                    1. Applied rewrites99.6%

                      \[\leadsto \left(-0.5 \cdot \varepsilon - \sin x\right) \cdot \varepsilon \]
                    2. Taylor expanded in x around 0

                      \[\leadsto \left(\left(\frac{-1}{2} \cdot \varepsilon + x \cdot \left(\frac{1}{6} \cdot {\varepsilon}^{2} + \frac{1}{4} \cdot \left(\varepsilon \cdot x\right)\right)\right) - \sin x\right) \cdot \varepsilon \]
                    3. Step-by-step derivation
                      1. Applied rewrites99.8%

                        \[\leadsto \left(\mathsf{fma}\left(\mathsf{fma}\left(0.25, x, 0.16666666666666666 \cdot \varepsilon\right) \cdot \varepsilon, x, -0.5 \cdot \varepsilon\right) - \sin x\right) \cdot \varepsilon \]
                      2. Add Preprocessing

                      Alternative 6: 98.8% accurate, 1.7× speedup?

                      \[\begin{array}{l} \\ \left(\mathsf{fma}\left(0.25 \cdot x, x, -0.5\right) \cdot \varepsilon - \sin x\right) \cdot \varepsilon \end{array} \]
                      (FPCore (x eps)
                       :precision binary64
                       (* (- (* (fma (* 0.25 x) x -0.5) eps) (sin x)) eps))
                      double code(double x, double eps) {
                      	return ((fma((0.25 * x), x, -0.5) * eps) - sin(x)) * eps;
                      }
                      
                      function code(x, eps)
                      	return Float64(Float64(Float64(fma(Float64(0.25 * x), x, -0.5) * eps) - sin(x)) * eps)
                      end
                      
                      code[x_, eps_] := N[(N[(N[(N[(N[(0.25 * x), $MachinePrecision] * x + -0.5), $MachinePrecision] * eps), $MachinePrecision] - N[Sin[x], $MachinePrecision]), $MachinePrecision] * eps), $MachinePrecision]
                      
                      \begin{array}{l}
                      
                      \\
                      \left(\mathsf{fma}\left(0.25 \cdot x, x, -0.5\right) \cdot \varepsilon - \sin x\right) \cdot \varepsilon
                      \end{array}
                      
                      Derivation
                      1. Initial program 53.9%

                        \[\cos \left(x + \varepsilon\right) - \cos x \]
                      2. Add Preprocessing
                      3. Taylor expanded in eps around 0

                        \[\leadsto \color{blue}{\varepsilon \cdot \left(\varepsilon \cdot \left(\frac{-1}{2} \cdot \cos x + \frac{1}{6} \cdot \left(\varepsilon \cdot \sin x\right)\right) - \sin x\right)} \]
                      4. Step-by-step derivation
                        1. Applied rewrites99.8%

                          \[\leadsto \color{blue}{\left(\mathsf{fma}\left(\sin x \cdot \varepsilon, 0.16666666666666666, -0.5 \cdot \cos x\right) \cdot \varepsilon - \sin x\right) \cdot \varepsilon} \]
                        2. Taylor expanded in x around 0

                          \[\leadsto \left(\frac{-1}{2} \cdot \varepsilon - \sin x\right) \cdot \varepsilon \]
                        3. Step-by-step derivation
                          1. Applied rewrites99.6%

                            \[\leadsto \left(-0.5 \cdot \varepsilon - \sin x\right) \cdot \varepsilon \]
                          2. Taylor expanded in x around 0

                            \[\leadsto \left(\left(\frac{-1}{2} \cdot \varepsilon + x \cdot \left(\frac{1}{6} \cdot {\varepsilon}^{2} + \frac{1}{4} \cdot \left(\varepsilon \cdot x\right)\right)\right) - \sin x\right) \cdot \varepsilon \]
                          3. Step-by-step derivation
                            1. Applied rewrites99.8%

                              \[\leadsto \left(\mathsf{fma}\left(\mathsf{fma}\left(0.25, x, 0.16666666666666666 \cdot \varepsilon\right) \cdot \varepsilon, x, -0.5 \cdot \varepsilon\right) - \sin x\right) \cdot \varepsilon \]
                            2. Taylor expanded in eps around 0

                              \[\leadsto \left(\varepsilon \cdot \left(\frac{1}{4} \cdot {x}^{2} - \frac{1}{2}\right) - \sin x\right) \cdot \varepsilon \]
                            3. Step-by-step derivation
                              1. Applied rewrites99.8%

                                \[\leadsto \left(\mathsf{fma}\left(0.25 \cdot x, x, -0.5\right) \cdot \varepsilon - \sin x\right) \cdot \varepsilon \]
                              2. Add Preprocessing

                              Alternative 7: 98.9% accurate, 1.8× speedup?

                              \[\begin{array}{l} \\ \left(-0.5 \cdot \varepsilon - \sin x\right) \cdot \varepsilon \end{array} \]
                              (FPCore (x eps) :precision binary64 (* (- (* -0.5 eps) (sin x)) eps))
                              double code(double x, double eps) {
                              	return ((-0.5 * eps) - sin(x)) * eps;
                              }
                              
                              module fmin_fmax_functions
                                  implicit none
                                  private
                                  public fmax
                                  public fmin
                              
                                  interface fmax
                                      module procedure fmax88
                                      module procedure fmax44
                                      module procedure fmax84
                                      module procedure fmax48
                                  end interface
                                  interface fmin
                                      module procedure fmin88
                                      module procedure fmin44
                                      module procedure fmin84
                                      module procedure fmin48
                                  end interface
                              contains
                                  real(8) function fmax88(x, y) result (res)
                                      real(8), intent (in) :: x
                                      real(8), intent (in) :: y
                                      res = merge(y, merge(x, max(x, y), y /= y), x /= x)
                                  end function
                                  real(4) function fmax44(x, y) result (res)
                                      real(4), intent (in) :: x
                                      real(4), intent (in) :: y
                                      res = merge(y, merge(x, max(x, y), y /= y), x /= x)
                                  end function
                                  real(8) function fmax84(x, y) result(res)
                                      real(8), intent (in) :: x
                                      real(4), intent (in) :: y
                                      res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
                                  end function
                                  real(8) function fmax48(x, y) result(res)
                                      real(4), intent (in) :: x
                                      real(8), intent (in) :: y
                                      res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
                                  end function
                                  real(8) function fmin88(x, y) result (res)
                                      real(8), intent (in) :: x
                                      real(8), intent (in) :: y
                                      res = merge(y, merge(x, min(x, y), y /= y), x /= x)
                                  end function
                                  real(4) function fmin44(x, y) result (res)
                                      real(4), intent (in) :: x
                                      real(4), intent (in) :: y
                                      res = merge(y, merge(x, min(x, y), y /= y), x /= x)
                                  end function
                                  real(8) function fmin84(x, y) result(res)
                                      real(8), intent (in) :: x
                                      real(4), intent (in) :: y
                                      res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
                                  end function
                                  real(8) function fmin48(x, y) result(res)
                                      real(4), intent (in) :: x
                                      real(8), intent (in) :: y
                                      res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
                                  end function
                              end module
                              
                              real(8) function code(x, eps)
                              use fmin_fmax_functions
                                  real(8), intent (in) :: x
                                  real(8), intent (in) :: eps
                                  code = (((-0.5d0) * eps) - sin(x)) * eps
                              end function
                              
                              public static double code(double x, double eps) {
                              	return ((-0.5 * eps) - Math.sin(x)) * eps;
                              }
                              
                              def code(x, eps):
                              	return ((-0.5 * eps) - math.sin(x)) * eps
                              
                              function code(x, eps)
                              	return Float64(Float64(Float64(-0.5 * eps) - sin(x)) * eps)
                              end
                              
                              function tmp = code(x, eps)
                              	tmp = ((-0.5 * eps) - sin(x)) * eps;
                              end
                              
                              code[x_, eps_] := N[(N[(N[(-0.5 * eps), $MachinePrecision] - N[Sin[x], $MachinePrecision]), $MachinePrecision] * eps), $MachinePrecision]
                              
                              \begin{array}{l}
                              
                              \\
                              \left(-0.5 \cdot \varepsilon - \sin x\right) \cdot \varepsilon
                              \end{array}
                              
                              Derivation
                              1. Initial program 53.9%

                                \[\cos \left(x + \varepsilon\right) - \cos x \]
                              2. Add Preprocessing
                              3. Taylor expanded in eps around 0

                                \[\leadsto \color{blue}{\varepsilon \cdot \left(\varepsilon \cdot \left(\frac{-1}{2} \cdot \cos x + \frac{1}{6} \cdot \left(\varepsilon \cdot \sin x\right)\right) - \sin x\right)} \]
                              4. Step-by-step derivation
                                1. Applied rewrites99.8%

                                  \[\leadsto \color{blue}{\left(\mathsf{fma}\left(\sin x \cdot \varepsilon, 0.16666666666666666, -0.5 \cdot \cos x\right) \cdot \varepsilon - \sin x\right) \cdot \varepsilon} \]
                                2. Taylor expanded in x around 0

                                  \[\leadsto \left(\frac{-1}{2} \cdot \varepsilon - \sin x\right) \cdot \varepsilon \]
                                3. Step-by-step derivation
                                  1. Applied rewrites99.6%

                                    \[\leadsto \left(-0.5 \cdot \varepsilon - \sin x\right) \cdot \varepsilon \]
                                  2. Add Preprocessing

                                  Alternative 8: 98.4% accurate, 4.5× speedup?

                                  \[\begin{array}{l} \\ \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.25, \varepsilon \cdot \varepsilon, \left(\varepsilon \cdot x\right) \cdot 0.16666666666666666\right), x, -\varepsilon\right), x, \left(\varepsilon \cdot \varepsilon\right) \cdot -0.5\right) \end{array} \]
                                  (FPCore (x eps)
                                   :precision binary64
                                   (fma
                                    (fma (fma 0.25 (* eps eps) (* (* eps x) 0.16666666666666666)) x (- eps))
                                    x
                                    (* (* eps eps) -0.5)))
                                  double code(double x, double eps) {
                                  	return fma(fma(fma(0.25, (eps * eps), ((eps * x) * 0.16666666666666666)), x, -eps), x, ((eps * eps) * -0.5));
                                  }
                                  
                                  function code(x, eps)
                                  	return fma(fma(fma(0.25, Float64(eps * eps), Float64(Float64(eps * x) * 0.16666666666666666)), x, Float64(-eps)), x, Float64(Float64(eps * eps) * -0.5))
                                  end
                                  
                                  code[x_, eps_] := N[(N[(N[(0.25 * N[(eps * eps), $MachinePrecision] + N[(N[(eps * x), $MachinePrecision] * 0.16666666666666666), $MachinePrecision]), $MachinePrecision] * x + (-eps)), $MachinePrecision] * x + N[(N[(eps * eps), $MachinePrecision] * -0.5), $MachinePrecision]), $MachinePrecision]
                                  
                                  \begin{array}{l}
                                  
                                  \\
                                  \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.25, \varepsilon \cdot \varepsilon, \left(\varepsilon \cdot x\right) \cdot 0.16666666666666666\right), x, -\varepsilon\right), x, \left(\varepsilon \cdot \varepsilon\right) \cdot -0.5\right)
                                  \end{array}
                                  
                                  Derivation
                                  1. Initial program 53.9%

                                    \[\cos \left(x + \varepsilon\right) - \cos x \]
                                  2. Add Preprocessing
                                  3. Taylor expanded in eps around 0

                                    \[\leadsto \color{blue}{\varepsilon \cdot \left(\frac{-1}{2} \cdot \left(\varepsilon \cdot \cos x\right) - \sin x\right)} \]
                                  4. Step-by-step derivation
                                    1. Applied rewrites99.8%

                                      \[\leadsto \color{blue}{\mathsf{fma}\left(\cos x \cdot \varepsilon, 0.5, \sin x\right) \cdot \left(-\varepsilon\right)} \]
                                    2. Taylor expanded in x around 0

                                      \[\leadsto \frac{-1}{2} \cdot {\varepsilon}^{2} + \color{blue}{x \cdot \left(-1 \cdot \varepsilon + x \cdot \left(\frac{1}{6} \cdot \left(\varepsilon \cdot x\right) + \frac{1}{4} \cdot {\varepsilon}^{2}\right)\right)} \]
                                    3. Step-by-step derivation
                                      1. Applied rewrites99.2%

                                        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(0.25, \varepsilon \cdot \varepsilon, \left(\varepsilon \cdot x\right) \cdot 0.16666666666666666\right), x, -\varepsilon\right), \color{blue}{x}, \left(\varepsilon \cdot \varepsilon\right) \cdot -0.5\right) \]
                                      2. Add Preprocessing

                                      Alternative 9: 98.2% accurate, 5.8× speedup?

                                      \[\begin{array}{l} \\ \mathsf{fma}\left(\varepsilon, 0.5, \mathsf{fma}\left(\mathsf{fma}\left(-0.16666666666666666, x, -0.25 \cdot \varepsilon\right), x, 1\right) \cdot x\right) \cdot \left(-\varepsilon\right) \end{array} \]
                                      (FPCore (x eps)
                                       :precision binary64
                                       (*
                                        (fma eps 0.5 (* (fma (fma -0.16666666666666666 x (* -0.25 eps)) x 1.0) x))
                                        (- eps)))
                                      double code(double x, double eps) {
                                      	return fma(eps, 0.5, (fma(fma(-0.16666666666666666, x, (-0.25 * eps)), x, 1.0) * x)) * -eps;
                                      }
                                      
                                      function code(x, eps)
                                      	return Float64(fma(eps, 0.5, Float64(fma(fma(-0.16666666666666666, x, Float64(-0.25 * eps)), x, 1.0) * x)) * Float64(-eps))
                                      end
                                      
                                      code[x_, eps_] := N[(N[(eps * 0.5 + N[(N[(N[(-0.16666666666666666 * x + N[(-0.25 * eps), $MachinePrecision]), $MachinePrecision] * x + 1.0), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision] * (-eps)), $MachinePrecision]
                                      
                                      \begin{array}{l}
                                      
                                      \\
                                      \mathsf{fma}\left(\varepsilon, 0.5, \mathsf{fma}\left(\mathsf{fma}\left(-0.16666666666666666, x, -0.25 \cdot \varepsilon\right), x, 1\right) \cdot x\right) \cdot \left(-\varepsilon\right)
                                      \end{array}
                                      
                                      Derivation
                                      1. Initial program 53.9%

                                        \[\cos \left(x + \varepsilon\right) - \cos x \]
                                      2. Add Preprocessing
                                      3. Taylor expanded in eps around 0

                                        \[\leadsto \color{blue}{\varepsilon \cdot \left(\frac{-1}{2} \cdot \left(\varepsilon \cdot \cos x\right) - \sin x\right)} \]
                                      4. Step-by-step derivation
                                        1. Applied rewrites99.8%

                                          \[\leadsto \color{blue}{\mathsf{fma}\left(\cos x \cdot \varepsilon, 0.5, \sin x\right) \cdot \left(-\varepsilon\right)} \]
                                        2. Taylor expanded in x around 0

                                          \[\leadsto \left(\frac{1}{2} \cdot \varepsilon + x \cdot \left(1 + x \cdot \left(\frac{-1}{4} \cdot \varepsilon + \frac{-1}{6} \cdot x\right)\right)\right) \cdot \left(-\color{blue}{\varepsilon}\right) \]
                                        3. Step-by-step derivation
                                          1. Applied rewrites99.1%

                                            \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.16666666666666666, x, -0.25 \cdot \varepsilon\right), x, 1\right), x, 0.5 \cdot \varepsilon\right) \cdot \left(-\color{blue}{\varepsilon}\right) \]
                                          2. Step-by-step derivation
                                            1. Applied rewrites99.1%

                                              \[\leadsto \mathsf{fma}\left(\varepsilon, 0.5, \mathsf{fma}\left(\mathsf{fma}\left(-0.16666666666666666, x, -0.25 \cdot \varepsilon\right), x, 1\right) \cdot x\right) \cdot \left(-\varepsilon\right) \]
                                            2. Add Preprocessing

                                            Alternative 10: 98.2% accurate, 5.8× speedup?

                                            \[\begin{array}{l} \\ \mathsf{fma}\left(0.5, \varepsilon, \mathsf{fma}\left(\mathsf{fma}\left(-0.25, \varepsilon, -0.16666666666666666 \cdot x\right), x \cdot x, x\right)\right) \cdot \left(-\varepsilon\right) \end{array} \]
                                            (FPCore (x eps)
                                             :precision binary64
                                             (*
                                              (fma 0.5 eps (fma (fma -0.25 eps (* -0.16666666666666666 x)) (* x x) x))
                                              (- eps)))
                                            double code(double x, double eps) {
                                            	return fma(0.5, eps, fma(fma(-0.25, eps, (-0.16666666666666666 * x)), (x * x), x)) * -eps;
                                            }
                                            
                                            function code(x, eps)
                                            	return Float64(fma(0.5, eps, fma(fma(-0.25, eps, Float64(-0.16666666666666666 * x)), Float64(x * x), x)) * Float64(-eps))
                                            end
                                            
                                            code[x_, eps_] := N[(N[(0.5 * eps + N[(N[(-0.25 * eps + N[(-0.16666666666666666 * x), $MachinePrecision]), $MachinePrecision] * N[(x * x), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision] * (-eps)), $MachinePrecision]
                                            
                                            \begin{array}{l}
                                            
                                            \\
                                            \mathsf{fma}\left(0.5, \varepsilon, \mathsf{fma}\left(\mathsf{fma}\left(-0.25, \varepsilon, -0.16666666666666666 \cdot x\right), x \cdot x, x\right)\right) \cdot \left(-\varepsilon\right)
                                            \end{array}
                                            
                                            Derivation
                                            1. Initial program 53.9%

                                              \[\cos \left(x + \varepsilon\right) - \cos x \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in eps around 0

                                              \[\leadsto \color{blue}{\varepsilon \cdot \left(\frac{-1}{2} \cdot \left(\varepsilon \cdot \cos x\right) - \sin x\right)} \]
                                            4. Step-by-step derivation
                                              1. Applied rewrites99.8%

                                                \[\leadsto \color{blue}{\mathsf{fma}\left(\cos x \cdot \varepsilon, 0.5, \sin x\right) \cdot \left(-\varepsilon\right)} \]
                                              2. Taylor expanded in x around 0

                                                \[\leadsto \left(\frac{1}{2} \cdot \varepsilon + x \cdot \left(1 + x \cdot \left(\frac{-1}{4} \cdot \varepsilon + \frac{-1}{6} \cdot x\right)\right)\right) \cdot \left(-\color{blue}{\varepsilon}\right) \]
                                              3. Step-by-step derivation
                                                1. Applied rewrites99.1%

                                                  \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.16666666666666666, x, -0.25 \cdot \varepsilon\right), x, 1\right), x, 0.5 \cdot \varepsilon\right) \cdot \left(-\color{blue}{\varepsilon}\right) \]
                                                2. Taylor expanded in x around 0

                                                  \[\leadsto \left(\frac{1}{2} \cdot \varepsilon + x \cdot \left(1 + x \cdot \left(\frac{-1}{4} \cdot \varepsilon + \frac{-1}{6} \cdot x\right)\right)\right) \cdot \left(-\color{blue}{\varepsilon}\right) \]
                                                3. Step-by-step derivation
                                                  1. Applied rewrites99.1%

                                                    \[\leadsto \mathsf{fma}\left(0.5, \varepsilon, \mathsf{fma}\left(\mathsf{fma}\left(-0.25, \varepsilon, -0.16666666666666666 \cdot x\right), x \cdot x, x\right)\right) \cdot \left(-\color{blue}{\varepsilon}\right) \]
                                                  2. Add Preprocessing

                                                  Alternative 11: 98.2% accurate, 6.9× speedup?

                                                  \[\begin{array}{l} \\ \mathsf{fma}\left(\mathsf{fma}\left(-0.16666666666666666 \cdot x, x, 1\right), x, 0.5 \cdot \varepsilon\right) \cdot \left(-\varepsilon\right) \end{array} \]
                                                  (FPCore (x eps)
                                                   :precision binary64
                                                   (* (fma (fma (* -0.16666666666666666 x) x 1.0) x (* 0.5 eps)) (- eps)))
                                                  double code(double x, double eps) {
                                                  	return fma(fma((-0.16666666666666666 * x), x, 1.0), x, (0.5 * eps)) * -eps;
                                                  }
                                                  
                                                  function code(x, eps)
                                                  	return Float64(fma(fma(Float64(-0.16666666666666666 * x), x, 1.0), x, Float64(0.5 * eps)) * Float64(-eps))
                                                  end
                                                  
                                                  code[x_, eps_] := N[(N[(N[(N[(-0.16666666666666666 * x), $MachinePrecision] * x + 1.0), $MachinePrecision] * x + N[(0.5 * eps), $MachinePrecision]), $MachinePrecision] * (-eps)), $MachinePrecision]
                                                  
                                                  \begin{array}{l}
                                                  
                                                  \\
                                                  \mathsf{fma}\left(\mathsf{fma}\left(-0.16666666666666666 \cdot x, x, 1\right), x, 0.5 \cdot \varepsilon\right) \cdot \left(-\varepsilon\right)
                                                  \end{array}
                                                  
                                                  Derivation
                                                  1. Initial program 53.9%

                                                    \[\cos \left(x + \varepsilon\right) - \cos x \]
                                                  2. Add Preprocessing
                                                  3. Taylor expanded in eps around 0

                                                    \[\leadsto \color{blue}{\varepsilon \cdot \left(\frac{-1}{2} \cdot \left(\varepsilon \cdot \cos x\right) - \sin x\right)} \]
                                                  4. Step-by-step derivation
                                                    1. Applied rewrites99.8%

                                                      \[\leadsto \color{blue}{\mathsf{fma}\left(\cos x \cdot \varepsilon, 0.5, \sin x\right) \cdot \left(-\varepsilon\right)} \]
                                                    2. Taylor expanded in x around 0

                                                      \[\leadsto \left(\frac{1}{2} \cdot \varepsilon + x \cdot \left(1 + x \cdot \left(\frac{-1}{4} \cdot \varepsilon + \frac{-1}{6} \cdot x\right)\right)\right) \cdot \left(-\color{blue}{\varepsilon}\right) \]
                                                    3. Step-by-step derivation
                                                      1. Applied rewrites99.1%

                                                        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.16666666666666666, x, -0.25 \cdot \varepsilon\right), x, 1\right), x, 0.5 \cdot \varepsilon\right) \cdot \left(-\color{blue}{\varepsilon}\right) \]
                                                      2. Taylor expanded in x around inf

                                                        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{6} \cdot x, x, 1\right), x, \frac{1}{2} \cdot \varepsilon\right) \cdot \left(-\varepsilon\right) \]
                                                      3. Step-by-step derivation
                                                        1. Applied rewrites99.0%

                                                          \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(-0.16666666666666666 \cdot x, x, 1\right), x, 0.5 \cdot \varepsilon\right) \cdot \left(-\varepsilon\right) \]
                                                        2. Add Preprocessing

                                                        Alternative 12: 97.8% accurate, 10.9× speedup?

                                                        \[\begin{array}{l} \\ \mathsf{fma}\left(-\varepsilon, x, \left(\varepsilon \cdot \varepsilon\right) \cdot -0.5\right) \end{array} \]
                                                        (FPCore (x eps) :precision binary64 (fma (- eps) x (* (* eps eps) -0.5)))
                                                        double code(double x, double eps) {
                                                        	return fma(-eps, x, ((eps * eps) * -0.5));
                                                        }
                                                        
                                                        function code(x, eps)
                                                        	return fma(Float64(-eps), x, Float64(Float64(eps * eps) * -0.5))
                                                        end
                                                        
                                                        code[x_, eps_] := N[((-eps) * x + N[(N[(eps * eps), $MachinePrecision] * -0.5), $MachinePrecision]), $MachinePrecision]
                                                        
                                                        \begin{array}{l}
                                                        
                                                        \\
                                                        \mathsf{fma}\left(-\varepsilon, x, \left(\varepsilon \cdot \varepsilon\right) \cdot -0.5\right)
                                                        \end{array}
                                                        
                                                        Derivation
                                                        1. Initial program 53.9%

                                                          \[\cos \left(x + \varepsilon\right) - \cos x \]
                                                        2. Add Preprocessing
                                                        3. Taylor expanded in eps around 0

                                                          \[\leadsto \color{blue}{\varepsilon \cdot \left(\varepsilon \cdot \left(\frac{-1}{2} \cdot \cos x + \frac{1}{6} \cdot \left(\varepsilon \cdot \sin x\right)\right) - \sin x\right)} \]
                                                        4. Step-by-step derivation
                                                          1. Applied rewrites99.8%

                                                            \[\leadsto \color{blue}{\left(\mathsf{fma}\left(\sin x \cdot \varepsilon, 0.16666666666666666, -0.5 \cdot \cos x\right) \cdot \varepsilon - \sin x\right) \cdot \varepsilon} \]
                                                          2. Taylor expanded in x around 0

                                                            \[\leadsto \frac{-1}{2} \cdot {\varepsilon}^{2} + \color{blue}{x \cdot \left(\frac{1}{4} \cdot \left({\varepsilon}^{2} \cdot x\right) + \varepsilon \cdot \left(\frac{1}{6} \cdot {\varepsilon}^{2} - 1\right)\right)} \]
                                                          3. Step-by-step derivation
                                                            1. Applied rewrites98.5%

                                                              \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\left(\varepsilon \cdot \varepsilon\right) \cdot x, 0.25, \mathsf{fma}\left(\varepsilon \cdot \varepsilon, 0.16666666666666666, -1\right) \cdot \varepsilon\right), \color{blue}{x}, \left(\varepsilon \cdot \varepsilon\right) \cdot -0.5\right) \]
                                                            2. Taylor expanded in eps around 0

                                                              \[\leadsto \mathsf{fma}\left(-1 \cdot \varepsilon, x, \left(\varepsilon \cdot \varepsilon\right) \cdot \frac{-1}{2}\right) \]
                                                            3. Step-by-step derivation
                                                              1. Applied rewrites98.5%

                                                                \[\leadsto \mathsf{fma}\left(-\varepsilon, x, \left(\varepsilon \cdot \varepsilon\right) \cdot -0.5\right) \]
                                                              2. Add Preprocessing

                                                              Alternative 13: 97.6% accurate, 14.8× speedup?

                                                              \[\begin{array}{l} \\ \left(-0.5 \cdot \varepsilon - x\right) \cdot \varepsilon \end{array} \]
                                                              (FPCore (x eps) :precision binary64 (* (- (* -0.5 eps) x) eps))
                                                              double code(double x, double eps) {
                                                              	return ((-0.5 * eps) - x) * eps;
                                                              }
                                                              
                                                              module fmin_fmax_functions
                                                                  implicit none
                                                                  private
                                                                  public fmax
                                                                  public fmin
                                                              
                                                                  interface fmax
                                                                      module procedure fmax88
                                                                      module procedure fmax44
                                                                      module procedure fmax84
                                                                      module procedure fmax48
                                                                  end interface
                                                                  interface fmin
                                                                      module procedure fmin88
                                                                      module procedure fmin44
                                                                      module procedure fmin84
                                                                      module procedure fmin48
                                                                  end interface
                                                              contains
                                                                  real(8) function fmax88(x, y) result (res)
                                                                      real(8), intent (in) :: x
                                                                      real(8), intent (in) :: y
                                                                      res = merge(y, merge(x, max(x, y), y /= y), x /= x)
                                                                  end function
                                                                  real(4) function fmax44(x, y) result (res)
                                                                      real(4), intent (in) :: x
                                                                      real(4), intent (in) :: y
                                                                      res = merge(y, merge(x, max(x, y), y /= y), x /= x)
                                                                  end function
                                                                  real(8) function fmax84(x, y) result(res)
                                                                      real(8), intent (in) :: x
                                                                      real(4), intent (in) :: y
                                                                      res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
                                                                  end function
                                                                  real(8) function fmax48(x, y) result(res)
                                                                      real(4), intent (in) :: x
                                                                      real(8), intent (in) :: y
                                                                      res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
                                                                  end function
                                                                  real(8) function fmin88(x, y) result (res)
                                                                      real(8), intent (in) :: x
                                                                      real(8), intent (in) :: y
                                                                      res = merge(y, merge(x, min(x, y), y /= y), x /= x)
                                                                  end function
                                                                  real(4) function fmin44(x, y) result (res)
                                                                      real(4), intent (in) :: x
                                                                      real(4), intent (in) :: y
                                                                      res = merge(y, merge(x, min(x, y), y /= y), x /= x)
                                                                  end function
                                                                  real(8) function fmin84(x, y) result(res)
                                                                      real(8), intent (in) :: x
                                                                      real(4), intent (in) :: y
                                                                      res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
                                                                  end function
                                                                  real(8) function fmin48(x, y) result(res)
                                                                      real(4), intent (in) :: x
                                                                      real(8), intent (in) :: y
                                                                      res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
                                                                  end function
                                                              end module
                                                              
                                                              real(8) function code(x, eps)
                                                              use fmin_fmax_functions
                                                                  real(8), intent (in) :: x
                                                                  real(8), intent (in) :: eps
                                                                  code = (((-0.5d0) * eps) - x) * eps
                                                              end function
                                                              
                                                              public static double code(double x, double eps) {
                                                              	return ((-0.5 * eps) - x) * eps;
                                                              }
                                                              
                                                              def code(x, eps):
                                                              	return ((-0.5 * eps) - x) * eps
                                                              
                                                              function code(x, eps)
                                                              	return Float64(Float64(Float64(-0.5 * eps) - x) * eps)
                                                              end
                                                              
                                                              function tmp = code(x, eps)
                                                              	tmp = ((-0.5 * eps) - x) * eps;
                                                              end
                                                              
                                                              code[x_, eps_] := N[(N[(N[(-0.5 * eps), $MachinePrecision] - x), $MachinePrecision] * eps), $MachinePrecision]
                                                              
                                                              \begin{array}{l}
                                                              
                                                              \\
                                                              \left(-0.5 \cdot \varepsilon - x\right) \cdot \varepsilon
                                                              \end{array}
                                                              
                                                              Derivation
                                                              1. Initial program 53.9%

                                                                \[\cos \left(x + \varepsilon\right) - \cos x \]
                                                              2. Add Preprocessing
                                                              3. Taylor expanded in eps around 0

                                                                \[\leadsto \color{blue}{\varepsilon \cdot \left(\varepsilon \cdot \left(\frac{-1}{2} \cdot \cos x + \frac{1}{6} \cdot \left(\varepsilon \cdot \sin x\right)\right) - \sin x\right)} \]
                                                              4. Step-by-step derivation
                                                                1. Applied rewrites99.8%

                                                                  \[\leadsto \color{blue}{\left(\mathsf{fma}\left(\sin x \cdot \varepsilon, 0.16666666666666666, -0.5 \cdot \cos x\right) \cdot \varepsilon - \sin x\right) \cdot \varepsilon} \]
                                                                2. Taylor expanded in x around 0

                                                                  \[\leadsto \left(\frac{-1}{2} \cdot \varepsilon + x \cdot \left(\frac{1}{6} \cdot {\varepsilon}^{2} - 1\right)\right) \cdot \varepsilon \]
                                                                3. Step-by-step derivation
                                                                  1. Applied rewrites98.4%

                                                                    \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\varepsilon \cdot \varepsilon, 0.16666666666666666, -1\right), x, -0.5 \cdot \varepsilon\right) \cdot \varepsilon \]
                                                                  2. Taylor expanded in eps around 0

                                                                    \[\leadsto \left(-1 \cdot x + \frac{-1}{2} \cdot \varepsilon\right) \cdot \varepsilon \]
                                                                  3. Step-by-step derivation
                                                                    1. Applied rewrites98.4%

                                                                      \[\leadsto \left(-0.5 \cdot \varepsilon - x\right) \cdot \varepsilon \]
                                                                    2. Add Preprocessing

                                                                    Alternative 14: 78.7% accurate, 25.9× speedup?

                                                                    \[\begin{array}{l} \\ \left(-\varepsilon\right) \cdot x \end{array} \]
                                                                    (FPCore (x eps) :precision binary64 (* (- eps) x))
                                                                    double code(double x, double eps) {
                                                                    	return -eps * x;
                                                                    }
                                                                    
                                                                    module fmin_fmax_functions
                                                                        implicit none
                                                                        private
                                                                        public fmax
                                                                        public fmin
                                                                    
                                                                        interface fmax
                                                                            module procedure fmax88
                                                                            module procedure fmax44
                                                                            module procedure fmax84
                                                                            module procedure fmax48
                                                                        end interface
                                                                        interface fmin
                                                                            module procedure fmin88
                                                                            module procedure fmin44
                                                                            module procedure fmin84
                                                                            module procedure fmin48
                                                                        end interface
                                                                    contains
                                                                        real(8) function fmax88(x, y) result (res)
                                                                            real(8), intent (in) :: x
                                                                            real(8), intent (in) :: y
                                                                            res = merge(y, merge(x, max(x, y), y /= y), x /= x)
                                                                        end function
                                                                        real(4) function fmax44(x, y) result (res)
                                                                            real(4), intent (in) :: x
                                                                            real(4), intent (in) :: y
                                                                            res = merge(y, merge(x, max(x, y), y /= y), x /= x)
                                                                        end function
                                                                        real(8) function fmax84(x, y) result(res)
                                                                            real(8), intent (in) :: x
                                                                            real(4), intent (in) :: y
                                                                            res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
                                                                        end function
                                                                        real(8) function fmax48(x, y) result(res)
                                                                            real(4), intent (in) :: x
                                                                            real(8), intent (in) :: y
                                                                            res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
                                                                        end function
                                                                        real(8) function fmin88(x, y) result (res)
                                                                            real(8), intent (in) :: x
                                                                            real(8), intent (in) :: y
                                                                            res = merge(y, merge(x, min(x, y), y /= y), x /= x)
                                                                        end function
                                                                        real(4) function fmin44(x, y) result (res)
                                                                            real(4), intent (in) :: x
                                                                            real(4), intent (in) :: y
                                                                            res = merge(y, merge(x, min(x, y), y /= y), x /= x)
                                                                        end function
                                                                        real(8) function fmin84(x, y) result(res)
                                                                            real(8), intent (in) :: x
                                                                            real(4), intent (in) :: y
                                                                            res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
                                                                        end function
                                                                        real(8) function fmin48(x, y) result(res)
                                                                            real(4), intent (in) :: x
                                                                            real(8), intent (in) :: y
                                                                            res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
                                                                        end function
                                                                    end module
                                                                    
                                                                    real(8) function code(x, eps)
                                                                    use fmin_fmax_functions
                                                                        real(8), intent (in) :: x
                                                                        real(8), intent (in) :: eps
                                                                        code = -eps * x
                                                                    end function
                                                                    
                                                                    public static double code(double x, double eps) {
                                                                    	return -eps * x;
                                                                    }
                                                                    
                                                                    def code(x, eps):
                                                                    	return -eps * x
                                                                    
                                                                    function code(x, eps)
                                                                    	return Float64(Float64(-eps) * x)
                                                                    end
                                                                    
                                                                    function tmp = code(x, eps)
                                                                    	tmp = -eps * x;
                                                                    end
                                                                    
                                                                    code[x_, eps_] := N[((-eps) * x), $MachinePrecision]
                                                                    
                                                                    \begin{array}{l}
                                                                    
                                                                    \\
                                                                    \left(-\varepsilon\right) \cdot x
                                                                    \end{array}
                                                                    
                                                                    Derivation
                                                                    1. Initial program 53.9%

                                                                      \[\cos \left(x + \varepsilon\right) - \cos x \]
                                                                    2. Add Preprocessing
                                                                    3. Taylor expanded in eps around 0

                                                                      \[\leadsto \color{blue}{-1 \cdot \left(\varepsilon \cdot \sin x\right)} \]
                                                                    4. Step-by-step derivation
                                                                      1. Applied rewrites80.8%

                                                                        \[\leadsto \color{blue}{\left(-\varepsilon\right) \cdot \sin x} \]
                                                                      2. Taylor expanded in x around 0

                                                                        \[\leadsto \left(-\varepsilon\right) \cdot x \]
                                                                      3. Step-by-step derivation
                                                                        1. Applied rewrites80.0%

                                                                          \[\leadsto \left(-\varepsilon\right) \cdot x \]
                                                                        2. Add Preprocessing

                                                                        Alternative 15: 51.2% accurate, 51.8× speedup?

                                                                        \[\begin{array}{l} \\ 1 - 1 \end{array} \]
                                                                        (FPCore (x eps) :precision binary64 (- 1.0 1.0))
                                                                        double code(double x, double eps) {
                                                                        	return 1.0 - 1.0;
                                                                        }
                                                                        
                                                                        module fmin_fmax_functions
                                                                            implicit none
                                                                            private
                                                                            public fmax
                                                                            public fmin
                                                                        
                                                                            interface fmax
                                                                                module procedure fmax88
                                                                                module procedure fmax44
                                                                                module procedure fmax84
                                                                                module procedure fmax48
                                                                            end interface
                                                                            interface fmin
                                                                                module procedure fmin88
                                                                                module procedure fmin44
                                                                                module procedure fmin84
                                                                                module procedure fmin48
                                                                            end interface
                                                                        contains
                                                                            real(8) function fmax88(x, y) result (res)
                                                                                real(8), intent (in) :: x
                                                                                real(8), intent (in) :: y
                                                                                res = merge(y, merge(x, max(x, y), y /= y), x /= x)
                                                                            end function
                                                                            real(4) function fmax44(x, y) result (res)
                                                                                real(4), intent (in) :: x
                                                                                real(4), intent (in) :: y
                                                                                res = merge(y, merge(x, max(x, y), y /= y), x /= x)
                                                                            end function
                                                                            real(8) function fmax84(x, y) result(res)
                                                                                real(8), intent (in) :: x
                                                                                real(4), intent (in) :: y
                                                                                res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
                                                                            end function
                                                                            real(8) function fmax48(x, y) result(res)
                                                                                real(4), intent (in) :: x
                                                                                real(8), intent (in) :: y
                                                                                res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
                                                                            end function
                                                                            real(8) function fmin88(x, y) result (res)
                                                                                real(8), intent (in) :: x
                                                                                real(8), intent (in) :: y
                                                                                res = merge(y, merge(x, min(x, y), y /= y), x /= x)
                                                                            end function
                                                                            real(4) function fmin44(x, y) result (res)
                                                                                real(4), intent (in) :: x
                                                                                real(4), intent (in) :: y
                                                                                res = merge(y, merge(x, min(x, y), y /= y), x /= x)
                                                                            end function
                                                                            real(8) function fmin84(x, y) result(res)
                                                                                real(8), intent (in) :: x
                                                                                real(4), intent (in) :: y
                                                                                res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
                                                                            end function
                                                                            real(8) function fmin48(x, y) result(res)
                                                                                real(4), intent (in) :: x
                                                                                real(8), intent (in) :: y
                                                                                res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
                                                                            end function
                                                                        end module
                                                                        
                                                                        real(8) function code(x, eps)
                                                                        use fmin_fmax_functions
                                                                            real(8), intent (in) :: x
                                                                            real(8), intent (in) :: eps
                                                                            code = 1.0d0 - 1.0d0
                                                                        end function
                                                                        
                                                                        public static double code(double x, double eps) {
                                                                        	return 1.0 - 1.0;
                                                                        }
                                                                        
                                                                        def code(x, eps):
                                                                        	return 1.0 - 1.0
                                                                        
                                                                        function code(x, eps)
                                                                        	return Float64(1.0 - 1.0)
                                                                        end
                                                                        
                                                                        function tmp = code(x, eps)
                                                                        	tmp = 1.0 - 1.0;
                                                                        end
                                                                        
                                                                        code[x_, eps_] := N[(1.0 - 1.0), $MachinePrecision]
                                                                        
                                                                        \begin{array}{l}
                                                                        
                                                                        \\
                                                                        1 - 1
                                                                        \end{array}
                                                                        
                                                                        Derivation
                                                                        1. Initial program 53.9%

                                                                          \[\cos \left(x + \varepsilon\right) - \cos x \]
                                                                        2. Add Preprocessing
                                                                        3. Taylor expanded in x around 0

                                                                          \[\leadsto \color{blue}{\cos \varepsilon - 1} \]
                                                                        4. Step-by-step derivation
                                                                          1. Applied rewrites53.2%

                                                                            \[\leadsto \color{blue}{\cos \varepsilon - 1} \]
                                                                          2. Taylor expanded in eps around 0

                                                                            \[\leadsto 1 - 1 \]
                                                                          3. Step-by-step derivation
                                                                            1. Applied rewrites53.2%

                                                                              \[\leadsto 1 - 1 \]
                                                                            2. Add Preprocessing

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

                                                                            \[\begin{array}{l} \\ {\left(\sqrt[3]{\left(-2 \cdot \sin \left(0.5 \cdot \mathsf{fma}\left(2, x, \varepsilon\right)\right)\right) \cdot \sin \left(0.5 \cdot \varepsilon\right)}\right)}^{3} \end{array} \]
                                                                            (FPCore (x eps)
                                                                             :precision binary64
                                                                             (pow (cbrt (* (* -2.0 (sin (* 0.5 (fma 2.0 x eps)))) (sin (* 0.5 eps)))) 3.0))
                                                                            double code(double x, double eps) {
                                                                            	return pow(cbrt(((-2.0 * sin((0.5 * fma(2.0, x, eps)))) * sin((0.5 * eps)))), 3.0);
                                                                            }
                                                                            
                                                                            function code(x, eps)
                                                                            	return cbrt(Float64(Float64(-2.0 * sin(Float64(0.5 * fma(2.0, x, eps)))) * sin(Float64(0.5 * eps)))) ^ 3.0
                                                                            end
                                                                            
                                                                            code[x_, eps_] := N[Power[N[Power[N[(N[(-2.0 * N[Sin[N[(0.5 * N[(2.0 * x + eps), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Sin[N[(0.5 * eps), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 1/3], $MachinePrecision], 3.0], $MachinePrecision]
                                                                            
                                                                            \begin{array}{l}
                                                                            
                                                                            \\
                                                                            {\left(\sqrt[3]{\left(-2 \cdot \sin \left(0.5 \cdot \mathsf{fma}\left(2, x, \varepsilon\right)\right)\right) \cdot \sin \left(0.5 \cdot \varepsilon\right)}\right)}^{3}
                                                                            \end{array}
                                                                            

                                                                            Reproduce

                                                                            ?
                                                                            herbie shell --seed 2025019 
                                                                            (FPCore (x eps)
                                                                              :name "2cos (problem 3.3.5)"
                                                                              :precision binary64
                                                                              :pre (and (and (and (<= -10000.0 x) (<= x 10000.0)) (< (* 1e-16 (fabs x)) eps)) (< eps (fabs x)))
                                                                            
                                                                              :alt
                                                                              (! :herbie-platform default (pow (cbrt (* -2 (sin (* 1/2 (fma 2 x eps))) (sin (* 1/2 eps)))) 3))
                                                                            
                                                                              (- (cos (+ x eps)) (cos x)))