Numeric.SpecFunctions:invErfc from math-functions-0.1.5.2, B

Percentage Accurate: 99.9% → 99.9%
Time: 4.4s
Alternatives: 9
Speedup: 1.1×

Specification

?
\[\begin{array}{l} \\ 0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \end{array} \]
(FPCore (x)
 :precision binary64
 (*
  0.70711
  (- (/ (+ 2.30753 (* x 0.27061)) (+ 1.0 (* x (+ 0.99229 (* x 0.04481))))) x)))
double code(double x) {
	return 0.70711 * (((2.30753 + (x * 0.27061)) / (1.0 + (x * (0.99229 + (x * 0.04481))))) - 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)
use fmin_fmax_functions
    real(8), intent (in) :: x
    code = 0.70711d0 * (((2.30753d0 + (x * 0.27061d0)) / (1.0d0 + (x * (0.99229d0 + (x * 0.04481d0))))) - x)
end function
public static double code(double x) {
	return 0.70711 * (((2.30753 + (x * 0.27061)) / (1.0 + (x * (0.99229 + (x * 0.04481))))) - x);
}
def code(x):
	return 0.70711 * (((2.30753 + (x * 0.27061)) / (1.0 + (x * (0.99229 + (x * 0.04481))))) - x)
function code(x)
	return Float64(0.70711 * Float64(Float64(Float64(2.30753 + Float64(x * 0.27061)) / Float64(1.0 + Float64(x * Float64(0.99229 + Float64(x * 0.04481))))) - x))
end
function tmp = code(x)
	tmp = 0.70711 * (((2.30753 + (x * 0.27061)) / (1.0 + (x * (0.99229 + (x * 0.04481))))) - x);
end
code[x_] := N[(0.70711 * N[(N[(N[(2.30753 + N[(x * 0.27061), $MachinePrecision]), $MachinePrecision] / N[(1.0 + N[(x * N[(0.99229 + N[(x * 0.04481), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - x), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right)
\end{array}

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

Herbie found 9 alternatives:

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

Initial Program: 99.9% accurate, 1.0× speedup?

\[\begin{array}{l} \\ 0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \end{array} \]
(FPCore (x)
 :precision binary64
 (*
  0.70711
  (- (/ (+ 2.30753 (* x 0.27061)) (+ 1.0 (* x (+ 0.99229 (* x 0.04481))))) x)))
double code(double x) {
	return 0.70711 * (((2.30753 + (x * 0.27061)) / (1.0 + (x * (0.99229 + (x * 0.04481))))) - 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)
use fmin_fmax_functions
    real(8), intent (in) :: x
    code = 0.70711d0 * (((2.30753d0 + (x * 0.27061d0)) / (1.0d0 + (x * (0.99229d0 + (x * 0.04481d0))))) - x)
end function
public static double code(double x) {
	return 0.70711 * (((2.30753 + (x * 0.27061)) / (1.0 + (x * (0.99229 + (x * 0.04481))))) - x);
}
def code(x):
	return 0.70711 * (((2.30753 + (x * 0.27061)) / (1.0 + (x * (0.99229 + (x * 0.04481))))) - x)
function code(x)
	return Float64(0.70711 * Float64(Float64(Float64(2.30753 + Float64(x * 0.27061)) / Float64(1.0 + Float64(x * Float64(0.99229 + Float64(x * 0.04481))))) - x))
end
function tmp = code(x)
	tmp = 0.70711 * (((2.30753 + (x * 0.27061)) / (1.0 + (x * (0.99229 + (x * 0.04481))))) - x);
end
code[x_] := N[(0.70711 * N[(N[(N[(2.30753 + N[(x * 0.27061), $MachinePrecision]), $MachinePrecision] / N[(1.0 + N[(x * N[(0.99229 + N[(x * 0.04481), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - x), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right)
\end{array}

Alternative 1: 99.9% accurate, 1.1× speedup?

\[\begin{array}{l} \\ \mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(0.1913510371, x, 1.6316775383\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}\right) \end{array} \]
(FPCore (x)
 :precision binary64
 (fma
  x
  -0.70711
  (/ (fma 0.1913510371 x 1.6316775383) (fma (fma 0.04481 x 0.99229) x 1.0))))
double code(double x) {
	return fma(x, -0.70711, (fma(0.1913510371, x, 1.6316775383) / fma(fma(0.04481, x, 0.99229), x, 1.0)));
}
function code(x)
	return fma(x, -0.70711, Float64(fma(0.1913510371, x, 1.6316775383) / fma(fma(0.04481, x, 0.99229), x, 1.0)))
end
code[x_] := N[(x * -0.70711 + N[(N[(0.1913510371 * x + 1.6316775383), $MachinePrecision] / N[(N[(0.04481 * x + 0.99229), $MachinePrecision] * x + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(0.1913510371, x, 1.6316775383\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}\right)
\end{array}
Derivation
  1. Initial program 99.9%

    \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
  2. Applied rewrites99.9%

    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\mathsf{fma}\left(0.27061, x, 2.30753\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}, 0.70711, \left(-x\right) \cdot 0.70711\right)} \]
  3. Step-by-step derivation
    1. lift-fma.f64N/A

      \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} + \left(-x\right) \cdot \frac{70711}{100000}} \]
    2. +-commutativeN/A

      \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}} \]
    3. lift-*.f64N/A

      \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000}} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
    4. lift-neg.f64N/A

      \[\leadsto \color{blue}{\left(\mathsf{neg}\left(x\right)\right)} \cdot \frac{70711}{100000} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
    5. distribute-lft-neg-outN/A

      \[\leadsto \color{blue}{\left(\mathsf{neg}\left(x \cdot \frac{70711}{100000}\right)\right)} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
    6. distribute-rgt-neg-inN/A

      \[\leadsto \color{blue}{x \cdot \left(\mathsf{neg}\left(\frac{70711}{100000}\right)\right)} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
    7. lower-fma.f64N/A

      \[\leadsto \color{blue}{\mathsf{fma}\left(x, \mathsf{neg}\left(\frac{70711}{100000}\right), \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}\right)} \]
    8. metadata-evalN/A

      \[\leadsto \mathsf{fma}\left(x, \color{blue}{\frac{-70711}{100000}}, \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}\right) \]
    9. *-commutativeN/A

      \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{70711}{100000} \cdot \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
    10. lift-/.f64N/A

      \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{70711}{100000} \cdot \color{blue}{\frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
    11. associate-/l*N/A

      \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{\frac{70711}{100000} \cdot \mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
    12. lower-/.f64N/A

      \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{\frac{70711}{100000} \cdot \mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
    13. lift-fma.f64N/A

      \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\frac{70711}{100000} \cdot \color{blue}{\left(\frac{27061}{100000} \cdot x + \frac{230753}{100000}\right)}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
    14. distribute-lft-inN/A

      \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\frac{70711}{100000} \cdot \left(\frac{27061}{100000} \cdot x\right) + \frac{70711}{100000} \cdot \frac{230753}{100000}}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
    15. associate-*r*N/A

      \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\left(\frac{70711}{100000} \cdot \frac{27061}{100000}\right) \cdot x} + \frac{70711}{100000} \cdot \frac{230753}{100000}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
    16. metadata-evalN/A

      \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\left(\frac{70711}{100000} \cdot \frac{27061}{100000}\right) \cdot x + \color{blue}{\frac{16316775383}{10000000000}}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
    17. lower-fma.f64N/A

      \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\mathsf{fma}\left(\frac{70711}{100000} \cdot \frac{27061}{100000}, x, \frac{16316775383}{10000000000}\right)}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
    18. metadata-eval99.9

      \[\leadsto \mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(\color{blue}{0.1913510371}, x, 1.6316775383\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}\right) \]
  4. Applied rewrites99.9%

    \[\leadsto \color{blue}{\mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(0.1913510371, x, 1.6316775383\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}\right)} \]
  5. Add Preprocessing

Alternative 2: 99.2% accurate, 1.1× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -1.05:\\ \;\;\;\;\mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175 - \frac{58.14938538768042}{x}}{x}\right)\\ \mathbf{elif}\;x \leq 2.55:\\ \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-1.2692862305735844, x, 1.3436228731669864\right), x, -2.134856267379707\right), x, 1.6316775383\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175}{x}\right)\\ \end{array} \end{array} \]
(FPCore (x)
 :precision binary64
 (if (<= x -1.05)
   (fma x -0.70711 (/ (- 4.2702753202410175 (/ 58.14938538768042 x)) x))
   (if (<= x 2.55)
     (fma
      (fma (fma -1.2692862305735844 x 1.3436228731669864) x -2.134856267379707)
      x
      1.6316775383)
     (fma x -0.70711 (/ 4.2702753202410175 x)))))
double code(double x) {
	double tmp;
	if (x <= -1.05) {
		tmp = fma(x, -0.70711, ((4.2702753202410175 - (58.14938538768042 / x)) / x));
	} else if (x <= 2.55) {
		tmp = fma(fma(fma(-1.2692862305735844, x, 1.3436228731669864), x, -2.134856267379707), x, 1.6316775383);
	} else {
		tmp = fma(x, -0.70711, (4.2702753202410175 / x));
	}
	return tmp;
}
function code(x)
	tmp = 0.0
	if (x <= -1.05)
		tmp = fma(x, -0.70711, Float64(Float64(4.2702753202410175 - Float64(58.14938538768042 / x)) / x));
	elseif (x <= 2.55)
		tmp = fma(fma(fma(-1.2692862305735844, x, 1.3436228731669864), x, -2.134856267379707), x, 1.6316775383);
	else
		tmp = fma(x, -0.70711, Float64(4.2702753202410175 / x));
	end
	return tmp
end
code[x_] := If[LessEqual[x, -1.05], N[(x * -0.70711 + N[(N[(4.2702753202410175 - N[(58.14938538768042 / x), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 2.55], N[(N[(N[(-1.2692862305735844 * x + 1.3436228731669864), $MachinePrecision] * x + -2.134856267379707), $MachinePrecision] * x + 1.6316775383), $MachinePrecision], N[(x * -0.70711 + N[(4.2702753202410175 / x), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq -1.05:\\
\;\;\;\;\mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175 - \frac{58.14938538768042}{x}}{x}\right)\\

\mathbf{elif}\;x \leq 2.55:\\
\;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-1.2692862305735844, x, 1.3436228731669864\right), x, -2.134856267379707\right), x, 1.6316775383\right)\\

\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175}{x}\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if x < -1.05000000000000004

    1. Initial program 99.9%

      \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
    2. Applied rewrites99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(-x, 0.70711, \frac{0.70711}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)} \cdot \mathsf{fma}\left(0.27061, x, 2.30753\right)\right)} \]
    3. Taylor expanded in x around inf

      \[\leadsto \mathsf{fma}\left(-x, \frac{70711}{100000}, \color{blue}{\frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}}\right) \]
    4. Step-by-step derivation
      1. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(-x, \frac{70711}{100000}, \frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{\color{blue}{x}}\right) \]
      2. lower--.f64N/A

        \[\leadsto \mathsf{fma}\left(-x, \frac{70711}{100000}, \frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}\right) \]
      3. lower-*.f64N/A

        \[\leadsto \mathsf{fma}\left(-x, \frac{70711}{100000}, \frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}\right) \]
      4. lower-/.f6448.9

        \[\leadsto \mathsf{fma}\left(-x, 0.70711, \frac{4.2702753202410175 - 58.14938538768042 \cdot \frac{1}{x}}{x}\right) \]
    5. Applied rewrites48.9%

      \[\leadsto \mathsf{fma}\left(-x, 0.70711, \color{blue}{\frac{4.2702753202410175 - 58.14938538768042 \cdot \frac{1}{x}}{x}}\right) \]
    6. Step-by-step derivation
      1. lift-fma.f64N/A

        \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000} + \frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}} \]
      2. add-flipN/A

        \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000} - \left(\mathsf{neg}\left(\frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}\right)\right)} \]
      3. sub-flipN/A

        \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000} + \left(\mathsf{neg}\left(\left(\mathsf{neg}\left(\frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}\right)\right)\right)\right)} \]
      4. lift-neg.f64N/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(x\right)\right)} \cdot \frac{70711}{100000} + \left(\mathsf{neg}\left(\left(\mathsf{neg}\left(\frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}\right)\right)\right)\right) \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(x \cdot \frac{70711}{100000}\right)\right)} + \left(\mathsf{neg}\left(\left(\mathsf{neg}\left(\frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}\right)\right)\right)\right) \]
      6. distribute-rgt-neg-outN/A

        \[\leadsto \color{blue}{x \cdot \left(\mathsf{neg}\left(\frac{70711}{100000}\right)\right)} + \left(\mathsf{neg}\left(\left(\mathsf{neg}\left(\frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}\right)\right)\right)\right) \]
      7. metadata-evalN/A

        \[\leadsto x \cdot \color{blue}{\frac{-70711}{100000}} + \left(\mathsf{neg}\left(\left(\mathsf{neg}\left(\frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}\right)\right)\right)\right) \]
      8. remove-double-negN/A

        \[\leadsto x \cdot \frac{-70711}{100000} + \color{blue}{\frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}} \]
      9. lower-fma.f6448.9

        \[\leadsto \color{blue}{\mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175 - 58.14938538768042 \cdot \frac{1}{x}}{x}\right)} \]
    7. Applied rewrites48.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175 - \frac{58.14938538768042}{x}}{x}\right)} \]

    if -1.05000000000000004 < x < 2.5499999999999998

    1. Initial program 99.9%

      \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
    2. Applied rewrites99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\mathsf{fma}\left(0.27061, x, 2.30753\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}, 0.70711, \left(-x\right) \cdot 0.70711\right)} \]
    3. Taylor expanded in x around 0

      \[\leadsto \color{blue}{\frac{16316775383}{10000000000} + x \cdot \left(x \cdot \left(\frac{134362287316698645903}{100000000000000000000} + \frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x\right) - \frac{2134856267379707}{1000000000000000}\right)} \]
    4. Step-by-step derivation
      1. lower-+.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + \color{blue}{x \cdot \left(x \cdot \left(\frac{134362287316698645903}{100000000000000000000} + \frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x\right) - \frac{2134856267379707}{1000000000000000}\right)} \]
      2. lower-*.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + x \cdot \color{blue}{\left(x \cdot \left(\frac{134362287316698645903}{100000000000000000000} + \frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x\right) - \frac{2134856267379707}{1000000000000000}\right)} \]
      3. lower--.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + x \cdot \left(x \cdot \left(\frac{134362287316698645903}{100000000000000000000} + \frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x\right) - \color{blue}{\frac{2134856267379707}{1000000000000000}}\right) \]
      4. lower-*.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + x \cdot \left(x \cdot \left(\frac{134362287316698645903}{100000000000000000000} + \frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x\right) - \frac{2134856267379707}{1000000000000000}\right) \]
      5. lower-+.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + x \cdot \left(x \cdot \left(\frac{134362287316698645903}{100000000000000000000} + \frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x\right) - \frac{2134856267379707}{1000000000000000}\right) \]
      6. lower-*.f6453.8

        \[\leadsto 1.6316775383 + x \cdot \left(x \cdot \left(1.3436228731669864 + -1.2692862305735844 \cdot x\right) - 2.134856267379707\right) \]
    5. Applied rewrites53.8%

      \[\leadsto \color{blue}{1.6316775383 + x \cdot \left(x \cdot \left(1.3436228731669864 + -1.2692862305735844 \cdot x\right) - 2.134856267379707\right)} \]
    6. Step-by-step derivation
      1. lift-+.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + \color{blue}{x \cdot \left(x \cdot \left(\frac{134362287316698645903}{100000000000000000000} + \frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x\right) - \frac{2134856267379707}{1000000000000000}\right)} \]
      2. +-commutativeN/A

        \[\leadsto x \cdot \left(x \cdot \left(\frac{134362287316698645903}{100000000000000000000} + \frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x\right) - \frac{2134856267379707}{1000000000000000}\right) + \color{blue}{\frac{16316775383}{10000000000}} \]
      3. lift-*.f64N/A

        \[\leadsto x \cdot \left(x \cdot \left(\frac{134362287316698645903}{100000000000000000000} + \frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x\right) - \frac{2134856267379707}{1000000000000000}\right) + \frac{16316775383}{10000000000} \]
      4. *-commutativeN/A

        \[\leadsto \left(x \cdot \left(\frac{134362287316698645903}{100000000000000000000} + \frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x\right) - \frac{2134856267379707}{1000000000000000}\right) \cdot x + \frac{16316775383}{10000000000} \]
      5. lower-fma.f6453.8

        \[\leadsto \mathsf{fma}\left(x \cdot \left(1.3436228731669864 + -1.2692862305735844 \cdot x\right) - 2.134856267379707, \color{blue}{x}, 1.6316775383\right) \]
      6. lift--.f64N/A

        \[\leadsto \mathsf{fma}\left(x \cdot \left(\frac{134362287316698645903}{100000000000000000000} + \frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x\right) - \frac{2134856267379707}{1000000000000000}, x, \frac{16316775383}{10000000000}\right) \]
      7. sub-flipN/A

        \[\leadsto \mathsf{fma}\left(x \cdot \left(\frac{134362287316698645903}{100000000000000000000} + \frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x\right) + \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right), x, \frac{16316775383}{10000000000}\right) \]
      8. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left(x \cdot \left(\frac{134362287316698645903}{100000000000000000000} + \frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x\right) + \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right), x, \frac{16316775383}{10000000000}\right) \]
      9. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\left(\frac{134362287316698645903}{100000000000000000000} + \frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x\right) \cdot x + \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right), x, \frac{16316775383}{10000000000}\right) \]
      10. metadata-evalN/A

        \[\leadsto \mathsf{fma}\left(\left(\frac{134362287316698645903}{100000000000000000000} + \frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x\right) \cdot x + \frac{-2134856267379707}{1000000000000000}, x, \frac{16316775383}{10000000000}\right) \]
      11. lower-fma.f6453.8

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(1.3436228731669864 + -1.2692862305735844 \cdot x, x, -2.134856267379707\right), x, 1.6316775383\right) \]
      12. lift-+.f64N/A

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{134362287316698645903}{100000000000000000000} + \frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x, x, \frac{-2134856267379707}{1000000000000000}\right), x, \frac{16316775383}{10000000000}\right) \]
      13. +-commutativeN/A

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x + \frac{134362287316698645903}{100000000000000000000}, x, \frac{-2134856267379707}{1000000000000000}\right), x, \frac{16316775383}{10000000000}\right) \]
      14. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{-12692862305735843227608787}{10000000000000000000000000} \cdot x + \frac{134362287316698645903}{100000000000000000000}, x, \frac{-2134856267379707}{1000000000000000}\right), x, \frac{16316775383}{10000000000}\right) \]
      15. lower-fma.f6453.8

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-1.2692862305735844, x, 1.3436228731669864\right), x, -2.134856267379707\right), x, 1.6316775383\right) \]
    7. Applied rewrites53.8%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-1.2692862305735844, x, 1.3436228731669864\right), x, -2.134856267379707\right), x, 1.6316775383\right)} \]

    if 2.5499999999999998 < x

    1. Initial program 99.9%

      \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
    2. Applied rewrites99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\mathsf{fma}\left(0.27061, x, 2.30753\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}, 0.70711, \left(-x\right) \cdot 0.70711\right)} \]
    3. Step-by-step derivation
      1. lift-fma.f64N/A

        \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} + \left(-x\right) \cdot \frac{70711}{100000}} \]
      2. +-commutativeN/A

        \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}} \]
      3. lift-*.f64N/A

        \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000}} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
      4. lift-neg.f64N/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(x\right)\right)} \cdot \frac{70711}{100000} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(x \cdot \frac{70711}{100000}\right)\right)} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \color{blue}{x \cdot \left(\mathsf{neg}\left(\frac{70711}{100000}\right)\right)} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
      7. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left(x, \mathsf{neg}\left(\frac{70711}{100000}\right), \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}\right)} \]
      8. metadata-evalN/A

        \[\leadsto \mathsf{fma}\left(x, \color{blue}{\frac{-70711}{100000}}, \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}\right) \]
      9. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{70711}{100000} \cdot \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
      10. lift-/.f64N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{70711}{100000} \cdot \color{blue}{\frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
      11. associate-/l*N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{\frac{70711}{100000} \cdot \mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
      12. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{\frac{70711}{100000} \cdot \mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
      13. lift-fma.f64N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\frac{70711}{100000} \cdot \color{blue}{\left(\frac{27061}{100000} \cdot x + \frac{230753}{100000}\right)}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      14. distribute-lft-inN/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\frac{70711}{100000} \cdot \left(\frac{27061}{100000} \cdot x\right) + \frac{70711}{100000} \cdot \frac{230753}{100000}}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      15. associate-*r*N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\left(\frac{70711}{100000} \cdot \frac{27061}{100000}\right) \cdot x} + \frac{70711}{100000} \cdot \frac{230753}{100000}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      16. metadata-evalN/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\left(\frac{70711}{100000} \cdot \frac{27061}{100000}\right) \cdot x + \color{blue}{\frac{16316775383}{10000000000}}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      17. lower-fma.f64N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\mathsf{fma}\left(\frac{70711}{100000} \cdot \frac{27061}{100000}, x, \frac{16316775383}{10000000000}\right)}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      18. metadata-eval99.9

        \[\leadsto \mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(\color{blue}{0.1913510371}, x, 1.6316775383\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}\right) \]
    4. Applied rewrites99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(0.1913510371, x, 1.6316775383\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}\right)} \]
    5. Taylor expanded in x around inf

      \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{\frac{1913510371}{448100000}}{x}}\right) \]
    6. Step-by-step derivation
      1. lower-/.f6450.1

        \[\leadsto \mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175}{\color{blue}{x}}\right) \]
    7. Applied rewrites50.1%

      \[\leadsto \mathsf{fma}\left(x, -0.70711, \color{blue}{\frac{4.2702753202410175}{x}}\right) \]
  3. Recombined 3 regimes into one program.
  4. Add Preprocessing

Alternative 3: 99.1% accurate, 0.4× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := 0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right)\\ \mathbf{if}\;t\_0 \leq -1:\\ \;\;\;\;\mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175}{x}\right)\\ \mathbf{elif}\;t\_0 \leq 2:\\ \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(1.3436228731669864, x, -2.134856267379707\right), x, 1.6316775383\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175 - \frac{58.14938538768042}{x}}{x}\right)\\ \end{array} \end{array} \]
(FPCore (x)
 :precision binary64
 (let* ((t_0
         (*
          0.70711
          (-
           (/
            (+ 2.30753 (* x 0.27061))
            (+ 1.0 (* x (+ 0.99229 (* x 0.04481)))))
           x))))
   (if (<= t_0 -1.0)
     (fma x -0.70711 (/ 4.2702753202410175 x))
     (if (<= t_0 2.0)
       (fma (fma 1.3436228731669864 x -2.134856267379707) x 1.6316775383)
       (fma
        x
        -0.70711
        (/ (- 4.2702753202410175 (/ 58.14938538768042 x)) x))))))
double code(double x) {
	double t_0 = 0.70711 * (((2.30753 + (x * 0.27061)) / (1.0 + (x * (0.99229 + (x * 0.04481))))) - x);
	double tmp;
	if (t_0 <= -1.0) {
		tmp = fma(x, -0.70711, (4.2702753202410175 / x));
	} else if (t_0 <= 2.0) {
		tmp = fma(fma(1.3436228731669864, x, -2.134856267379707), x, 1.6316775383);
	} else {
		tmp = fma(x, -0.70711, ((4.2702753202410175 - (58.14938538768042 / x)) / x));
	}
	return tmp;
}
function code(x)
	t_0 = Float64(0.70711 * Float64(Float64(Float64(2.30753 + Float64(x * 0.27061)) / Float64(1.0 + Float64(x * Float64(0.99229 + Float64(x * 0.04481))))) - x))
	tmp = 0.0
	if (t_0 <= -1.0)
		tmp = fma(x, -0.70711, Float64(4.2702753202410175 / x));
	elseif (t_0 <= 2.0)
		tmp = fma(fma(1.3436228731669864, x, -2.134856267379707), x, 1.6316775383);
	else
		tmp = fma(x, -0.70711, Float64(Float64(4.2702753202410175 - Float64(58.14938538768042 / x)) / x));
	end
	return tmp
end
code[x_] := Block[{t$95$0 = N[(0.70711 * N[(N[(N[(2.30753 + N[(x * 0.27061), $MachinePrecision]), $MachinePrecision] / N[(1.0 + N[(x * N[(0.99229 + N[(x * 0.04481), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - x), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$0, -1.0], N[(x * -0.70711 + N[(4.2702753202410175 / x), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$0, 2.0], N[(N[(1.3436228731669864 * x + -2.134856267379707), $MachinePrecision] * x + 1.6316775383), $MachinePrecision], N[(x * -0.70711 + N[(N[(4.2702753202410175 - N[(58.14938538768042 / x), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := 0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right)\\
\mathbf{if}\;t\_0 \leq -1:\\
\;\;\;\;\mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175}{x}\right)\\

\mathbf{elif}\;t\_0 \leq 2:\\
\;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(1.3436228731669864, x, -2.134856267379707\right), x, 1.6316775383\right)\\

\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175 - \frac{58.14938538768042}{x}}{x}\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if (*.f64 #s(literal 70711/100000 binary64) (-.f64 (/.f64 (+.f64 #s(literal 230753/100000 binary64) (*.f64 x #s(literal 27061/100000 binary64))) (+.f64 #s(literal 1 binary64) (*.f64 x (+.f64 #s(literal 99229/100000 binary64) (*.f64 x #s(literal 4481/100000 binary64)))))) x)) < -1

    1. Initial program 99.9%

      \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
    2. Applied rewrites99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\mathsf{fma}\left(0.27061, x, 2.30753\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}, 0.70711, \left(-x\right) \cdot 0.70711\right)} \]
    3. Step-by-step derivation
      1. lift-fma.f64N/A

        \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} + \left(-x\right) \cdot \frac{70711}{100000}} \]
      2. +-commutativeN/A

        \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}} \]
      3. lift-*.f64N/A

        \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000}} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
      4. lift-neg.f64N/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(x\right)\right)} \cdot \frac{70711}{100000} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(x \cdot \frac{70711}{100000}\right)\right)} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \color{blue}{x \cdot \left(\mathsf{neg}\left(\frac{70711}{100000}\right)\right)} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
      7. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left(x, \mathsf{neg}\left(\frac{70711}{100000}\right), \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}\right)} \]
      8. metadata-evalN/A

        \[\leadsto \mathsf{fma}\left(x, \color{blue}{\frac{-70711}{100000}}, \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}\right) \]
      9. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{70711}{100000} \cdot \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
      10. lift-/.f64N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{70711}{100000} \cdot \color{blue}{\frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
      11. associate-/l*N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{\frac{70711}{100000} \cdot \mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
      12. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{\frac{70711}{100000} \cdot \mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
      13. lift-fma.f64N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\frac{70711}{100000} \cdot \color{blue}{\left(\frac{27061}{100000} \cdot x + \frac{230753}{100000}\right)}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      14. distribute-lft-inN/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\frac{70711}{100000} \cdot \left(\frac{27061}{100000} \cdot x\right) + \frac{70711}{100000} \cdot \frac{230753}{100000}}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      15. associate-*r*N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\left(\frac{70711}{100000} \cdot \frac{27061}{100000}\right) \cdot x} + \frac{70711}{100000} \cdot \frac{230753}{100000}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      16. metadata-evalN/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\left(\frac{70711}{100000} \cdot \frac{27061}{100000}\right) \cdot x + \color{blue}{\frac{16316775383}{10000000000}}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      17. lower-fma.f64N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\mathsf{fma}\left(\frac{70711}{100000} \cdot \frac{27061}{100000}, x, \frac{16316775383}{10000000000}\right)}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      18. metadata-eval99.9

        \[\leadsto \mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(\color{blue}{0.1913510371}, x, 1.6316775383\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}\right) \]
    4. Applied rewrites99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(0.1913510371, x, 1.6316775383\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}\right)} \]
    5. Taylor expanded in x around inf

      \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{\frac{1913510371}{448100000}}{x}}\right) \]
    6. Step-by-step derivation
      1. lower-/.f6450.1

        \[\leadsto \mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175}{\color{blue}{x}}\right) \]
    7. Applied rewrites50.1%

      \[\leadsto \mathsf{fma}\left(x, -0.70711, \color{blue}{\frac{4.2702753202410175}{x}}\right) \]

    if -1 < (*.f64 #s(literal 70711/100000 binary64) (-.f64 (/.f64 (+.f64 #s(literal 230753/100000 binary64) (*.f64 x #s(literal 27061/100000 binary64))) (+.f64 #s(literal 1 binary64) (*.f64 x (+.f64 #s(literal 99229/100000 binary64) (*.f64 x #s(literal 4481/100000 binary64)))))) x)) < 2

    1. Initial program 99.9%

      \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
    2. Applied rewrites99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\mathsf{fma}\left(0.27061, x, 2.30753\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}, 0.70711, \left(-x\right) \cdot 0.70711\right)} \]
    3. Taylor expanded in x around 0

      \[\leadsto \color{blue}{\frac{16316775383}{10000000000} + x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right)} \]
    4. Step-by-step derivation
      1. lower-+.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + \color{blue}{x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right)} \]
      2. lower-*.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + x \cdot \color{blue}{\left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right)} \]
      3. lower--.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \color{blue}{\frac{2134856267379707}{1000000000000000}}\right) \]
      4. lower-*.f6452.5

        \[\leadsto 1.6316775383 + x \cdot \left(1.3436228731669864 \cdot x - 2.134856267379707\right) \]
    5. Applied rewrites52.5%

      \[\leadsto \color{blue}{1.6316775383 + x \cdot \left(1.3436228731669864 \cdot x - 2.134856267379707\right)} \]
    6. Step-by-step derivation
      1. lift-+.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + \color{blue}{x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right)} \]
      2. +-commutativeN/A

        \[\leadsto x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right) + \color{blue}{\frac{16316775383}{10000000000}} \]
      3. lift-*.f64N/A

        \[\leadsto x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right) + \frac{16316775383}{10000000000} \]
      4. lift--.f64N/A

        \[\leadsto x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right) + \frac{16316775383}{10000000000} \]
      5. sub-flipN/A

        \[\leadsto x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x + \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right)\right) + \frac{16316775383}{10000000000} \]
      6. distribute-rgt-inN/A

        \[\leadsto \left(\left(\frac{134362287316698645903}{100000000000000000000} \cdot x\right) \cdot x + \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right) \cdot x\right) + \frac{16316775383}{10000000000} \]
      7. associate-+l+N/A

        \[\leadsto \left(\frac{134362287316698645903}{100000000000000000000} \cdot x\right) \cdot x + \color{blue}{\left(\left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right) \cdot x + \frac{16316775383}{10000000000}\right)} \]
      8. *-commutativeN/A

        \[\leadsto \left(\frac{134362287316698645903}{100000000000000000000} \cdot x\right) \cdot x + \left(x \cdot \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right) + \frac{16316775383}{10000000000}\right) \]
      9. associate-+l+N/A

        \[\leadsto \left(\left(\frac{134362287316698645903}{100000000000000000000} \cdot x\right) \cdot x + x \cdot \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right)\right) + \color{blue}{\frac{16316775383}{10000000000}} \]
      10. *-commutativeN/A

        \[\leadsto \left(\left(\frac{134362287316698645903}{100000000000000000000} \cdot x\right) \cdot x + \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right) \cdot x\right) + \frac{16316775383}{10000000000} \]
      11. distribute-rgt-inN/A

        \[\leadsto x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x + \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right)\right) + \frac{16316775383}{10000000000} \]
      12. sub-flipN/A

        \[\leadsto x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right) + \frac{16316775383}{10000000000} \]
      13. lift--.f64N/A

        \[\leadsto x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right) + \frac{16316775383}{10000000000} \]
      14. *-commutativeN/A

        \[\leadsto \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right) \cdot x + \frac{16316775383}{10000000000} \]
      15. lower-fma.f6452.5

        \[\leadsto \mathsf{fma}\left(1.3436228731669864 \cdot x - 2.134856267379707, \color{blue}{x}, 1.6316775383\right) \]
      16. lift--.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}, x, \frac{16316775383}{10000000000}\right) \]
      17. sub-flipN/A

        \[\leadsto \mathsf{fma}\left(\frac{134362287316698645903}{100000000000000000000} \cdot x + \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right), x, \frac{16316775383}{10000000000}\right) \]
      18. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{134362287316698645903}{100000000000000000000} \cdot x + \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right), x, \frac{16316775383}{10000000000}\right) \]
      19. lower-fma.f64N/A

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{134362287316698645903}{100000000000000000000}, x, \mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right), x, \frac{16316775383}{10000000000}\right) \]
      20. metadata-eval52.5

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(1.3436228731669864, x, -2.134856267379707\right), x, 1.6316775383\right) \]
    7. Applied rewrites52.5%

      \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(1.3436228731669864, x, -2.134856267379707\right), \color{blue}{x}, 1.6316775383\right) \]

    if 2 < (*.f64 #s(literal 70711/100000 binary64) (-.f64 (/.f64 (+.f64 #s(literal 230753/100000 binary64) (*.f64 x #s(literal 27061/100000 binary64))) (+.f64 #s(literal 1 binary64) (*.f64 x (+.f64 #s(literal 99229/100000 binary64) (*.f64 x #s(literal 4481/100000 binary64)))))) x))

    1. Initial program 99.9%

      \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
    2. Applied rewrites99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(-x, 0.70711, \frac{0.70711}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)} \cdot \mathsf{fma}\left(0.27061, x, 2.30753\right)\right)} \]
    3. Taylor expanded in x around inf

      \[\leadsto \mathsf{fma}\left(-x, \frac{70711}{100000}, \color{blue}{\frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}}\right) \]
    4. Step-by-step derivation
      1. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(-x, \frac{70711}{100000}, \frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{\color{blue}{x}}\right) \]
      2. lower--.f64N/A

        \[\leadsto \mathsf{fma}\left(-x, \frac{70711}{100000}, \frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}\right) \]
      3. lower-*.f64N/A

        \[\leadsto \mathsf{fma}\left(-x, \frac{70711}{100000}, \frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}\right) \]
      4. lower-/.f6448.9

        \[\leadsto \mathsf{fma}\left(-x, 0.70711, \frac{4.2702753202410175 - 58.14938538768042 \cdot \frac{1}{x}}{x}\right) \]
    5. Applied rewrites48.9%

      \[\leadsto \mathsf{fma}\left(-x, 0.70711, \color{blue}{\frac{4.2702753202410175 - 58.14938538768042 \cdot \frac{1}{x}}{x}}\right) \]
    6. Step-by-step derivation
      1. lift-fma.f64N/A

        \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000} + \frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}} \]
      2. add-flipN/A

        \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000} - \left(\mathsf{neg}\left(\frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}\right)\right)} \]
      3. sub-flipN/A

        \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000} + \left(\mathsf{neg}\left(\left(\mathsf{neg}\left(\frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}\right)\right)\right)\right)} \]
      4. lift-neg.f64N/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(x\right)\right)} \cdot \frac{70711}{100000} + \left(\mathsf{neg}\left(\left(\mathsf{neg}\left(\frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}\right)\right)\right)\right) \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(x \cdot \frac{70711}{100000}\right)\right)} + \left(\mathsf{neg}\left(\left(\mathsf{neg}\left(\frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}\right)\right)\right)\right) \]
      6. distribute-rgt-neg-outN/A

        \[\leadsto \color{blue}{x \cdot \left(\mathsf{neg}\left(\frac{70711}{100000}\right)\right)} + \left(\mathsf{neg}\left(\left(\mathsf{neg}\left(\frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}\right)\right)\right)\right) \]
      7. metadata-evalN/A

        \[\leadsto x \cdot \color{blue}{\frac{-70711}{100000}} + \left(\mathsf{neg}\left(\left(\mathsf{neg}\left(\frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}\right)\right)\right)\right) \]
      8. remove-double-negN/A

        \[\leadsto x \cdot \frac{-70711}{100000} + \color{blue}{\frac{\frac{1913510371}{448100000} - \frac{3648757816023}{62748003125} \cdot \frac{1}{x}}{x}} \]
      9. lower-fma.f6448.9

        \[\leadsto \color{blue}{\mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175 - 58.14938538768042 \cdot \frac{1}{x}}{x}\right)} \]
    7. Applied rewrites48.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175 - \frac{58.14938538768042}{x}}{x}\right)} \]
  3. Recombined 3 regimes into one program.
  4. Add Preprocessing

Alternative 4: 99.1% accurate, 0.4× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := 0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right)\\ t_1 := \mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175}{x}\right)\\ \mathbf{if}\;t\_0 \leq -1:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t\_0 \leq 2:\\ \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(1.3436228731669864, x, -2.134856267379707\right), x, 1.6316775383\right)\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
(FPCore (x)
 :precision binary64
 (let* ((t_0
         (*
          0.70711
          (-
           (/
            (+ 2.30753 (* x 0.27061))
            (+ 1.0 (* x (+ 0.99229 (* x 0.04481)))))
           x)))
        (t_1 (fma x -0.70711 (/ 4.2702753202410175 x))))
   (if (<= t_0 -1.0)
     t_1
     (if (<= t_0 2.0)
       (fma (fma 1.3436228731669864 x -2.134856267379707) x 1.6316775383)
       t_1))))
double code(double x) {
	double t_0 = 0.70711 * (((2.30753 + (x * 0.27061)) / (1.0 + (x * (0.99229 + (x * 0.04481))))) - x);
	double t_1 = fma(x, -0.70711, (4.2702753202410175 / x));
	double tmp;
	if (t_0 <= -1.0) {
		tmp = t_1;
	} else if (t_0 <= 2.0) {
		tmp = fma(fma(1.3436228731669864, x, -2.134856267379707), x, 1.6316775383);
	} else {
		tmp = t_1;
	}
	return tmp;
}
function code(x)
	t_0 = Float64(0.70711 * Float64(Float64(Float64(2.30753 + Float64(x * 0.27061)) / Float64(1.0 + Float64(x * Float64(0.99229 + Float64(x * 0.04481))))) - x))
	t_1 = fma(x, -0.70711, Float64(4.2702753202410175 / x))
	tmp = 0.0
	if (t_0 <= -1.0)
		tmp = t_1;
	elseif (t_0 <= 2.0)
		tmp = fma(fma(1.3436228731669864, x, -2.134856267379707), x, 1.6316775383);
	else
		tmp = t_1;
	end
	return tmp
end
code[x_] := Block[{t$95$0 = N[(0.70711 * N[(N[(N[(2.30753 + N[(x * 0.27061), $MachinePrecision]), $MachinePrecision] / N[(1.0 + N[(x * N[(0.99229 + N[(x * 0.04481), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - x), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[(x * -0.70711 + N[(4.2702753202410175 / x), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$0, -1.0], t$95$1, If[LessEqual[t$95$0, 2.0], N[(N[(1.3436228731669864 * x + -2.134856267379707), $MachinePrecision] * x + 1.6316775383), $MachinePrecision], t$95$1]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := 0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right)\\
t_1 := \mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175}{x}\right)\\
\mathbf{if}\;t\_0 \leq -1:\\
\;\;\;\;t\_1\\

\mathbf{elif}\;t\_0 \leq 2:\\
\;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(1.3436228731669864, x, -2.134856267379707\right), x, 1.6316775383\right)\\

\mathbf{else}:\\
\;\;\;\;t\_1\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 #s(literal 70711/100000 binary64) (-.f64 (/.f64 (+.f64 #s(literal 230753/100000 binary64) (*.f64 x #s(literal 27061/100000 binary64))) (+.f64 #s(literal 1 binary64) (*.f64 x (+.f64 #s(literal 99229/100000 binary64) (*.f64 x #s(literal 4481/100000 binary64)))))) x)) < -1 or 2 < (*.f64 #s(literal 70711/100000 binary64) (-.f64 (/.f64 (+.f64 #s(literal 230753/100000 binary64) (*.f64 x #s(literal 27061/100000 binary64))) (+.f64 #s(literal 1 binary64) (*.f64 x (+.f64 #s(literal 99229/100000 binary64) (*.f64 x #s(literal 4481/100000 binary64)))))) x))

    1. Initial program 99.9%

      \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
    2. Applied rewrites99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\mathsf{fma}\left(0.27061, x, 2.30753\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}, 0.70711, \left(-x\right) \cdot 0.70711\right)} \]
    3. Step-by-step derivation
      1. lift-fma.f64N/A

        \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} + \left(-x\right) \cdot \frac{70711}{100000}} \]
      2. +-commutativeN/A

        \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}} \]
      3. lift-*.f64N/A

        \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000}} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
      4. lift-neg.f64N/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(x\right)\right)} \cdot \frac{70711}{100000} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(x \cdot \frac{70711}{100000}\right)\right)} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \color{blue}{x \cdot \left(\mathsf{neg}\left(\frac{70711}{100000}\right)\right)} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
      7. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left(x, \mathsf{neg}\left(\frac{70711}{100000}\right), \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}\right)} \]
      8. metadata-evalN/A

        \[\leadsto \mathsf{fma}\left(x, \color{blue}{\frac{-70711}{100000}}, \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}\right) \]
      9. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{70711}{100000} \cdot \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
      10. lift-/.f64N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{70711}{100000} \cdot \color{blue}{\frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
      11. associate-/l*N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{\frac{70711}{100000} \cdot \mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
      12. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{\frac{70711}{100000} \cdot \mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
      13. lift-fma.f64N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\frac{70711}{100000} \cdot \color{blue}{\left(\frac{27061}{100000} \cdot x + \frac{230753}{100000}\right)}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      14. distribute-lft-inN/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\frac{70711}{100000} \cdot \left(\frac{27061}{100000} \cdot x\right) + \frac{70711}{100000} \cdot \frac{230753}{100000}}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      15. associate-*r*N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\left(\frac{70711}{100000} \cdot \frac{27061}{100000}\right) \cdot x} + \frac{70711}{100000} \cdot \frac{230753}{100000}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      16. metadata-evalN/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\left(\frac{70711}{100000} \cdot \frac{27061}{100000}\right) \cdot x + \color{blue}{\frac{16316775383}{10000000000}}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      17. lower-fma.f64N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\mathsf{fma}\left(\frac{70711}{100000} \cdot \frac{27061}{100000}, x, \frac{16316775383}{10000000000}\right)}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      18. metadata-eval99.9

        \[\leadsto \mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(\color{blue}{0.1913510371}, x, 1.6316775383\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}\right) \]
    4. Applied rewrites99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(0.1913510371, x, 1.6316775383\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}\right)} \]
    5. Taylor expanded in x around inf

      \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{\frac{1913510371}{448100000}}{x}}\right) \]
    6. Step-by-step derivation
      1. lower-/.f6450.1

        \[\leadsto \mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175}{\color{blue}{x}}\right) \]
    7. Applied rewrites50.1%

      \[\leadsto \mathsf{fma}\left(x, -0.70711, \color{blue}{\frac{4.2702753202410175}{x}}\right) \]

    if -1 < (*.f64 #s(literal 70711/100000 binary64) (-.f64 (/.f64 (+.f64 #s(literal 230753/100000 binary64) (*.f64 x #s(literal 27061/100000 binary64))) (+.f64 #s(literal 1 binary64) (*.f64 x (+.f64 #s(literal 99229/100000 binary64) (*.f64 x #s(literal 4481/100000 binary64)))))) x)) < 2

    1. Initial program 99.9%

      \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
    2. Applied rewrites99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\mathsf{fma}\left(0.27061, x, 2.30753\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}, 0.70711, \left(-x\right) \cdot 0.70711\right)} \]
    3. Taylor expanded in x around 0

      \[\leadsto \color{blue}{\frac{16316775383}{10000000000} + x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right)} \]
    4. Step-by-step derivation
      1. lower-+.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + \color{blue}{x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right)} \]
      2. lower-*.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + x \cdot \color{blue}{\left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right)} \]
      3. lower--.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \color{blue}{\frac{2134856267379707}{1000000000000000}}\right) \]
      4. lower-*.f6452.5

        \[\leadsto 1.6316775383 + x \cdot \left(1.3436228731669864 \cdot x - 2.134856267379707\right) \]
    5. Applied rewrites52.5%

      \[\leadsto \color{blue}{1.6316775383 + x \cdot \left(1.3436228731669864 \cdot x - 2.134856267379707\right)} \]
    6. Step-by-step derivation
      1. lift-+.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + \color{blue}{x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right)} \]
      2. +-commutativeN/A

        \[\leadsto x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right) + \color{blue}{\frac{16316775383}{10000000000}} \]
      3. lift-*.f64N/A

        \[\leadsto x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right) + \frac{16316775383}{10000000000} \]
      4. lift--.f64N/A

        \[\leadsto x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right) + \frac{16316775383}{10000000000} \]
      5. sub-flipN/A

        \[\leadsto x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x + \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right)\right) + \frac{16316775383}{10000000000} \]
      6. distribute-rgt-inN/A

        \[\leadsto \left(\left(\frac{134362287316698645903}{100000000000000000000} \cdot x\right) \cdot x + \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right) \cdot x\right) + \frac{16316775383}{10000000000} \]
      7. associate-+l+N/A

        \[\leadsto \left(\frac{134362287316698645903}{100000000000000000000} \cdot x\right) \cdot x + \color{blue}{\left(\left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right) \cdot x + \frac{16316775383}{10000000000}\right)} \]
      8. *-commutativeN/A

        \[\leadsto \left(\frac{134362287316698645903}{100000000000000000000} \cdot x\right) \cdot x + \left(x \cdot \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right) + \frac{16316775383}{10000000000}\right) \]
      9. associate-+l+N/A

        \[\leadsto \left(\left(\frac{134362287316698645903}{100000000000000000000} \cdot x\right) \cdot x + x \cdot \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right)\right) + \color{blue}{\frac{16316775383}{10000000000}} \]
      10. *-commutativeN/A

        \[\leadsto \left(\left(\frac{134362287316698645903}{100000000000000000000} \cdot x\right) \cdot x + \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right) \cdot x\right) + \frac{16316775383}{10000000000} \]
      11. distribute-rgt-inN/A

        \[\leadsto x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x + \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right)\right) + \frac{16316775383}{10000000000} \]
      12. sub-flipN/A

        \[\leadsto x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right) + \frac{16316775383}{10000000000} \]
      13. lift--.f64N/A

        \[\leadsto x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right) + \frac{16316775383}{10000000000} \]
      14. *-commutativeN/A

        \[\leadsto \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right) \cdot x + \frac{16316775383}{10000000000} \]
      15. lower-fma.f6452.5

        \[\leadsto \mathsf{fma}\left(1.3436228731669864 \cdot x - 2.134856267379707, \color{blue}{x}, 1.6316775383\right) \]
      16. lift--.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}, x, \frac{16316775383}{10000000000}\right) \]
      17. sub-flipN/A

        \[\leadsto \mathsf{fma}\left(\frac{134362287316698645903}{100000000000000000000} \cdot x + \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right), x, \frac{16316775383}{10000000000}\right) \]
      18. lift-*.f64N/A

        \[\leadsto \mathsf{fma}\left(\frac{134362287316698645903}{100000000000000000000} \cdot x + \left(\mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right), x, \frac{16316775383}{10000000000}\right) \]
      19. lower-fma.f64N/A

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(\frac{134362287316698645903}{100000000000000000000}, x, \mathsf{neg}\left(\frac{2134856267379707}{1000000000000000}\right)\right), x, \frac{16316775383}{10000000000}\right) \]
      20. metadata-eval52.5

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(1.3436228731669864, x, -2.134856267379707\right), x, 1.6316775383\right) \]
    7. Applied rewrites52.5%

      \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(1.3436228731669864, x, -2.134856267379707\right), \color{blue}{x}, 1.6316775383\right) \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 5: 98.9% accurate, 1.6× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175}{x}\right)\\ \mathbf{if}\;x \leq -1.05:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;x \leq 2.8:\\ \;\;\;\;\mathsf{fma}\left(-2.134856267379707, x, 1.6316775383\right)\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
(FPCore (x)
 :precision binary64
 (let* ((t_0 (fma x -0.70711 (/ 4.2702753202410175 x))))
   (if (<= x -1.05)
     t_0
     (if (<= x 2.8) (fma -2.134856267379707 x 1.6316775383) t_0))))
double code(double x) {
	double t_0 = fma(x, -0.70711, (4.2702753202410175 / x));
	double tmp;
	if (x <= -1.05) {
		tmp = t_0;
	} else if (x <= 2.8) {
		tmp = fma(-2.134856267379707, x, 1.6316775383);
	} else {
		tmp = t_0;
	}
	return tmp;
}
function code(x)
	t_0 = fma(x, -0.70711, Float64(4.2702753202410175 / x))
	tmp = 0.0
	if (x <= -1.05)
		tmp = t_0;
	elseif (x <= 2.8)
		tmp = fma(-2.134856267379707, x, 1.6316775383);
	else
		tmp = t_0;
	end
	return tmp
end
code[x_] := Block[{t$95$0 = N[(x * -0.70711 + N[(4.2702753202410175 / x), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x, -1.05], t$95$0, If[LessEqual[x, 2.8], N[(-2.134856267379707 * x + 1.6316775383), $MachinePrecision], t$95$0]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175}{x}\right)\\
\mathbf{if}\;x \leq -1.05:\\
\;\;\;\;t\_0\\

\mathbf{elif}\;x \leq 2.8:\\
\;\;\;\;\mathsf{fma}\left(-2.134856267379707, x, 1.6316775383\right)\\

\mathbf{else}:\\
\;\;\;\;t\_0\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < -1.05000000000000004 or 2.7999999999999998 < x

    1. Initial program 99.9%

      \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
    2. Applied rewrites99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\mathsf{fma}\left(0.27061, x, 2.30753\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}, 0.70711, \left(-x\right) \cdot 0.70711\right)} \]
    3. Step-by-step derivation
      1. lift-fma.f64N/A

        \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} + \left(-x\right) \cdot \frac{70711}{100000}} \]
      2. +-commutativeN/A

        \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}} \]
      3. lift-*.f64N/A

        \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000}} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
      4. lift-neg.f64N/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(x\right)\right)} \cdot \frac{70711}{100000} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(x \cdot \frac{70711}{100000}\right)\right)} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \color{blue}{x \cdot \left(\mathsf{neg}\left(\frac{70711}{100000}\right)\right)} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
      7. lower-fma.f64N/A

        \[\leadsto \color{blue}{\mathsf{fma}\left(x, \mathsf{neg}\left(\frac{70711}{100000}\right), \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}\right)} \]
      8. metadata-evalN/A

        \[\leadsto \mathsf{fma}\left(x, \color{blue}{\frac{-70711}{100000}}, \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}\right) \]
      9. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{70711}{100000} \cdot \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
      10. lift-/.f64N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{70711}{100000} \cdot \color{blue}{\frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
      11. associate-/l*N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{\frac{70711}{100000} \cdot \mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
      12. lower-/.f64N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{\frac{70711}{100000} \cdot \mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
      13. lift-fma.f64N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\frac{70711}{100000} \cdot \color{blue}{\left(\frac{27061}{100000} \cdot x + \frac{230753}{100000}\right)}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      14. distribute-lft-inN/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\frac{70711}{100000} \cdot \left(\frac{27061}{100000} \cdot x\right) + \frac{70711}{100000} \cdot \frac{230753}{100000}}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      15. associate-*r*N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\left(\frac{70711}{100000} \cdot \frac{27061}{100000}\right) \cdot x} + \frac{70711}{100000} \cdot \frac{230753}{100000}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      16. metadata-evalN/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\left(\frac{70711}{100000} \cdot \frac{27061}{100000}\right) \cdot x + \color{blue}{\frac{16316775383}{10000000000}}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      17. lower-fma.f64N/A

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\mathsf{fma}\left(\frac{70711}{100000} \cdot \frac{27061}{100000}, x, \frac{16316775383}{10000000000}\right)}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
      18. metadata-eval99.9

        \[\leadsto \mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(\color{blue}{0.1913510371}, x, 1.6316775383\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}\right) \]
    4. Applied rewrites99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(0.1913510371, x, 1.6316775383\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}\right)} \]
    5. Taylor expanded in x around inf

      \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{\frac{1913510371}{448100000}}{x}}\right) \]
    6. Step-by-step derivation
      1. lower-/.f6450.1

        \[\leadsto \mathsf{fma}\left(x, -0.70711, \frac{4.2702753202410175}{\color{blue}{x}}\right) \]
    7. Applied rewrites50.1%

      \[\leadsto \mathsf{fma}\left(x, -0.70711, \color{blue}{\frac{4.2702753202410175}{x}}\right) \]

    if -1.05000000000000004 < x < 2.7999999999999998

    1. Initial program 99.9%

      \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
    2. Applied rewrites99.9%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\mathsf{fma}\left(0.27061, x, 2.30753\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}, 0.70711, \left(-x\right) \cdot 0.70711\right)} \]
    3. Taylor expanded in x around 0

      \[\leadsto \color{blue}{\frac{16316775383}{10000000000} + x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right)} \]
    4. Step-by-step derivation
      1. lower-+.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + \color{blue}{x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right)} \]
      2. lower-*.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + x \cdot \color{blue}{\left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right)} \]
      3. lower--.f64N/A

        \[\leadsto \frac{16316775383}{10000000000} + x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \color{blue}{\frac{2134856267379707}{1000000000000000}}\right) \]
      4. lower-*.f6452.5

        \[\leadsto 1.6316775383 + x \cdot \left(1.3436228731669864 \cdot x - 2.134856267379707\right) \]
    5. Applied rewrites52.5%

      \[\leadsto \color{blue}{1.6316775383 + x \cdot \left(1.3436228731669864 \cdot x - 2.134856267379707\right)} \]
    6. Taylor expanded in x around 0

      \[\leadsto \frac{16316775383}{10000000000} + x \cdot \frac{-2134856267379707}{1000000000000000} \]
    7. Step-by-step derivation
      1. Applied rewrites59.2%

        \[\leadsto 1.6316775383 + x \cdot -2.134856267379707 \]
      2. Step-by-step derivation
        1. lift-+.f64N/A

          \[\leadsto \frac{16316775383}{10000000000} + \color{blue}{x \cdot \frac{-2134856267379707}{1000000000000000}} \]
        2. +-commutativeN/A

          \[\leadsto x \cdot \frac{-2134856267379707}{1000000000000000} + \color{blue}{\frac{16316775383}{10000000000}} \]
        3. lift-*.f64N/A

          \[\leadsto x \cdot \frac{-2134856267379707}{1000000000000000} + \frac{16316775383}{10000000000} \]
        4. *-commutativeN/A

          \[\leadsto \frac{-2134856267379707}{1000000000000000} \cdot x + \frac{16316775383}{10000000000} \]
        5. lower-fma.f6459.2

          \[\leadsto \mathsf{fma}\left(-2.134856267379707, \color{blue}{x}, 1.6316775383\right) \]
      3. Applied rewrites59.2%

        \[\leadsto \mathsf{fma}\left(-2.134856267379707, \color{blue}{x}, 1.6316775383\right) \]
    8. Recombined 2 regimes into one program.
    9. Add Preprocessing

    Alternative 6: 98.8% accurate, 2.0× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -1.05:\\ \;\;\;\;-0.70711 \cdot x\\ \mathbf{elif}\;x \leq 1.15:\\ \;\;\;\;\mathsf{fma}\left(-2.134856267379707, x, 1.6316775383\right)\\ \mathbf{else}:\\ \;\;\;\;-0.70711 \cdot x\\ \end{array} \end{array} \]
    (FPCore (x)
     :precision binary64
     (if (<= x -1.05)
       (* -0.70711 x)
       (if (<= x 1.15) (fma -2.134856267379707 x 1.6316775383) (* -0.70711 x))))
    double code(double x) {
    	double tmp;
    	if (x <= -1.05) {
    		tmp = -0.70711 * x;
    	} else if (x <= 1.15) {
    		tmp = fma(-2.134856267379707, x, 1.6316775383);
    	} else {
    		tmp = -0.70711 * x;
    	}
    	return tmp;
    }
    
    function code(x)
    	tmp = 0.0
    	if (x <= -1.05)
    		tmp = Float64(-0.70711 * x);
    	elseif (x <= 1.15)
    		tmp = fma(-2.134856267379707, x, 1.6316775383);
    	else
    		tmp = Float64(-0.70711 * x);
    	end
    	return tmp
    end
    
    code[x_] := If[LessEqual[x, -1.05], N[(-0.70711 * x), $MachinePrecision], If[LessEqual[x, 1.15], N[(-2.134856267379707 * x + 1.6316775383), $MachinePrecision], N[(-0.70711 * x), $MachinePrecision]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    \mathbf{if}\;x \leq -1.05:\\
    \;\;\;\;-0.70711 \cdot x\\
    
    \mathbf{elif}\;x \leq 1.15:\\
    \;\;\;\;\mathsf{fma}\left(-2.134856267379707, x, 1.6316775383\right)\\
    
    \mathbf{else}:\\
    \;\;\;\;-0.70711 \cdot x\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 2 regimes
    2. if x < -1.05000000000000004 or 1.1499999999999999 < x

      1. Initial program 99.9%

        \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
      2. Taylor expanded in x around inf

        \[\leadsto \color{blue}{\frac{-70711}{100000} \cdot x} \]
      3. Step-by-step derivation
        1. lower-*.f6450.2

          \[\leadsto -0.70711 \cdot \color{blue}{x} \]
      4. Applied rewrites50.2%

        \[\leadsto \color{blue}{-0.70711 \cdot x} \]

      if -1.05000000000000004 < x < 1.1499999999999999

      1. Initial program 99.9%

        \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
      2. Applied rewrites99.9%

        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\mathsf{fma}\left(0.27061, x, 2.30753\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}, 0.70711, \left(-x\right) \cdot 0.70711\right)} \]
      3. Taylor expanded in x around 0

        \[\leadsto \color{blue}{\frac{16316775383}{10000000000} + x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right)} \]
      4. Step-by-step derivation
        1. lower-+.f64N/A

          \[\leadsto \frac{16316775383}{10000000000} + \color{blue}{x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right)} \]
        2. lower-*.f64N/A

          \[\leadsto \frac{16316775383}{10000000000} + x \cdot \color{blue}{\left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \frac{2134856267379707}{1000000000000000}\right)} \]
        3. lower--.f64N/A

          \[\leadsto \frac{16316775383}{10000000000} + x \cdot \left(\frac{134362287316698645903}{100000000000000000000} \cdot x - \color{blue}{\frac{2134856267379707}{1000000000000000}}\right) \]
        4. lower-*.f6452.5

          \[\leadsto 1.6316775383 + x \cdot \left(1.3436228731669864 \cdot x - 2.134856267379707\right) \]
      5. Applied rewrites52.5%

        \[\leadsto \color{blue}{1.6316775383 + x \cdot \left(1.3436228731669864 \cdot x - 2.134856267379707\right)} \]
      6. Taylor expanded in x around 0

        \[\leadsto \frac{16316775383}{10000000000} + x \cdot \frac{-2134856267379707}{1000000000000000} \]
      7. Step-by-step derivation
        1. Applied rewrites59.2%

          \[\leadsto 1.6316775383 + x \cdot -2.134856267379707 \]
        2. Step-by-step derivation
          1. lift-+.f64N/A

            \[\leadsto \frac{16316775383}{10000000000} + \color{blue}{x \cdot \frac{-2134856267379707}{1000000000000000}} \]
          2. +-commutativeN/A

            \[\leadsto x \cdot \frac{-2134856267379707}{1000000000000000} + \color{blue}{\frac{16316775383}{10000000000}} \]
          3. lift-*.f64N/A

            \[\leadsto x \cdot \frac{-2134856267379707}{1000000000000000} + \frac{16316775383}{10000000000} \]
          4. *-commutativeN/A

            \[\leadsto \frac{-2134856267379707}{1000000000000000} \cdot x + \frac{16316775383}{10000000000} \]
          5. lower-fma.f6459.2

            \[\leadsto \mathsf{fma}\left(-2.134856267379707, \color{blue}{x}, 1.6316775383\right) \]
        3. Applied rewrites59.2%

          \[\leadsto \mathsf{fma}\left(-2.134856267379707, \color{blue}{x}, 1.6316775383\right) \]
      8. Recombined 2 regimes into one program.
      9. Add Preprocessing

      Alternative 7: 98.5% accurate, 1.4× speedup?

      \[\begin{array}{l} \\ \mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(0.1913510371, x, 1.6316775383\right)}{\mathsf{fma}\left(0.99229, x, 1\right)}\right) \end{array} \]
      (FPCore (x)
       :precision binary64
       (fma x -0.70711 (/ (fma 0.1913510371 x 1.6316775383) (fma 0.99229 x 1.0))))
      double code(double x) {
      	return fma(x, -0.70711, (fma(0.1913510371, x, 1.6316775383) / fma(0.99229, x, 1.0)));
      }
      
      function code(x)
      	return fma(x, -0.70711, Float64(fma(0.1913510371, x, 1.6316775383) / fma(0.99229, x, 1.0)))
      end
      
      code[x_] := N[(x * -0.70711 + N[(N[(0.1913510371 * x + 1.6316775383), $MachinePrecision] / N[(0.99229 * x + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
      
      \begin{array}{l}
      
      \\
      \mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(0.1913510371, x, 1.6316775383\right)}{\mathsf{fma}\left(0.99229, x, 1\right)}\right)
      \end{array}
      
      Derivation
      1. Initial program 99.9%

        \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
      2. Applied rewrites99.9%

        \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{\mathsf{fma}\left(0.27061, x, 2.30753\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}, 0.70711, \left(-x\right) \cdot 0.70711\right)} \]
      3. Step-by-step derivation
        1. lift-fma.f64N/A

          \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} + \left(-x\right) \cdot \frac{70711}{100000}} \]
        2. +-commutativeN/A

          \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}} \]
        3. lift-*.f64N/A

          \[\leadsto \color{blue}{\left(-x\right) \cdot \frac{70711}{100000}} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
        4. lift-neg.f64N/A

          \[\leadsto \color{blue}{\left(\mathsf{neg}\left(x\right)\right)} \cdot \frac{70711}{100000} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
        5. distribute-lft-neg-outN/A

          \[\leadsto \color{blue}{\left(\mathsf{neg}\left(x \cdot \frac{70711}{100000}\right)\right)} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
        6. distribute-rgt-neg-inN/A

          \[\leadsto \color{blue}{x \cdot \left(\mathsf{neg}\left(\frac{70711}{100000}\right)\right)} + \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000} \]
        7. lower-fma.f64N/A

          \[\leadsto \color{blue}{\mathsf{fma}\left(x, \mathsf{neg}\left(\frac{70711}{100000}\right), \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}\right)} \]
        8. metadata-evalN/A

          \[\leadsto \mathsf{fma}\left(x, \color{blue}{\frac{-70711}{100000}}, \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)} \cdot \frac{70711}{100000}\right) \]
        9. *-commutativeN/A

          \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{70711}{100000} \cdot \frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
        10. lift-/.f64N/A

          \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{70711}{100000} \cdot \color{blue}{\frac{\mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
        11. associate-/l*N/A

          \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{\frac{70711}{100000} \cdot \mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
        12. lower-/.f64N/A

          \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \color{blue}{\frac{\frac{70711}{100000} \cdot \mathsf{fma}\left(\frac{27061}{100000}, x, \frac{230753}{100000}\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}}\right) \]
        13. lift-fma.f64N/A

          \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\frac{70711}{100000} \cdot \color{blue}{\left(\frac{27061}{100000} \cdot x + \frac{230753}{100000}\right)}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
        14. distribute-lft-inN/A

          \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\frac{70711}{100000} \cdot \left(\frac{27061}{100000} \cdot x\right) + \frac{70711}{100000} \cdot \frac{230753}{100000}}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
        15. associate-*r*N/A

          \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\left(\frac{70711}{100000} \cdot \frac{27061}{100000}\right) \cdot x} + \frac{70711}{100000} \cdot \frac{230753}{100000}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
        16. metadata-evalN/A

          \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\left(\frac{70711}{100000} \cdot \frac{27061}{100000}\right) \cdot x + \color{blue}{\frac{16316775383}{10000000000}}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
        17. lower-fma.f64N/A

          \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\color{blue}{\mathsf{fma}\left(\frac{70711}{100000} \cdot \frac{27061}{100000}, x, \frac{16316775383}{10000000000}\right)}}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{4481}{100000}, x, \frac{99229}{100000}\right), x, 1\right)}\right) \]
        18. metadata-eval99.9

          \[\leadsto \mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(\color{blue}{0.1913510371}, x, 1.6316775383\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}\right) \]
      4. Applied rewrites99.9%

        \[\leadsto \color{blue}{\mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(0.1913510371, x, 1.6316775383\right)}{\mathsf{fma}\left(\mathsf{fma}\left(0.04481, x, 0.99229\right), x, 1\right)}\right)} \]
      5. Taylor expanded in x around 0

        \[\leadsto \mathsf{fma}\left(x, \frac{-70711}{100000}, \frac{\mathsf{fma}\left(\frac{1913510371}{10000000000}, x, \frac{16316775383}{10000000000}\right)}{\mathsf{fma}\left(\color{blue}{\frac{99229}{100000}}, x, 1\right)}\right) \]
      6. Step-by-step derivation
        1. Applied rewrites98.5%

          \[\leadsto \mathsf{fma}\left(x, -0.70711, \frac{\mathsf{fma}\left(0.1913510371, x, 1.6316775383\right)}{\mathsf{fma}\left(\color{blue}{0.99229}, x, 1\right)}\right) \]
        2. Add Preprocessing

        Alternative 8: 98.2% accurate, 2.3× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq -1.05:\\ \;\;\;\;-0.70711 \cdot x\\ \mathbf{elif}\;x \leq 1.16:\\ \;\;\;\;1.6316775383\\ \mathbf{else}:\\ \;\;\;\;-0.70711 \cdot x\\ \end{array} \end{array} \]
        (FPCore (x)
         :precision binary64
         (if (<= x -1.05) (* -0.70711 x) (if (<= x 1.16) 1.6316775383 (* -0.70711 x))))
        double code(double x) {
        	double tmp;
        	if (x <= -1.05) {
        		tmp = -0.70711 * x;
        	} else if (x <= 1.16) {
        		tmp = 1.6316775383;
        	} else {
        		tmp = -0.70711 * x;
        	}
        	return tmp;
        }
        
        module fmin_fmax_functions
            implicit none
            private
            public fmax
            public fmin
        
            interface fmax
                module procedure fmax88
                module procedure fmax44
                module procedure fmax84
                module procedure fmax48
            end interface
            interface fmin
                module procedure fmin88
                module procedure fmin44
                module procedure fmin84
                module procedure fmin48
            end interface
        contains
            real(8) function fmax88(x, y) result (res)
                real(8), intent (in) :: x
                real(8), intent (in) :: y
                res = merge(y, merge(x, max(x, y), y /= y), x /= x)
            end function
            real(4) function fmax44(x, y) result (res)
                real(4), intent (in) :: x
                real(4), intent (in) :: y
                res = merge(y, merge(x, max(x, y), y /= y), x /= x)
            end function
            real(8) function fmax84(x, y) result(res)
                real(8), intent (in) :: x
                real(4), intent (in) :: y
                res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
            end function
            real(8) function fmax48(x, y) result(res)
                real(4), intent (in) :: x
                real(8), intent (in) :: y
                res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
            end function
            real(8) function fmin88(x, y) result (res)
                real(8), intent (in) :: x
                real(8), intent (in) :: y
                res = merge(y, merge(x, min(x, y), y /= y), x /= x)
            end function
            real(4) function fmin44(x, y) result (res)
                real(4), intent (in) :: x
                real(4), intent (in) :: y
                res = merge(y, merge(x, min(x, y), y /= y), x /= x)
            end function
            real(8) function fmin84(x, y) result(res)
                real(8), intent (in) :: x
                real(4), intent (in) :: y
                res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
            end function
            real(8) function fmin48(x, y) result(res)
                real(4), intent (in) :: x
                real(8), intent (in) :: y
                res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
            end function
        end module
        
        real(8) function code(x)
        use fmin_fmax_functions
            real(8), intent (in) :: x
            real(8) :: tmp
            if (x <= (-1.05d0)) then
                tmp = (-0.70711d0) * x
            else if (x <= 1.16d0) then
                tmp = 1.6316775383d0
            else
                tmp = (-0.70711d0) * x
            end if
            code = tmp
        end function
        
        public static double code(double x) {
        	double tmp;
        	if (x <= -1.05) {
        		tmp = -0.70711 * x;
        	} else if (x <= 1.16) {
        		tmp = 1.6316775383;
        	} else {
        		tmp = -0.70711 * x;
        	}
        	return tmp;
        }
        
        def code(x):
        	tmp = 0
        	if x <= -1.05:
        		tmp = -0.70711 * x
        	elif x <= 1.16:
        		tmp = 1.6316775383
        	else:
        		tmp = -0.70711 * x
        	return tmp
        
        function code(x)
        	tmp = 0.0
        	if (x <= -1.05)
        		tmp = Float64(-0.70711 * x);
        	elseif (x <= 1.16)
        		tmp = 1.6316775383;
        	else
        		tmp = Float64(-0.70711 * x);
        	end
        	return tmp
        end
        
        function tmp_2 = code(x)
        	tmp = 0.0;
        	if (x <= -1.05)
        		tmp = -0.70711 * x;
        	elseif (x <= 1.16)
        		tmp = 1.6316775383;
        	else
        		tmp = -0.70711 * x;
        	end
        	tmp_2 = tmp;
        end
        
        code[x_] := If[LessEqual[x, -1.05], N[(-0.70711 * x), $MachinePrecision], If[LessEqual[x, 1.16], 1.6316775383, N[(-0.70711 * x), $MachinePrecision]]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        \mathbf{if}\;x \leq -1.05:\\
        \;\;\;\;-0.70711 \cdot x\\
        
        \mathbf{elif}\;x \leq 1.16:\\
        \;\;\;\;1.6316775383\\
        
        \mathbf{else}:\\
        \;\;\;\;-0.70711 \cdot x\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 2 regimes
        2. if x < -1.05000000000000004 or 1.15999999999999992 < x

          1. Initial program 99.9%

            \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
          2. Taylor expanded in x around inf

            \[\leadsto \color{blue}{\frac{-70711}{100000} \cdot x} \]
          3. Step-by-step derivation
            1. lower-*.f6450.2

              \[\leadsto -0.70711 \cdot \color{blue}{x} \]
          4. Applied rewrites50.2%

            \[\leadsto \color{blue}{-0.70711 \cdot x} \]

          if -1.05000000000000004 < x < 1.15999999999999992

          1. Initial program 99.9%

            \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
          2. Taylor expanded in x around 0

            \[\leadsto \color{blue}{\frac{16316775383}{10000000000}} \]
          3. Step-by-step derivation
            1. Applied rewrites51.5%

              \[\leadsto \color{blue}{1.6316775383} \]
          4. Recombined 2 regimes into one program.
          5. Add Preprocessing

          Alternative 9: 51.5% accurate, 27.0× speedup?

          \[\begin{array}{l} \\ 1.6316775383 \end{array} \]
          (FPCore (x) :precision binary64 1.6316775383)
          double code(double x) {
          	return 1.6316775383;
          }
          
          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)
          use fmin_fmax_functions
              real(8), intent (in) :: x
              code = 1.6316775383d0
          end function
          
          public static double code(double x) {
          	return 1.6316775383;
          }
          
          def code(x):
          	return 1.6316775383
          
          function code(x)
          	return 1.6316775383
          end
          
          function tmp = code(x)
          	tmp = 1.6316775383;
          end
          
          code[x_] := 1.6316775383
          
          \begin{array}{l}
          
          \\
          1.6316775383
          \end{array}
          
          Derivation
          1. Initial program 99.9%

            \[0.70711 \cdot \left(\frac{2.30753 + x \cdot 0.27061}{1 + x \cdot \left(0.99229 + x \cdot 0.04481\right)} - x\right) \]
          2. Taylor expanded in x around 0

            \[\leadsto \color{blue}{\frac{16316775383}{10000000000}} \]
          3. Step-by-step derivation
            1. Applied rewrites51.5%

              \[\leadsto \color{blue}{1.6316775383} \]
            2. Add Preprocessing

            Reproduce

            ?
            herbie shell --seed 2025143 
            (FPCore (x)
              :name "Numeric.SpecFunctions:invErfc from math-functions-0.1.5.2, B"
              :precision binary64
              (* 0.70711 (- (/ (+ 2.30753 (* x 0.27061)) (+ 1.0 (* x (+ 0.99229 (* x 0.04481))))) x)))