Numeric.SpecFunctions:$slogFactorial from math-functions-0.1.5.2, B

Percentage Accurate: 93.5% → 99.6%
Time: 8.6s
Alternatives: 16
Speedup: 1.0×

Specification

?
\[\begin{array}{l} \\ \left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (+
  (+ (- (* (- x 0.5) (log x)) x) 0.91893853320467)
  (/
   (+
    (* (- (* (+ y 0.0007936500793651) z) 0.0027777777777778) z)
    0.083333333333333)
   x)))
double code(double x, double y, double z) {
	return ((((x - 0.5) * log(x)) - x) + 0.91893853320467) + ((((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / 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, y, z)
use fmin_fmax_functions
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = ((((x - 0.5d0) * log(x)) - x) + 0.91893853320467d0) + ((((((y + 0.0007936500793651d0) * z) - 0.0027777777777778d0) * z) + 0.083333333333333d0) / x)
end function
public static double code(double x, double y, double z) {
	return ((((x - 0.5) * Math.log(x)) - x) + 0.91893853320467) + ((((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x);
}
def code(x, y, z):
	return ((((x - 0.5) * math.log(x)) - x) + 0.91893853320467) + ((((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x)
function code(x, y, z)
	return Float64(Float64(Float64(Float64(Float64(x - 0.5) * log(x)) - x) + 0.91893853320467) + Float64(Float64(Float64(Float64(Float64(Float64(y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x))
end
function tmp = code(x, y, z)
	tmp = ((((x - 0.5) * log(x)) - x) + 0.91893853320467) + ((((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x);
end
code[x_, y_, z_] := N[(N[(N[(N[(N[(x - 0.5), $MachinePrecision] * N[Log[x], $MachinePrecision]), $MachinePrecision] - x), $MachinePrecision] + 0.91893853320467), $MachinePrecision] + N[(N[(N[(N[(N[(N[(y + 0.0007936500793651), $MachinePrecision] * z), $MachinePrecision] - 0.0027777777777778), $MachinePrecision] * z), $MachinePrecision] + 0.083333333333333), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x}
\end{array}

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

Herbie found 16 alternatives:

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

Initial Program: 93.5% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (+
  (+ (- (* (- x 0.5) (log x)) x) 0.91893853320467)
  (/
   (+
    (* (- (* (+ y 0.0007936500793651) z) 0.0027777777777778) z)
    0.083333333333333)
   x)))
double code(double x, double y, double z) {
	return ((((x - 0.5) * log(x)) - x) + 0.91893853320467) + ((((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / 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, y, z)
use fmin_fmax_functions
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = ((((x - 0.5d0) * log(x)) - x) + 0.91893853320467d0) + ((((((y + 0.0007936500793651d0) * z) - 0.0027777777777778d0) * z) + 0.083333333333333d0) / x)
end function
public static double code(double x, double y, double z) {
	return ((((x - 0.5) * Math.log(x)) - x) + 0.91893853320467) + ((((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x);
}
def code(x, y, z):
	return ((((x - 0.5) * math.log(x)) - x) + 0.91893853320467) + ((((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x)
function code(x, y, z)
	return Float64(Float64(Float64(Float64(Float64(x - 0.5) * log(x)) - x) + 0.91893853320467) + Float64(Float64(Float64(Float64(Float64(Float64(y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x))
end
function tmp = code(x, y, z)
	tmp = ((((x - 0.5) * log(x)) - x) + 0.91893853320467) + ((((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x);
end
code[x_, y_, z_] := N[(N[(N[(N[(N[(x - 0.5), $MachinePrecision] * N[Log[x], $MachinePrecision]), $MachinePrecision] - x), $MachinePrecision] + 0.91893853320467), $MachinePrecision] + N[(N[(N[(N[(N[(N[(y + 0.0007936500793651), $MachinePrecision] * z), $MachinePrecision] - 0.0027777777777778), $MachinePrecision] * z), $MachinePrecision] + 0.083333333333333), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x}
\end{array}

Alternative 1: 99.6% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq 1.42 \cdot 10^{+15}:\\ \;\;\;\;\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x}\\ \mathbf{else}:\\ \;\;\;\;\left(\left(\log x \cdot x - x\right) + 0.91893853320467\right) + \left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (if (<= x 1.42e+15)
   (+
    (+ (- (* (- x 0.5) (log x)) x) 0.91893853320467)
    (/
     (+
      (* (- (* (+ y 0.0007936500793651) z) 0.0027777777777778) z)
      0.083333333333333)
     x))
   (+
    (+ (- (* (log x) x) x) 0.91893853320467)
    (* (* (/ (- y -0.0007936500793651) x) z) z))))
double code(double x, double y, double z) {
	double tmp;
	if (x <= 1.42e+15) {
		tmp = ((((x - 0.5) * log(x)) - x) + 0.91893853320467) + ((((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x);
	} else {
		tmp = (((log(x) * x) - x) + 0.91893853320467) + ((((y - -0.0007936500793651) / x) * z) * z);
	}
	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, y, z)
use fmin_fmax_functions
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: tmp
    if (x <= 1.42d+15) then
        tmp = ((((x - 0.5d0) * log(x)) - x) + 0.91893853320467d0) + ((((((y + 0.0007936500793651d0) * z) - 0.0027777777777778d0) * z) + 0.083333333333333d0) / x)
    else
        tmp = (((log(x) * x) - x) + 0.91893853320467d0) + ((((y - (-0.0007936500793651d0)) / x) * z) * z)
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	double tmp;
	if (x <= 1.42e+15) {
		tmp = ((((x - 0.5) * Math.log(x)) - x) + 0.91893853320467) + ((((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x);
	} else {
		tmp = (((Math.log(x) * x) - x) + 0.91893853320467) + ((((y - -0.0007936500793651) / x) * z) * z);
	}
	return tmp;
}
def code(x, y, z):
	tmp = 0
	if x <= 1.42e+15:
		tmp = ((((x - 0.5) * math.log(x)) - x) + 0.91893853320467) + ((((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x)
	else:
		tmp = (((math.log(x) * x) - x) + 0.91893853320467) + ((((y - -0.0007936500793651) / x) * z) * z)
	return tmp
function code(x, y, z)
	tmp = 0.0
	if (x <= 1.42e+15)
		tmp = Float64(Float64(Float64(Float64(Float64(x - 0.5) * log(x)) - x) + 0.91893853320467) + Float64(Float64(Float64(Float64(Float64(Float64(y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x));
	else
		tmp = Float64(Float64(Float64(Float64(log(x) * x) - x) + 0.91893853320467) + Float64(Float64(Float64(Float64(y - -0.0007936500793651) / x) * z) * z));
	end
	return tmp
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if (x <= 1.42e+15)
		tmp = ((((x - 0.5) * log(x)) - x) + 0.91893853320467) + ((((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x);
	else
		tmp = (((log(x) * x) - x) + 0.91893853320467) + ((((y - -0.0007936500793651) / x) * z) * z);
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := If[LessEqual[x, 1.42e+15], N[(N[(N[(N[(N[(x - 0.5), $MachinePrecision] * N[Log[x], $MachinePrecision]), $MachinePrecision] - x), $MachinePrecision] + 0.91893853320467), $MachinePrecision] + N[(N[(N[(N[(N[(N[(y + 0.0007936500793651), $MachinePrecision] * z), $MachinePrecision] - 0.0027777777777778), $MachinePrecision] * z), $MachinePrecision] + 0.083333333333333), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision], N[(N[(N[(N[(N[Log[x], $MachinePrecision] * x), $MachinePrecision] - x), $MachinePrecision] + 0.91893853320467), $MachinePrecision] + N[(N[(N[(N[(y - -0.0007936500793651), $MachinePrecision] / x), $MachinePrecision] * z), $MachinePrecision] * z), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq 1.42 \cdot 10^{+15}:\\
\;\;\;\;\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x}\\

\mathbf{else}:\\
\;\;\;\;\left(\left(\log x \cdot x - x\right) + 0.91893853320467\right) + \left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < 1.42e15

    1. Initial program 99.7%

      \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
    2. Add Preprocessing

    if 1.42e15 < x

    1. Initial program 87.8%

      \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
    2. Add Preprocessing
    3. Taylor expanded in z around inf

      \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\frac{{z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} + y\right)}{x}} \]
    4. Step-by-step derivation
      1. distribute-lft-inN/A

        \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \frac{\color{blue}{{z}^{2} \cdot \frac{7936500793651}{10000000000000000} + {z}^{2} \cdot y}}{x} \]
      2. *-commutativeN/A

        \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \frac{{z}^{2} \cdot \frac{7936500793651}{10000000000000000} + \color{blue}{y \cdot {z}^{2}}}{x} \]
      3. div-addN/A

        \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(\frac{{z}^{2} \cdot \frac{7936500793651}{10000000000000000}}{x} + \frac{y \cdot {z}^{2}}{x}\right)} \]
      4. associate-*r/N/A

        \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\color{blue}{{z}^{2} \cdot \frac{\frac{7936500793651}{10000000000000000}}{x}} + \frac{y \cdot {z}^{2}}{x}\right) \]
      5. metadata-evalN/A

        \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left({z}^{2} \cdot \frac{\color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}}{x} + \frac{y \cdot {z}^{2}}{x}\right) \]
      6. associate-*r/N/A

        \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left({z}^{2} \cdot \color{blue}{\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x}\right)} + \frac{y \cdot {z}^{2}}{x}\right) \]
      7. +-commutativeN/A

        \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(\frac{y \cdot {z}^{2}}{x} + {z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x}\right)\right)} \]
      8. *-commutativeN/A

        \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{\color{blue}{{z}^{2} \cdot y}}{x} + {z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x}\right)\right) \]
      9. associate-*r/N/A

        \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\color{blue}{{z}^{2} \cdot \frac{y}{x}} + {z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x}\right)\right) \]
      10. distribute-lft-inN/A

        \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{{z}^{2} \cdot \left(\frac{y}{x} + \frac{7936500793651}{10000000000000000} \cdot \frac{1}{x}\right)} \]
      11. +-commutativeN/A

        \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + {z}^{2} \cdot \color{blue}{\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)} \]
      12. *-commutativeN/A

        \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot {z}^{2}} \]
      13. unpow2N/A

        \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot \color{blue}{\left(z \cdot z\right)} \]
      14. associate-*r*N/A

        \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot z\right) \cdot z} \]
      15. *-commutativeN/A

        \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)\right)} \cdot z \]
      16. lower-*.f64N/A

        \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)\right) \cdot z} \]
    5. Applied rewrites99.6%

      \[\leadsto \left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \color{blue}{\left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z} \]
    6. Taylor expanded in x around inf

      \[\leadsto \left(\left(\color{blue}{-1 \cdot \left(x \cdot \log \left(\frac{1}{x}\right)\right)} - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{y - \frac{-7936500793651}{10000000000000000}}{x} \cdot z\right) \cdot z \]
    7. Step-by-step derivation
      1. mul-1-negN/A

        \[\leadsto \left(\left(\color{blue}{\left(\mathsf{neg}\left(x \cdot \log \left(\frac{1}{x}\right)\right)\right)} - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{y - \frac{-7936500793651}{10000000000000000}}{x} \cdot z\right) \cdot z \]
      2. distribute-rgt-neg-inN/A

        \[\leadsto \left(\left(\color{blue}{x \cdot \left(\mathsf{neg}\left(\log \left(\frac{1}{x}\right)\right)\right)} - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{y - \frac{-7936500793651}{10000000000000000}}{x} \cdot z\right) \cdot z \]
      3. log-recN/A

        \[\leadsto \left(\left(x \cdot \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\log x\right)\right)}\right)\right) - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{y - \frac{-7936500793651}{10000000000000000}}{x} \cdot z\right) \cdot z \]
      4. remove-double-negN/A

        \[\leadsto \left(\left(x \cdot \color{blue}{\log x} - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{y - \frac{-7936500793651}{10000000000000000}}{x} \cdot z\right) \cdot z \]
      5. *-commutativeN/A

        \[\leadsto \left(\left(\color{blue}{\log x \cdot x} - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{y - \frac{-7936500793651}{10000000000000000}}{x} \cdot z\right) \cdot z \]
      6. lower-*.f64N/A

        \[\leadsto \left(\left(\color{blue}{\log x \cdot x} - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{y - \frac{-7936500793651}{10000000000000000}}{x} \cdot z\right) \cdot z \]
      7. lower-log.f6499.6

        \[\leadsto \left(\left(\color{blue}{\log x} \cdot x - x\right) + 0.91893853320467\right) + \left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z \]
    8. Applied rewrites99.6%

      \[\leadsto \left(\left(\color{blue}{\log x \cdot x} - x\right) + 0.91893853320467\right) + \left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 2: 88.4% accurate, 0.3× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x}\\ \mathbf{if}\;t\_0 \leq -5 \cdot 10^{+101}:\\ \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), \frac{z}{x}, \frac{0.083333333333333}{x}\right)\\ \mathbf{elif}\;t\_0 \leq 5 \cdot 10^{+307}:\\ \;\;\;\;\mathsf{fma}\left(x - 0.5, \log x, \left(0.91893853320467 - \frac{-0.083333333333333}{x}\right) - x\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z\\ \end{array} \end{array} \]
(FPCore (x y z)
 :precision binary64
 (let* ((t_0
         (+
          (+ (- (* (- x 0.5) (log x)) x) 0.91893853320467)
          (/
           (+
            (* (- (* (+ y 0.0007936500793651) z) 0.0027777777777778) z)
            0.083333333333333)
           x))))
   (if (<= t_0 -5e+101)
     (fma
      (fma (- y -0.0007936500793651) z -0.0027777777777778)
      (/ z x)
      (/ 0.083333333333333 x))
     (if (<= t_0 5e+307)
       (fma
        (- x 0.5)
        (log x)
        (- (- 0.91893853320467 (/ -0.083333333333333 x)) x))
       (* (* (/ (- y -0.0007936500793651) x) z) z)))))
double code(double x, double y, double z) {
	double t_0 = ((((x - 0.5) * log(x)) - x) + 0.91893853320467) + ((((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x);
	double tmp;
	if (t_0 <= -5e+101) {
		tmp = fma(fma((y - -0.0007936500793651), z, -0.0027777777777778), (z / x), (0.083333333333333 / x));
	} else if (t_0 <= 5e+307) {
		tmp = fma((x - 0.5), log(x), ((0.91893853320467 - (-0.083333333333333 / x)) - x));
	} else {
		tmp = (((y - -0.0007936500793651) / x) * z) * z;
	}
	return tmp;
}
function code(x, y, z)
	t_0 = Float64(Float64(Float64(Float64(Float64(x - 0.5) * log(x)) - x) + 0.91893853320467) + Float64(Float64(Float64(Float64(Float64(Float64(y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x))
	tmp = 0.0
	if (t_0 <= -5e+101)
		tmp = fma(fma(Float64(y - -0.0007936500793651), z, -0.0027777777777778), Float64(z / x), Float64(0.083333333333333 / x));
	elseif (t_0 <= 5e+307)
		tmp = fma(Float64(x - 0.5), log(x), Float64(Float64(0.91893853320467 - Float64(-0.083333333333333 / x)) - x));
	else
		tmp = Float64(Float64(Float64(Float64(y - -0.0007936500793651) / x) * z) * z);
	end
	return tmp
end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(N[(N[(N[(x - 0.5), $MachinePrecision] * N[Log[x], $MachinePrecision]), $MachinePrecision] - x), $MachinePrecision] + 0.91893853320467), $MachinePrecision] + N[(N[(N[(N[(N[(N[(y + 0.0007936500793651), $MachinePrecision] * z), $MachinePrecision] - 0.0027777777777778), $MachinePrecision] * z), $MachinePrecision] + 0.083333333333333), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$0, -5e+101], N[(N[(N[(y - -0.0007936500793651), $MachinePrecision] * z + -0.0027777777777778), $MachinePrecision] * N[(z / x), $MachinePrecision] + N[(0.083333333333333 / x), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$0, 5e+307], N[(N[(x - 0.5), $MachinePrecision] * N[Log[x], $MachinePrecision] + N[(N[(0.91893853320467 - N[(-0.083333333333333 / x), $MachinePrecision]), $MachinePrecision] - x), $MachinePrecision]), $MachinePrecision], N[(N[(N[(N[(y - -0.0007936500793651), $MachinePrecision] / x), $MachinePrecision] * z), $MachinePrecision] * z), $MachinePrecision]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x}\\
\mathbf{if}\;t\_0 \leq -5 \cdot 10^{+101}:\\
\;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), \frac{z}{x}, \frac{0.083333333333333}{x}\right)\\

\mathbf{elif}\;t\_0 \leq 5 \cdot 10^{+307}:\\
\;\;\;\;\mathsf{fma}\left(x - 0.5, \log x, \left(0.91893853320467 - \frac{-0.083333333333333}{x}\right) - x\right)\\

\mathbf{else}:\\
\;\;\;\;\left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if (+.f64 (+.f64 (-.f64 (*.f64 (-.f64 x #s(literal 1/2 binary64)) (log.f64 x)) x) #s(literal 91893853320467/100000000000000 binary64)) (/.f64 (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64)) x)) < -4.99999999999999989e101

    1. Initial program 92.2%

      \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
    2. Add Preprocessing
    3. Taylor expanded in x around 0

      \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
    4. Step-by-step derivation
      1. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
      2. +-commutativeN/A

        \[\leadsto \frac{\color{blue}{z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) + \frac{83333333333333}{1000000000000000}}}{x} \]
      3. *-commutativeN/A

        \[\leadsto \frac{\color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) \cdot z} + \frac{83333333333333}{1000000000000000}}{x} \]
      4. lower-fma.f64N/A

        \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, z, \frac{83333333333333}{1000000000000000}\right)}}{x} \]
      5. metadata-evalN/A

        \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \color{blue}{\frac{13888888888889}{5000000000000000} \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
      6. fp-cancel-sub-sign-invN/A

        \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \left(\mathsf{neg}\left(\frac{13888888888889}{5000000000000000}\right)\right) \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
      7. metadata-evalN/A

        \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \color{blue}{\frac{-13888888888889}{5000000000000000}} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
      8. *-commutativeN/A

        \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z} + \frac{-13888888888889}{5000000000000000} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
      9. metadata-evalN/A

        \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z + \color{blue}{\frac{-13888888888889}{5000000000000000}}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
      10. lower-fma.f64N/A

        \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{7936500793651}{10000000000000000} + y, z, \frac{-13888888888889}{5000000000000000}\right)}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
      11. +-commutativeN/A

        \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y + \frac{7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
      12. metadata-evalN/A

        \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
      13. fp-cancel-sign-sub-invN/A

        \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
      14. metadata-evalN/A

        \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
      15. metadata-evalN/A

        \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
      16. lower--.f6492.2

        \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - -0.0007936500793651}, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]
    5. Applied rewrites92.2%

      \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}} \]
    6. Step-by-step derivation
      1. Applied rewrites92.2%

        \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), \color{blue}{\frac{z}{x}}, \frac{0.083333333333333}{x}\right) \]

      if -4.99999999999999989e101 < (+.f64 (+.f64 (-.f64 (*.f64 (-.f64 x #s(literal 1/2 binary64)) (log.f64 x)) x) #s(literal 91893853320467/100000000000000 binary64)) (/.f64 (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64)) x)) < 5e307

      1. Initial program 99.5%

        \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
      2. Add Preprocessing
      3. Taylor expanded in z around 0

        \[\leadsto \color{blue}{\left(\frac{91893853320467}{100000000000000} + \left(\frac{83333333333333}{1000000000000000} \cdot \frac{1}{x} + \log x \cdot \left(x - \frac{1}{2}\right)\right)\right) - x} \]
      4. Step-by-step derivation
        1. lower--.f64N/A

          \[\leadsto \color{blue}{\left(\frac{91893853320467}{100000000000000} + \left(\frac{83333333333333}{1000000000000000} \cdot \frac{1}{x} + \log x \cdot \left(x - \frac{1}{2}\right)\right)\right) - x} \]
        2. +-commutativeN/A

          \[\leadsto \color{blue}{\left(\left(\frac{83333333333333}{1000000000000000} \cdot \frac{1}{x} + \log x \cdot \left(x - \frac{1}{2}\right)\right) + \frac{91893853320467}{100000000000000}\right)} - x \]
        3. +-commutativeN/A

          \[\leadsto \left(\color{blue}{\left(\log x \cdot \left(x - \frac{1}{2}\right) + \frac{83333333333333}{1000000000000000} \cdot \frac{1}{x}\right)} + \frac{91893853320467}{100000000000000}\right) - x \]
        4. associate-+l+N/A

          \[\leadsto \color{blue}{\left(\log x \cdot \left(x - \frac{1}{2}\right) + \left(\frac{83333333333333}{1000000000000000} \cdot \frac{1}{x} + \frac{91893853320467}{100000000000000}\right)\right)} - x \]
        5. *-commutativeN/A

          \[\leadsto \left(\color{blue}{\left(x - \frac{1}{2}\right) \cdot \log x} + \left(\frac{83333333333333}{1000000000000000} \cdot \frac{1}{x} + \frac{91893853320467}{100000000000000}\right)\right) - x \]
        6. +-commutativeN/A

          \[\leadsto \left(\left(x - \frac{1}{2}\right) \cdot \log x + \color{blue}{\left(\frac{91893853320467}{100000000000000} + \frac{83333333333333}{1000000000000000} \cdot \frac{1}{x}\right)}\right) - x \]
        7. lower-fma.f64N/A

          \[\leadsto \color{blue}{\mathsf{fma}\left(x - \frac{1}{2}, \log x, \frac{91893853320467}{100000000000000} + \frac{83333333333333}{1000000000000000} \cdot \frac{1}{x}\right)} - x \]
        8. lower--.f64N/A

          \[\leadsto \mathsf{fma}\left(\color{blue}{x - \frac{1}{2}}, \log x, \frac{91893853320467}{100000000000000} + \frac{83333333333333}{1000000000000000} \cdot \frac{1}{x}\right) - x \]
        9. lower-log.f64N/A

          \[\leadsto \mathsf{fma}\left(x - \frac{1}{2}, \color{blue}{\log x}, \frac{91893853320467}{100000000000000} + \frac{83333333333333}{1000000000000000} \cdot \frac{1}{x}\right) - x \]
        10. fp-cancel-sign-sub-invN/A

          \[\leadsto \mathsf{fma}\left(x - \frac{1}{2}, \log x, \color{blue}{\frac{91893853320467}{100000000000000} - \left(\mathsf{neg}\left(\frac{83333333333333}{1000000000000000}\right)\right) \cdot \frac{1}{x}}\right) - x \]
        11. lower--.f64N/A

          \[\leadsto \mathsf{fma}\left(x - \frac{1}{2}, \log x, \color{blue}{\frac{91893853320467}{100000000000000} - \left(\mathsf{neg}\left(\frac{83333333333333}{1000000000000000}\right)\right) \cdot \frac{1}{x}}\right) - x \]
        12. associate-*r/N/A

          \[\leadsto \mathsf{fma}\left(x - \frac{1}{2}, \log x, \frac{91893853320467}{100000000000000} - \color{blue}{\frac{\left(\mathsf{neg}\left(\frac{83333333333333}{1000000000000000}\right)\right) \cdot 1}{x}}\right) - x \]
        13. distribute-lft-neg-inN/A

          \[\leadsto \mathsf{fma}\left(x - \frac{1}{2}, \log x, \frac{91893853320467}{100000000000000} - \frac{\color{blue}{\mathsf{neg}\left(\frac{83333333333333}{1000000000000000} \cdot 1\right)}}{x}\right) - x \]
        14. metadata-evalN/A

          \[\leadsto \mathsf{fma}\left(x - \frac{1}{2}, \log x, \frac{91893853320467}{100000000000000} - \frac{\mathsf{neg}\left(\color{blue}{\frac{83333333333333}{1000000000000000}}\right)}{x}\right) - x \]
        15. lower-/.f64N/A

          \[\leadsto \mathsf{fma}\left(x - \frac{1}{2}, \log x, \frac{91893853320467}{100000000000000} - \color{blue}{\frac{\mathsf{neg}\left(\frac{83333333333333}{1000000000000000}\right)}{x}}\right) - x \]
        16. metadata-eval92.2

          \[\leadsto \mathsf{fma}\left(x - 0.5, \log x, 0.91893853320467 - \frac{\color{blue}{-0.083333333333333}}{x}\right) - x \]
      5. Applied rewrites92.2%

        \[\leadsto \color{blue}{\mathsf{fma}\left(x - 0.5, \log x, 0.91893853320467 - \frac{-0.083333333333333}{x}\right) - x} \]
      6. Step-by-step derivation
        1. Applied rewrites92.3%

          \[\leadsto \mathsf{fma}\left(x - 0.5, \color{blue}{\log x}, \left(0.91893853320467 - \frac{-0.083333333333333}{x}\right) - x\right) \]

        if 5e307 < (+.f64 (+.f64 (-.f64 (*.f64 (-.f64 x #s(literal 1/2 binary64)) (log.f64 x)) x) #s(literal 91893853320467/100000000000000 binary64)) (/.f64 (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64)) x))

        1. Initial program 85.5%

          \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
        2. Add Preprocessing
        3. Taylor expanded in z around inf

          \[\leadsto \color{blue}{{z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)} \]
        4. Step-by-step derivation
          1. *-commutativeN/A

            \[\leadsto \color{blue}{\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot {z}^{2}} \]
          2. unpow2N/A

            \[\leadsto \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot \color{blue}{\left(z \cdot z\right)} \]
          3. associate-*r*N/A

            \[\leadsto \color{blue}{\left(\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot z\right) \cdot z} \]
          4. *-commutativeN/A

            \[\leadsto \color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)\right)} \cdot z \]
          5. lower-*.f64N/A

            \[\leadsto \color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)\right) \cdot z} \]
          6. *-commutativeN/A

            \[\leadsto \color{blue}{\left(\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot z\right)} \cdot z \]
          7. lower-*.f64N/A

            \[\leadsto \color{blue}{\left(\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot z\right)} \cdot z \]
          8. associate-*r/N/A

            \[\leadsto \left(\left(\color{blue}{\frac{\frac{7936500793651}{10000000000000000} \cdot 1}{x}} + \frac{y}{x}\right) \cdot z\right) \cdot z \]
          9. metadata-evalN/A

            \[\leadsto \left(\left(\frac{\color{blue}{\frac{7936500793651}{10000000000000000}}}{x} + \frac{y}{x}\right) \cdot z\right) \cdot z \]
          10. div-add-revN/A

            \[\leadsto \left(\color{blue}{\frac{\frac{7936500793651}{10000000000000000} + y}{x}} \cdot z\right) \cdot z \]
          11. lower-/.f64N/A

            \[\leadsto \left(\color{blue}{\frac{\frac{7936500793651}{10000000000000000} + y}{x}} \cdot z\right) \cdot z \]
          12. +-commutativeN/A

            \[\leadsto \left(\frac{\color{blue}{y + \frac{7936500793651}{10000000000000000}}}{x} \cdot z\right) \cdot z \]
          13. metadata-evalN/A

            \[\leadsto \left(\frac{y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}}{x} \cdot z\right) \cdot z \]
          14. fp-cancel-sign-sub-invN/A

            \[\leadsto \left(\frac{\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}}{x} \cdot z\right) \cdot z \]
          15. metadata-evalN/A

            \[\leadsto \left(\frac{y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1}{x} \cdot z\right) \cdot z \]
          16. metadata-evalN/A

            \[\leadsto \left(\frac{y - \color{blue}{\frac{-7936500793651}{10000000000000000}}}{x} \cdot z\right) \cdot z \]
          17. lower--.f6494.8

            \[\leadsto \left(\frac{\color{blue}{y - -0.0007936500793651}}{x} \cdot z\right) \cdot z \]
        5. Applied rewrites94.8%

          \[\leadsto \color{blue}{\left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z} \]
      7. Recombined 3 regimes into one program.
      8. Add Preprocessing

      Alternative 3: 88.3% accurate, 0.3× speedup?

      \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x}\\ \mathbf{if}\;t\_0 \leq -5 \cdot 10^{+101}:\\ \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), \frac{z}{x}, \frac{0.083333333333333}{x}\right)\\ \mathbf{elif}\;t\_0 \leq 5 \cdot 10^{+307}:\\ \;\;\;\;\mathsf{fma}\left(x - 0.5, \log x, 0.91893853320467 - \frac{-0.083333333333333}{x}\right) - x\\ \mathbf{else}:\\ \;\;\;\;\left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z\\ \end{array} \end{array} \]
      (FPCore (x y z)
       :precision binary64
       (let* ((t_0
               (+
                (+ (- (* (- x 0.5) (log x)) x) 0.91893853320467)
                (/
                 (+
                  (* (- (* (+ y 0.0007936500793651) z) 0.0027777777777778) z)
                  0.083333333333333)
                 x))))
         (if (<= t_0 -5e+101)
           (fma
            (fma (- y -0.0007936500793651) z -0.0027777777777778)
            (/ z x)
            (/ 0.083333333333333 x))
           (if (<= t_0 5e+307)
             (-
              (fma (- x 0.5) (log x) (- 0.91893853320467 (/ -0.083333333333333 x)))
              x)
             (* (* (/ (- y -0.0007936500793651) x) z) z)))))
      double code(double x, double y, double z) {
      	double t_0 = ((((x - 0.5) * log(x)) - x) + 0.91893853320467) + ((((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x);
      	double tmp;
      	if (t_0 <= -5e+101) {
      		tmp = fma(fma((y - -0.0007936500793651), z, -0.0027777777777778), (z / x), (0.083333333333333 / x));
      	} else if (t_0 <= 5e+307) {
      		tmp = fma((x - 0.5), log(x), (0.91893853320467 - (-0.083333333333333 / x))) - x;
      	} else {
      		tmp = (((y - -0.0007936500793651) / x) * z) * z;
      	}
      	return tmp;
      }
      
      function code(x, y, z)
      	t_0 = Float64(Float64(Float64(Float64(Float64(x - 0.5) * log(x)) - x) + 0.91893853320467) + Float64(Float64(Float64(Float64(Float64(Float64(y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x))
      	tmp = 0.0
      	if (t_0 <= -5e+101)
      		tmp = fma(fma(Float64(y - -0.0007936500793651), z, -0.0027777777777778), Float64(z / x), Float64(0.083333333333333 / x));
      	elseif (t_0 <= 5e+307)
      		tmp = Float64(fma(Float64(x - 0.5), log(x), Float64(0.91893853320467 - Float64(-0.083333333333333 / x))) - x);
      	else
      		tmp = Float64(Float64(Float64(Float64(y - -0.0007936500793651) / x) * z) * z);
      	end
      	return tmp
      end
      
      code[x_, y_, z_] := Block[{t$95$0 = N[(N[(N[(N[(N[(x - 0.5), $MachinePrecision] * N[Log[x], $MachinePrecision]), $MachinePrecision] - x), $MachinePrecision] + 0.91893853320467), $MachinePrecision] + N[(N[(N[(N[(N[(N[(y + 0.0007936500793651), $MachinePrecision] * z), $MachinePrecision] - 0.0027777777777778), $MachinePrecision] * z), $MachinePrecision] + 0.083333333333333), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$0, -5e+101], N[(N[(N[(y - -0.0007936500793651), $MachinePrecision] * z + -0.0027777777777778), $MachinePrecision] * N[(z / x), $MachinePrecision] + N[(0.083333333333333 / x), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$0, 5e+307], N[(N[(N[(x - 0.5), $MachinePrecision] * N[Log[x], $MachinePrecision] + N[(0.91893853320467 - N[(-0.083333333333333 / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - x), $MachinePrecision], N[(N[(N[(N[(y - -0.0007936500793651), $MachinePrecision] / x), $MachinePrecision] * z), $MachinePrecision] * z), $MachinePrecision]]]]
      
      \begin{array}{l}
      
      \\
      \begin{array}{l}
      t_0 := \left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x}\\
      \mathbf{if}\;t\_0 \leq -5 \cdot 10^{+101}:\\
      \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), \frac{z}{x}, \frac{0.083333333333333}{x}\right)\\
      
      \mathbf{elif}\;t\_0 \leq 5 \cdot 10^{+307}:\\
      \;\;\;\;\mathsf{fma}\left(x - 0.5, \log x, 0.91893853320467 - \frac{-0.083333333333333}{x}\right) - x\\
      
      \mathbf{else}:\\
      \;\;\;\;\left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z\\
      
      
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 3 regimes
      2. if (+.f64 (+.f64 (-.f64 (*.f64 (-.f64 x #s(literal 1/2 binary64)) (log.f64 x)) x) #s(literal 91893853320467/100000000000000 binary64)) (/.f64 (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64)) x)) < -4.99999999999999989e101

        1. Initial program 92.2%

          \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
        2. Add Preprocessing
        3. Taylor expanded in x around 0

          \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
        4. Step-by-step derivation
          1. lower-/.f64N/A

            \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
          2. +-commutativeN/A

            \[\leadsto \frac{\color{blue}{z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) + \frac{83333333333333}{1000000000000000}}}{x} \]
          3. *-commutativeN/A

            \[\leadsto \frac{\color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) \cdot z} + \frac{83333333333333}{1000000000000000}}{x} \]
          4. lower-fma.f64N/A

            \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, z, \frac{83333333333333}{1000000000000000}\right)}}{x} \]
          5. metadata-evalN/A

            \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \color{blue}{\frac{13888888888889}{5000000000000000} \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
          6. fp-cancel-sub-sign-invN/A

            \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \left(\mathsf{neg}\left(\frac{13888888888889}{5000000000000000}\right)\right) \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
          7. metadata-evalN/A

            \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \color{blue}{\frac{-13888888888889}{5000000000000000}} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
          8. *-commutativeN/A

            \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z} + \frac{-13888888888889}{5000000000000000} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
          9. metadata-evalN/A

            \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z + \color{blue}{\frac{-13888888888889}{5000000000000000}}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
          10. lower-fma.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{7936500793651}{10000000000000000} + y, z, \frac{-13888888888889}{5000000000000000}\right)}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
          11. +-commutativeN/A

            \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y + \frac{7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
          12. metadata-evalN/A

            \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
          13. fp-cancel-sign-sub-invN/A

            \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
          14. metadata-evalN/A

            \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
          15. metadata-evalN/A

            \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
          16. lower--.f6492.2

            \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - -0.0007936500793651}, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]
        5. Applied rewrites92.2%

          \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}} \]
        6. Step-by-step derivation
          1. Applied rewrites92.2%

            \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), \color{blue}{\frac{z}{x}}, \frac{0.083333333333333}{x}\right) \]

          if -4.99999999999999989e101 < (+.f64 (+.f64 (-.f64 (*.f64 (-.f64 x #s(literal 1/2 binary64)) (log.f64 x)) x) #s(literal 91893853320467/100000000000000 binary64)) (/.f64 (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64)) x)) < 5e307

          1. Initial program 99.5%

            \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
          2. Add Preprocessing
          3. Taylor expanded in z around 0

            \[\leadsto \color{blue}{\left(\frac{91893853320467}{100000000000000} + \left(\frac{83333333333333}{1000000000000000} \cdot \frac{1}{x} + \log x \cdot \left(x - \frac{1}{2}\right)\right)\right) - x} \]
          4. Step-by-step derivation
            1. lower--.f64N/A

              \[\leadsto \color{blue}{\left(\frac{91893853320467}{100000000000000} + \left(\frac{83333333333333}{1000000000000000} \cdot \frac{1}{x} + \log x \cdot \left(x - \frac{1}{2}\right)\right)\right) - x} \]
            2. +-commutativeN/A

              \[\leadsto \color{blue}{\left(\left(\frac{83333333333333}{1000000000000000} \cdot \frac{1}{x} + \log x \cdot \left(x - \frac{1}{2}\right)\right) + \frac{91893853320467}{100000000000000}\right)} - x \]
            3. +-commutativeN/A

              \[\leadsto \left(\color{blue}{\left(\log x \cdot \left(x - \frac{1}{2}\right) + \frac{83333333333333}{1000000000000000} \cdot \frac{1}{x}\right)} + \frac{91893853320467}{100000000000000}\right) - x \]
            4. associate-+l+N/A

              \[\leadsto \color{blue}{\left(\log x \cdot \left(x - \frac{1}{2}\right) + \left(\frac{83333333333333}{1000000000000000} \cdot \frac{1}{x} + \frac{91893853320467}{100000000000000}\right)\right)} - x \]
            5. *-commutativeN/A

              \[\leadsto \left(\color{blue}{\left(x - \frac{1}{2}\right) \cdot \log x} + \left(\frac{83333333333333}{1000000000000000} \cdot \frac{1}{x} + \frac{91893853320467}{100000000000000}\right)\right) - x \]
            6. +-commutativeN/A

              \[\leadsto \left(\left(x - \frac{1}{2}\right) \cdot \log x + \color{blue}{\left(\frac{91893853320467}{100000000000000} + \frac{83333333333333}{1000000000000000} \cdot \frac{1}{x}\right)}\right) - x \]
            7. lower-fma.f64N/A

              \[\leadsto \color{blue}{\mathsf{fma}\left(x - \frac{1}{2}, \log x, \frac{91893853320467}{100000000000000} + \frac{83333333333333}{1000000000000000} \cdot \frac{1}{x}\right)} - x \]
            8. lower--.f64N/A

              \[\leadsto \mathsf{fma}\left(\color{blue}{x - \frac{1}{2}}, \log x, \frac{91893853320467}{100000000000000} + \frac{83333333333333}{1000000000000000} \cdot \frac{1}{x}\right) - x \]
            9. lower-log.f64N/A

              \[\leadsto \mathsf{fma}\left(x - \frac{1}{2}, \color{blue}{\log x}, \frac{91893853320467}{100000000000000} + \frac{83333333333333}{1000000000000000} \cdot \frac{1}{x}\right) - x \]
            10. fp-cancel-sign-sub-invN/A

              \[\leadsto \mathsf{fma}\left(x - \frac{1}{2}, \log x, \color{blue}{\frac{91893853320467}{100000000000000} - \left(\mathsf{neg}\left(\frac{83333333333333}{1000000000000000}\right)\right) \cdot \frac{1}{x}}\right) - x \]
            11. lower--.f64N/A

              \[\leadsto \mathsf{fma}\left(x - \frac{1}{2}, \log x, \color{blue}{\frac{91893853320467}{100000000000000} - \left(\mathsf{neg}\left(\frac{83333333333333}{1000000000000000}\right)\right) \cdot \frac{1}{x}}\right) - x \]
            12. associate-*r/N/A

              \[\leadsto \mathsf{fma}\left(x - \frac{1}{2}, \log x, \frac{91893853320467}{100000000000000} - \color{blue}{\frac{\left(\mathsf{neg}\left(\frac{83333333333333}{1000000000000000}\right)\right) \cdot 1}{x}}\right) - x \]
            13. distribute-lft-neg-inN/A

              \[\leadsto \mathsf{fma}\left(x - \frac{1}{2}, \log x, \frac{91893853320467}{100000000000000} - \frac{\color{blue}{\mathsf{neg}\left(\frac{83333333333333}{1000000000000000} \cdot 1\right)}}{x}\right) - x \]
            14. metadata-evalN/A

              \[\leadsto \mathsf{fma}\left(x - \frac{1}{2}, \log x, \frac{91893853320467}{100000000000000} - \frac{\mathsf{neg}\left(\color{blue}{\frac{83333333333333}{1000000000000000}}\right)}{x}\right) - x \]
            15. lower-/.f64N/A

              \[\leadsto \mathsf{fma}\left(x - \frac{1}{2}, \log x, \frac{91893853320467}{100000000000000} - \color{blue}{\frac{\mathsf{neg}\left(\frac{83333333333333}{1000000000000000}\right)}{x}}\right) - x \]
            16. metadata-eval92.2

              \[\leadsto \mathsf{fma}\left(x - 0.5, \log x, 0.91893853320467 - \frac{\color{blue}{-0.083333333333333}}{x}\right) - x \]
          5. Applied rewrites92.2%

            \[\leadsto \color{blue}{\mathsf{fma}\left(x - 0.5, \log x, 0.91893853320467 - \frac{-0.083333333333333}{x}\right) - x} \]

          if 5e307 < (+.f64 (+.f64 (-.f64 (*.f64 (-.f64 x #s(literal 1/2 binary64)) (log.f64 x)) x) #s(literal 91893853320467/100000000000000 binary64)) (/.f64 (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64)) x))

          1. Initial program 85.5%

            \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
          2. Add Preprocessing
          3. Taylor expanded in z around inf

            \[\leadsto \color{blue}{{z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)} \]
          4. Step-by-step derivation
            1. *-commutativeN/A

              \[\leadsto \color{blue}{\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot {z}^{2}} \]
            2. unpow2N/A

              \[\leadsto \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot \color{blue}{\left(z \cdot z\right)} \]
            3. associate-*r*N/A

              \[\leadsto \color{blue}{\left(\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot z\right) \cdot z} \]
            4. *-commutativeN/A

              \[\leadsto \color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)\right)} \cdot z \]
            5. lower-*.f64N/A

              \[\leadsto \color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)\right) \cdot z} \]
            6. *-commutativeN/A

              \[\leadsto \color{blue}{\left(\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot z\right)} \cdot z \]
            7. lower-*.f64N/A

              \[\leadsto \color{blue}{\left(\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot z\right)} \cdot z \]
            8. associate-*r/N/A

              \[\leadsto \left(\left(\color{blue}{\frac{\frac{7936500793651}{10000000000000000} \cdot 1}{x}} + \frac{y}{x}\right) \cdot z\right) \cdot z \]
            9. metadata-evalN/A

              \[\leadsto \left(\left(\frac{\color{blue}{\frac{7936500793651}{10000000000000000}}}{x} + \frac{y}{x}\right) \cdot z\right) \cdot z \]
            10. div-add-revN/A

              \[\leadsto \left(\color{blue}{\frac{\frac{7936500793651}{10000000000000000} + y}{x}} \cdot z\right) \cdot z \]
            11. lower-/.f64N/A

              \[\leadsto \left(\color{blue}{\frac{\frac{7936500793651}{10000000000000000} + y}{x}} \cdot z\right) \cdot z \]
            12. +-commutativeN/A

              \[\leadsto \left(\frac{\color{blue}{y + \frac{7936500793651}{10000000000000000}}}{x} \cdot z\right) \cdot z \]
            13. metadata-evalN/A

              \[\leadsto \left(\frac{y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}}{x} \cdot z\right) \cdot z \]
            14. fp-cancel-sign-sub-invN/A

              \[\leadsto \left(\frac{\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}}{x} \cdot z\right) \cdot z \]
            15. metadata-evalN/A

              \[\leadsto \left(\frac{y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1}{x} \cdot z\right) \cdot z \]
            16. metadata-evalN/A

              \[\leadsto \left(\frac{y - \color{blue}{\frac{-7936500793651}{10000000000000000}}}{x} \cdot z\right) \cdot z \]
            17. lower--.f6494.8

              \[\leadsto \left(\frac{\color{blue}{y - -0.0007936500793651}}{x} \cdot z\right) \cdot z \]
          5. Applied rewrites94.8%

            \[\leadsto \color{blue}{\left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z} \]
        7. Recombined 3 regimes into one program.
        8. Add Preprocessing

        Alternative 4: 58.3% accurate, 0.8× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \leq -5 \cdot 10^{+101}:\\ \;\;\;\;y \cdot \frac{z \cdot z}{x}\\ \mathbf{else}:\\ \;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}\\ \end{array} \end{array} \]
        (FPCore (x y z)
         :precision binary64
         (if (<=
              (+
               (+ (- (* (- x 0.5) (log x)) x) 0.91893853320467)
               (/
                (+
                 (* (- (* (+ y 0.0007936500793651) z) 0.0027777777777778) z)
                 0.083333333333333)
                x))
              -5e+101)
           (* y (/ (* z z) x))
           (/
            (fma (fma 0.0007936500793651 z -0.0027777777777778) z 0.083333333333333)
            x)))
        double code(double x, double y, double z) {
        	double tmp;
        	if ((((((x - 0.5) * log(x)) - x) + 0.91893853320467) + ((((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x)) <= -5e+101) {
        		tmp = y * ((z * z) / x);
        	} else {
        		tmp = fma(fma(0.0007936500793651, z, -0.0027777777777778), z, 0.083333333333333) / x;
        	}
        	return tmp;
        }
        
        function code(x, y, z)
        	tmp = 0.0
        	if (Float64(Float64(Float64(Float64(Float64(x - 0.5) * log(x)) - x) + 0.91893853320467) + Float64(Float64(Float64(Float64(Float64(Float64(y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) / x)) <= -5e+101)
        		tmp = Float64(y * Float64(Float64(z * z) / x));
        	else
        		tmp = Float64(fma(fma(0.0007936500793651, z, -0.0027777777777778), z, 0.083333333333333) / x);
        	end
        	return tmp
        end
        
        code[x_, y_, z_] := If[LessEqual[N[(N[(N[(N[(N[(x - 0.5), $MachinePrecision] * N[Log[x], $MachinePrecision]), $MachinePrecision] - x), $MachinePrecision] + 0.91893853320467), $MachinePrecision] + N[(N[(N[(N[(N[(N[(y + 0.0007936500793651), $MachinePrecision] * z), $MachinePrecision] - 0.0027777777777778), $MachinePrecision] * z), $MachinePrecision] + 0.083333333333333), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision], -5e+101], N[(y * N[(N[(z * z), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision], N[(N[(N[(0.0007936500793651 * z + -0.0027777777777778), $MachinePrecision] * z + 0.083333333333333), $MachinePrecision] / x), $MachinePrecision]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        \mathbf{if}\;\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \leq -5 \cdot 10^{+101}:\\
        \;\;\;\;y \cdot \frac{z \cdot z}{x}\\
        
        \mathbf{else}:\\
        \;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 2 regimes
        2. if (+.f64 (+.f64 (-.f64 (*.f64 (-.f64 x #s(literal 1/2 binary64)) (log.f64 x)) x) #s(literal 91893853320467/100000000000000 binary64)) (/.f64 (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64)) x)) < -4.99999999999999989e101

          1. Initial program 92.2%

            \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
          2. Add Preprocessing
          3. Taylor expanded in y around inf

            \[\leadsto \color{blue}{\frac{y \cdot {z}^{2}}{x}} \]
          4. Step-by-step derivation
            1. lower-/.f64N/A

              \[\leadsto \color{blue}{\frac{y \cdot {z}^{2}}{x}} \]
            2. *-commutativeN/A

              \[\leadsto \frac{\color{blue}{{z}^{2} \cdot y}}{x} \]
            3. lower-*.f64N/A

              \[\leadsto \frac{\color{blue}{{z}^{2} \cdot y}}{x} \]
            4. unpow2N/A

              \[\leadsto \frac{\color{blue}{\left(z \cdot z\right)} \cdot y}{x} \]
            5. lower-*.f6490.9

              \[\leadsto \frac{\color{blue}{\left(z \cdot z\right)} \cdot y}{x} \]
          5. Applied rewrites90.9%

            \[\leadsto \color{blue}{\frac{\left(z \cdot z\right) \cdot y}{x}} \]
          6. Step-by-step derivation
            1. Applied rewrites90.9%

              \[\leadsto y \cdot \color{blue}{\frac{z \cdot z}{x}} \]

            if -4.99999999999999989e101 < (+.f64 (+.f64 (-.f64 (*.f64 (-.f64 x #s(literal 1/2 binary64)) (log.f64 x)) x) #s(literal 91893853320467/100000000000000 binary64)) (/.f64 (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64)) x))

            1. Initial program 94.6%

              \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
            2. Add Preprocessing
            3. Taylor expanded in x around 0

              \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
            4. Step-by-step derivation
              1. lower-/.f64N/A

                \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
              2. +-commutativeN/A

                \[\leadsto \frac{\color{blue}{z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) + \frac{83333333333333}{1000000000000000}}}{x} \]
              3. *-commutativeN/A

                \[\leadsto \frac{\color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) \cdot z} + \frac{83333333333333}{1000000000000000}}{x} \]
              4. lower-fma.f64N/A

                \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, z, \frac{83333333333333}{1000000000000000}\right)}}{x} \]
              5. metadata-evalN/A

                \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \color{blue}{\frac{13888888888889}{5000000000000000} \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
              6. fp-cancel-sub-sign-invN/A

                \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \left(\mathsf{neg}\left(\frac{13888888888889}{5000000000000000}\right)\right) \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
              7. metadata-evalN/A

                \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \color{blue}{\frac{-13888888888889}{5000000000000000}} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
              8. *-commutativeN/A

                \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z} + \frac{-13888888888889}{5000000000000000} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
              9. metadata-evalN/A

                \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z + \color{blue}{\frac{-13888888888889}{5000000000000000}}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
              10. lower-fma.f64N/A

                \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{7936500793651}{10000000000000000} + y, z, \frac{-13888888888889}{5000000000000000}\right)}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
              11. +-commutativeN/A

                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y + \frac{7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
              12. metadata-evalN/A

                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
              13. fp-cancel-sign-sub-invN/A

                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
              14. metadata-evalN/A

                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
              15. metadata-evalN/A

                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
              16. lower--.f6462.3

                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - -0.0007936500793651}, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]
            5. Applied rewrites62.3%

              \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}} \]
            6. Taylor expanded in y around 0

              \[\leadsto \frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot z - \frac{13888888888889}{5000000000000000}\right)}{x} \]
            7. Step-by-step derivation
              1. Applied rewrites56.2%

                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]
            8. Recombined 2 regimes into one program.
            9. Add Preprocessing

            Alternative 5: 98.4% accurate, 0.9× speedup?

            \[\begin{array}{l} \\ \mathsf{fma}\left(z \cdot \left(0.0007936500793651 + y\right) - 0.0027777777777778, \frac{z}{x}, \frac{0.083333333333333}{x} + \left(\log x \cdot \left(x - 0.5\right) - \left(1 - \frac{0.91893853320467}{x}\right) \cdot x\right)\right) \end{array} \]
            (FPCore (x y z)
             :precision binary64
             (fma
              (- (* z (+ 0.0007936500793651 y)) 0.0027777777777778)
              (/ z x)
              (+
               (/ 0.083333333333333 x)
               (- (* (log x) (- x 0.5)) (* (- 1.0 (/ 0.91893853320467 x)) x)))))
            double code(double x, double y, double z) {
            	return fma(((z * (0.0007936500793651 + y)) - 0.0027777777777778), (z / x), ((0.083333333333333 / x) + ((log(x) * (x - 0.5)) - ((1.0 - (0.91893853320467 / x)) * x))));
            }
            
            function code(x, y, z)
            	return fma(Float64(Float64(z * Float64(0.0007936500793651 + y)) - 0.0027777777777778), Float64(z / x), Float64(Float64(0.083333333333333 / x) + Float64(Float64(log(x) * Float64(x - 0.5)) - Float64(Float64(1.0 - Float64(0.91893853320467 / x)) * x))))
            end
            
            code[x_, y_, z_] := N[(N[(N[(z * N[(0.0007936500793651 + y), $MachinePrecision]), $MachinePrecision] - 0.0027777777777778), $MachinePrecision] * N[(z / x), $MachinePrecision] + N[(N[(0.083333333333333 / x), $MachinePrecision] + N[(N[(N[Log[x], $MachinePrecision] * N[(x - 0.5), $MachinePrecision]), $MachinePrecision] - N[(N[(1.0 - N[(0.91893853320467 / x), $MachinePrecision]), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
            
            \begin{array}{l}
            
            \\
            \mathsf{fma}\left(z \cdot \left(0.0007936500793651 + y\right) - 0.0027777777777778, \frac{z}{x}, \frac{0.083333333333333}{x} + \left(\log x \cdot \left(x - 0.5\right) - \left(1 - \frac{0.91893853320467}{x}\right) \cdot x\right)\right)
            \end{array}
            
            Derivation
            1. Initial program 94.2%

              \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
            2. Add Preprocessing
            3. Step-by-step derivation
              1. lift-+.f64N/A

                \[\leadsto \color{blue}{\left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \frac{\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}\right) \cdot z + \frac{83333333333333}{1000000000000000}}{x}} \]
              2. +-commutativeN/A

                \[\leadsto \color{blue}{\frac{\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}\right) \cdot z + \frac{83333333333333}{1000000000000000}}{x} + \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right)} \]
              3. lift-/.f64N/A

                \[\leadsto \color{blue}{\frac{\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}\right) \cdot z + \frac{83333333333333}{1000000000000000}}{x}} + \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) \]
              4. lift-+.f64N/A

                \[\leadsto \frac{\color{blue}{\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}\right) \cdot z + \frac{83333333333333}{1000000000000000}}}{x} + \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) \]
              5. div-addN/A

                \[\leadsto \color{blue}{\left(\frac{\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}\right) \cdot z}{x} + \frac{\frac{83333333333333}{1000000000000000}}{x}\right)} + \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) \]
              6. associate-+l+N/A

                \[\leadsto \color{blue}{\frac{\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}\right) \cdot z}{x} + \left(\frac{\frac{83333333333333}{1000000000000000}}{x} + \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right)\right)} \]
              7. lift-*.f64N/A

                \[\leadsto \frac{\color{blue}{\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}\right) \cdot z}}{x} + \left(\frac{\frac{83333333333333}{1000000000000000}}{x} + \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right)\right) \]
              8. associate-/l*N/A

                \[\leadsto \color{blue}{\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}\right) \cdot \frac{z}{x}} + \left(\frac{\frac{83333333333333}{1000000000000000}}{x} + \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right)\right) \]
              9. lower-fma.f64N/A

                \[\leadsto \color{blue}{\mathsf{fma}\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}, \frac{z}{x}, \frac{\frac{83333333333333}{1000000000000000}}{x} + \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right)\right)} \]
            4. Applied rewrites98.2%

              \[\leadsto \color{blue}{\mathsf{fma}\left(z \cdot \left(0.0007936500793651 + y\right) - 0.0027777777777778, \frac{z}{x}, \frac{0.083333333333333}{x} + \left(\log x \cdot \left(x - 0.5\right) - \left(x - 0.91893853320467\right)\right)\right)} \]
            5. Taylor expanded in x around inf

              \[\leadsto \mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, \frac{z}{x}, \frac{\frac{83333333333333}{1000000000000000}}{x} + \left(\log x \cdot \left(x - \frac{1}{2}\right) - \color{blue}{x \cdot \left(1 - \frac{91893853320467}{100000000000000} \cdot \frac{1}{x}\right)}\right)\right) \]
            6. Step-by-step derivation
              1. *-commutativeN/A

                \[\leadsto \mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, \frac{z}{x}, \frac{\frac{83333333333333}{1000000000000000}}{x} + \left(\log x \cdot \left(x - \frac{1}{2}\right) - \color{blue}{\left(1 - \frac{91893853320467}{100000000000000} \cdot \frac{1}{x}\right) \cdot x}\right)\right) \]
              2. lower-*.f64N/A

                \[\leadsto \mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, \frac{z}{x}, \frac{\frac{83333333333333}{1000000000000000}}{x} + \left(\log x \cdot \left(x - \frac{1}{2}\right) - \color{blue}{\left(1 - \frac{91893853320467}{100000000000000} \cdot \frac{1}{x}\right) \cdot x}\right)\right) \]
              3. lower--.f64N/A

                \[\leadsto \mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, \frac{z}{x}, \frac{\frac{83333333333333}{1000000000000000}}{x} + \left(\log x \cdot \left(x - \frac{1}{2}\right) - \color{blue}{\left(1 - \frac{91893853320467}{100000000000000} \cdot \frac{1}{x}\right)} \cdot x\right)\right) \]
              4. associate-*r/N/A

                \[\leadsto \mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, \frac{z}{x}, \frac{\frac{83333333333333}{1000000000000000}}{x} + \left(\log x \cdot \left(x - \frac{1}{2}\right) - \left(1 - \color{blue}{\frac{\frac{91893853320467}{100000000000000} \cdot 1}{x}}\right) \cdot x\right)\right) \]
              5. metadata-evalN/A

                \[\leadsto \mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, \frac{z}{x}, \frac{\frac{83333333333333}{1000000000000000}}{x} + \left(\log x \cdot \left(x - \frac{1}{2}\right) - \left(1 - \frac{\color{blue}{\frac{91893853320467}{100000000000000}}}{x}\right) \cdot x\right)\right) \]
              6. lower-/.f6498.2

                \[\leadsto \mathsf{fma}\left(z \cdot \left(0.0007936500793651 + y\right) - 0.0027777777777778, \frac{z}{x}, \frac{0.083333333333333}{x} + \left(\log x \cdot \left(x - 0.5\right) - \left(1 - \color{blue}{\frac{0.91893853320467}{x}}\right) \cdot x\right)\right) \]
            7. Applied rewrites98.2%

              \[\leadsto \mathsf{fma}\left(z \cdot \left(0.0007936500793651 + y\right) - 0.0027777777777778, \frac{z}{x}, \frac{0.083333333333333}{x} + \left(\log x \cdot \left(x - 0.5\right) - \color{blue}{\left(1 - \frac{0.91893853320467}{x}\right) \cdot x}\right)\right) \]
            8. Add Preprocessing

            Alternative 6: 98.4% accurate, 0.9× speedup?

            \[\begin{array}{l} \\ \mathsf{fma}\left(z \cdot \left(0.0007936500793651 + y\right) - 0.0027777777777778, \frac{z}{x}, \frac{0.083333333333333}{x} + \left(\log x \cdot \left(x - 0.5\right) - \left(x - 0.91893853320467\right)\right)\right) \end{array} \]
            (FPCore (x y z)
             :precision binary64
             (fma
              (- (* z (+ 0.0007936500793651 y)) 0.0027777777777778)
              (/ z x)
              (+
               (/ 0.083333333333333 x)
               (- (* (log x) (- x 0.5)) (- x 0.91893853320467)))))
            double code(double x, double y, double z) {
            	return fma(((z * (0.0007936500793651 + y)) - 0.0027777777777778), (z / x), ((0.083333333333333 / x) + ((log(x) * (x - 0.5)) - (x - 0.91893853320467))));
            }
            
            function code(x, y, z)
            	return fma(Float64(Float64(z * Float64(0.0007936500793651 + y)) - 0.0027777777777778), Float64(z / x), Float64(Float64(0.083333333333333 / x) + Float64(Float64(log(x) * Float64(x - 0.5)) - Float64(x - 0.91893853320467))))
            end
            
            code[x_, y_, z_] := N[(N[(N[(z * N[(0.0007936500793651 + y), $MachinePrecision]), $MachinePrecision] - 0.0027777777777778), $MachinePrecision] * N[(z / x), $MachinePrecision] + N[(N[(0.083333333333333 / x), $MachinePrecision] + N[(N[(N[Log[x], $MachinePrecision] * N[(x - 0.5), $MachinePrecision]), $MachinePrecision] - N[(x - 0.91893853320467), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
            
            \begin{array}{l}
            
            \\
            \mathsf{fma}\left(z \cdot \left(0.0007936500793651 + y\right) - 0.0027777777777778, \frac{z}{x}, \frac{0.083333333333333}{x} + \left(\log x \cdot \left(x - 0.5\right) - \left(x - 0.91893853320467\right)\right)\right)
            \end{array}
            
            Derivation
            1. Initial program 94.2%

              \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
            2. Add Preprocessing
            3. Step-by-step derivation
              1. lift-+.f64N/A

                \[\leadsto \color{blue}{\left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \frac{\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}\right) \cdot z + \frac{83333333333333}{1000000000000000}}{x}} \]
              2. +-commutativeN/A

                \[\leadsto \color{blue}{\frac{\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}\right) \cdot z + \frac{83333333333333}{1000000000000000}}{x} + \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right)} \]
              3. lift-/.f64N/A

                \[\leadsto \color{blue}{\frac{\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}\right) \cdot z + \frac{83333333333333}{1000000000000000}}{x}} + \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) \]
              4. lift-+.f64N/A

                \[\leadsto \frac{\color{blue}{\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}\right) \cdot z + \frac{83333333333333}{1000000000000000}}}{x} + \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) \]
              5. div-addN/A

                \[\leadsto \color{blue}{\left(\frac{\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}\right) \cdot z}{x} + \frac{\frac{83333333333333}{1000000000000000}}{x}\right)} + \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) \]
              6. associate-+l+N/A

                \[\leadsto \color{blue}{\frac{\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}\right) \cdot z}{x} + \left(\frac{\frac{83333333333333}{1000000000000000}}{x} + \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right)\right)} \]
              7. lift-*.f64N/A

                \[\leadsto \frac{\color{blue}{\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}\right) \cdot z}}{x} + \left(\frac{\frac{83333333333333}{1000000000000000}}{x} + \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right)\right) \]
              8. associate-/l*N/A

                \[\leadsto \color{blue}{\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}\right) \cdot \frac{z}{x}} + \left(\frac{\frac{83333333333333}{1000000000000000}}{x} + \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right)\right) \]
              9. lower-fma.f64N/A

                \[\leadsto \color{blue}{\mathsf{fma}\left(\left(y + \frac{7936500793651}{10000000000000000}\right) \cdot z - \frac{13888888888889}{5000000000000000}, \frac{z}{x}, \frac{\frac{83333333333333}{1000000000000000}}{x} + \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right)\right)} \]
            4. Applied rewrites98.2%

              \[\leadsto \color{blue}{\mathsf{fma}\left(z \cdot \left(0.0007936500793651 + y\right) - 0.0027777777777778, \frac{z}{x}, \frac{0.083333333333333}{x} + \left(\log x \cdot \left(x - 0.5\right) - \left(x - 0.91893853320467\right)\right)\right)} \]
            5. Add Preprocessing

            Alternative 7: 98.9% accurate, 1.0× speedup?

            \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq 0.041:\\ \;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}\\ \mathbf{else}:\\ \;\;\;\;\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z\\ \end{array} \end{array} \]
            (FPCore (x y z)
             :precision binary64
             (if (<= x 0.041)
               (/
                (fma
                 (fma (- y -0.0007936500793651) z -0.0027777777777778)
                 z
                 0.083333333333333)
                x)
               (+
                (+ (- (* (- x 0.5) (log x)) x) 0.91893853320467)
                (* (* (/ (- y -0.0007936500793651) x) z) z))))
            double code(double x, double y, double z) {
            	double tmp;
            	if (x <= 0.041) {
            		tmp = fma(fma((y - -0.0007936500793651), z, -0.0027777777777778), z, 0.083333333333333) / x;
            	} else {
            		tmp = ((((x - 0.5) * log(x)) - x) + 0.91893853320467) + ((((y - -0.0007936500793651) / x) * z) * z);
            	}
            	return tmp;
            }
            
            function code(x, y, z)
            	tmp = 0.0
            	if (x <= 0.041)
            		tmp = Float64(fma(fma(Float64(y - -0.0007936500793651), z, -0.0027777777777778), z, 0.083333333333333) / x);
            	else
            		tmp = Float64(Float64(Float64(Float64(Float64(x - 0.5) * log(x)) - x) + 0.91893853320467) + Float64(Float64(Float64(Float64(y - -0.0007936500793651) / x) * z) * z));
            	end
            	return tmp
            end
            
            code[x_, y_, z_] := If[LessEqual[x, 0.041], N[(N[(N[(N[(y - -0.0007936500793651), $MachinePrecision] * z + -0.0027777777777778), $MachinePrecision] * z + 0.083333333333333), $MachinePrecision] / x), $MachinePrecision], N[(N[(N[(N[(N[(x - 0.5), $MachinePrecision] * N[Log[x], $MachinePrecision]), $MachinePrecision] - x), $MachinePrecision] + 0.91893853320467), $MachinePrecision] + N[(N[(N[(N[(y - -0.0007936500793651), $MachinePrecision] / x), $MachinePrecision] * z), $MachinePrecision] * z), $MachinePrecision]), $MachinePrecision]]
            
            \begin{array}{l}
            
            \\
            \begin{array}{l}
            \mathbf{if}\;x \leq 0.041:\\
            \;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}\\
            
            \mathbf{else}:\\
            \;\;\;\;\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z\\
            
            
            \end{array}
            \end{array}
            
            Derivation
            1. Split input into 2 regimes
            2. if x < 0.0410000000000000017

              1. Initial program 99.8%

                \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
              2. Add Preprocessing
              3. Taylor expanded in x around 0

                \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
              4. Step-by-step derivation
                1. lower-/.f64N/A

                  \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                2. +-commutativeN/A

                  \[\leadsto \frac{\color{blue}{z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) + \frac{83333333333333}{1000000000000000}}}{x} \]
                3. *-commutativeN/A

                  \[\leadsto \frac{\color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) \cdot z} + \frac{83333333333333}{1000000000000000}}{x} \]
                4. lower-fma.f64N/A

                  \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, z, \frac{83333333333333}{1000000000000000}\right)}}{x} \]
                5. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \color{blue}{\frac{13888888888889}{5000000000000000} \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                6. fp-cancel-sub-sign-invN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \left(\mathsf{neg}\left(\frac{13888888888889}{5000000000000000}\right)\right) \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                7. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \color{blue}{\frac{-13888888888889}{5000000000000000}} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                8. *-commutativeN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z} + \frac{-13888888888889}{5000000000000000} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                9. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z + \color{blue}{\frac{-13888888888889}{5000000000000000}}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                10. lower-fma.f64N/A

                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{7936500793651}{10000000000000000} + y, z, \frac{-13888888888889}{5000000000000000}\right)}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                11. +-commutativeN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y + \frac{7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                12. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                13. fp-cancel-sign-sub-invN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                14. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                15. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                16. lower--.f6498.8

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - -0.0007936500793651}, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]
              5. Applied rewrites98.8%

                \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}} \]

              if 0.0410000000000000017 < x

              1. Initial program 88.1%

                \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
              2. Add Preprocessing
              3. Taylor expanded in z around inf

                \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\frac{{z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} + y\right)}{x}} \]
              4. Step-by-step derivation
                1. distribute-lft-inN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \frac{\color{blue}{{z}^{2} \cdot \frac{7936500793651}{10000000000000000} + {z}^{2} \cdot y}}{x} \]
                2. *-commutativeN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \frac{{z}^{2} \cdot \frac{7936500793651}{10000000000000000} + \color{blue}{y \cdot {z}^{2}}}{x} \]
                3. div-addN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(\frac{{z}^{2} \cdot \frac{7936500793651}{10000000000000000}}{x} + \frac{y \cdot {z}^{2}}{x}\right)} \]
                4. associate-*r/N/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\color{blue}{{z}^{2} \cdot \frac{\frac{7936500793651}{10000000000000000}}{x}} + \frac{y \cdot {z}^{2}}{x}\right) \]
                5. metadata-evalN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left({z}^{2} \cdot \frac{\color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}}{x} + \frac{y \cdot {z}^{2}}{x}\right) \]
                6. associate-*r/N/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left({z}^{2} \cdot \color{blue}{\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x}\right)} + \frac{y \cdot {z}^{2}}{x}\right) \]
                7. +-commutativeN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(\frac{y \cdot {z}^{2}}{x} + {z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x}\right)\right)} \]
                8. *-commutativeN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{\color{blue}{{z}^{2} \cdot y}}{x} + {z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x}\right)\right) \]
                9. associate-*r/N/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\color{blue}{{z}^{2} \cdot \frac{y}{x}} + {z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x}\right)\right) \]
                10. distribute-lft-inN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{{z}^{2} \cdot \left(\frac{y}{x} + \frac{7936500793651}{10000000000000000} \cdot \frac{1}{x}\right)} \]
                11. +-commutativeN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + {z}^{2} \cdot \color{blue}{\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)} \]
                12. *-commutativeN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot {z}^{2}} \]
                13. unpow2N/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot \color{blue}{\left(z \cdot z\right)} \]
                14. associate-*r*N/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot z\right) \cdot z} \]
                15. *-commutativeN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)\right)} \cdot z \]
                16. lower-*.f64N/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)\right) \cdot z} \]
              5. Applied rewrites98.3%

                \[\leadsto \left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \color{blue}{\left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z} \]
            3. Recombined 2 regimes into one program.
            4. Add Preprocessing

            Alternative 8: 98.6% accurate, 1.0× speedup?

            \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq 1.55:\\ \;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}\\ \mathbf{else}:\\ \;\;\;\;\left(\left(\log x \cdot x - x\right) + 0.91893853320467\right) + \left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z\\ \end{array} \end{array} \]
            (FPCore (x y z)
             :precision binary64
             (if (<= x 1.55)
               (/
                (fma
                 (fma (- y -0.0007936500793651) z -0.0027777777777778)
                 z
                 0.083333333333333)
                x)
               (+
                (+ (- (* (log x) x) x) 0.91893853320467)
                (* (* (/ (- y -0.0007936500793651) x) z) z))))
            double code(double x, double y, double z) {
            	double tmp;
            	if (x <= 1.55) {
            		tmp = fma(fma((y - -0.0007936500793651), z, -0.0027777777777778), z, 0.083333333333333) / x;
            	} else {
            		tmp = (((log(x) * x) - x) + 0.91893853320467) + ((((y - -0.0007936500793651) / x) * z) * z);
            	}
            	return tmp;
            }
            
            function code(x, y, z)
            	tmp = 0.0
            	if (x <= 1.55)
            		tmp = Float64(fma(fma(Float64(y - -0.0007936500793651), z, -0.0027777777777778), z, 0.083333333333333) / x);
            	else
            		tmp = Float64(Float64(Float64(Float64(log(x) * x) - x) + 0.91893853320467) + Float64(Float64(Float64(Float64(y - -0.0007936500793651) / x) * z) * z));
            	end
            	return tmp
            end
            
            code[x_, y_, z_] := If[LessEqual[x, 1.55], N[(N[(N[(N[(y - -0.0007936500793651), $MachinePrecision] * z + -0.0027777777777778), $MachinePrecision] * z + 0.083333333333333), $MachinePrecision] / x), $MachinePrecision], N[(N[(N[(N[(N[Log[x], $MachinePrecision] * x), $MachinePrecision] - x), $MachinePrecision] + 0.91893853320467), $MachinePrecision] + N[(N[(N[(N[(y - -0.0007936500793651), $MachinePrecision] / x), $MachinePrecision] * z), $MachinePrecision] * z), $MachinePrecision]), $MachinePrecision]]
            
            \begin{array}{l}
            
            \\
            \begin{array}{l}
            \mathbf{if}\;x \leq 1.55:\\
            \;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}\\
            
            \mathbf{else}:\\
            \;\;\;\;\left(\left(\log x \cdot x - x\right) + 0.91893853320467\right) + \left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z\\
            
            
            \end{array}
            \end{array}
            
            Derivation
            1. Split input into 2 regimes
            2. if x < 1.55000000000000004

              1. Initial program 99.7%

                \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
              2. Add Preprocessing
              3. Taylor expanded in x around 0

                \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
              4. Step-by-step derivation
                1. lower-/.f64N/A

                  \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                2. +-commutativeN/A

                  \[\leadsto \frac{\color{blue}{z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) + \frac{83333333333333}{1000000000000000}}}{x} \]
                3. *-commutativeN/A

                  \[\leadsto \frac{\color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) \cdot z} + \frac{83333333333333}{1000000000000000}}{x} \]
                4. lower-fma.f64N/A

                  \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, z, \frac{83333333333333}{1000000000000000}\right)}}{x} \]
                5. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \color{blue}{\frac{13888888888889}{5000000000000000} \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                6. fp-cancel-sub-sign-invN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \left(\mathsf{neg}\left(\frac{13888888888889}{5000000000000000}\right)\right) \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                7. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \color{blue}{\frac{-13888888888889}{5000000000000000}} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                8. *-commutativeN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z} + \frac{-13888888888889}{5000000000000000} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                9. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z + \color{blue}{\frac{-13888888888889}{5000000000000000}}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                10. lower-fma.f64N/A

                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{7936500793651}{10000000000000000} + y, z, \frac{-13888888888889}{5000000000000000}\right)}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                11. +-commutativeN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y + \frac{7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                12. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                13. fp-cancel-sign-sub-invN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                14. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                15. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                16. lower--.f6498.2

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - -0.0007936500793651}, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]
              5. Applied rewrites98.2%

                \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}} \]

              if 1.55000000000000004 < x

              1. Initial program 88.0%

                \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
              2. Add Preprocessing
              3. Taylor expanded in z around inf

                \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\frac{{z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} + y\right)}{x}} \]
              4. Step-by-step derivation
                1. distribute-lft-inN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \frac{\color{blue}{{z}^{2} \cdot \frac{7936500793651}{10000000000000000} + {z}^{2} \cdot y}}{x} \]
                2. *-commutativeN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \frac{{z}^{2} \cdot \frac{7936500793651}{10000000000000000} + \color{blue}{y \cdot {z}^{2}}}{x} \]
                3. div-addN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(\frac{{z}^{2} \cdot \frac{7936500793651}{10000000000000000}}{x} + \frac{y \cdot {z}^{2}}{x}\right)} \]
                4. associate-*r/N/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\color{blue}{{z}^{2} \cdot \frac{\frac{7936500793651}{10000000000000000}}{x}} + \frac{y \cdot {z}^{2}}{x}\right) \]
                5. metadata-evalN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left({z}^{2} \cdot \frac{\color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}}{x} + \frac{y \cdot {z}^{2}}{x}\right) \]
                6. associate-*r/N/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left({z}^{2} \cdot \color{blue}{\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x}\right)} + \frac{y \cdot {z}^{2}}{x}\right) \]
                7. +-commutativeN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(\frac{y \cdot {z}^{2}}{x} + {z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x}\right)\right)} \]
                8. *-commutativeN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{\color{blue}{{z}^{2} \cdot y}}{x} + {z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x}\right)\right) \]
                9. associate-*r/N/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\color{blue}{{z}^{2} \cdot \frac{y}{x}} + {z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x}\right)\right) \]
                10. distribute-lft-inN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{{z}^{2} \cdot \left(\frac{y}{x} + \frac{7936500793651}{10000000000000000} \cdot \frac{1}{x}\right)} \]
                11. +-commutativeN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + {z}^{2} \cdot \color{blue}{\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)} \]
                12. *-commutativeN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot {z}^{2}} \]
                13. unpow2N/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot \color{blue}{\left(z \cdot z\right)} \]
                14. associate-*r*N/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot z\right) \cdot z} \]
                15. *-commutativeN/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)\right)} \cdot z \]
                16. lower-*.f64N/A

                  \[\leadsto \left(\left(\left(x - \frac{1}{2}\right) \cdot \log x - x\right) + \frac{91893853320467}{100000000000000}\right) + \color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)\right) \cdot z} \]
              5. Applied rewrites99.0%

                \[\leadsto \left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \color{blue}{\left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z} \]
              6. Taylor expanded in x around inf

                \[\leadsto \left(\left(\color{blue}{-1 \cdot \left(x \cdot \log \left(\frac{1}{x}\right)\right)} - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{y - \frac{-7936500793651}{10000000000000000}}{x} \cdot z\right) \cdot z \]
              7. Step-by-step derivation
                1. mul-1-negN/A

                  \[\leadsto \left(\left(\color{blue}{\left(\mathsf{neg}\left(x \cdot \log \left(\frac{1}{x}\right)\right)\right)} - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{y - \frac{-7936500793651}{10000000000000000}}{x} \cdot z\right) \cdot z \]
                2. distribute-rgt-neg-inN/A

                  \[\leadsto \left(\left(\color{blue}{x \cdot \left(\mathsf{neg}\left(\log \left(\frac{1}{x}\right)\right)\right)} - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{y - \frac{-7936500793651}{10000000000000000}}{x} \cdot z\right) \cdot z \]
                3. log-recN/A

                  \[\leadsto \left(\left(x \cdot \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\log x\right)\right)}\right)\right) - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{y - \frac{-7936500793651}{10000000000000000}}{x} \cdot z\right) \cdot z \]
                4. remove-double-negN/A

                  \[\leadsto \left(\left(x \cdot \color{blue}{\log x} - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{y - \frac{-7936500793651}{10000000000000000}}{x} \cdot z\right) \cdot z \]
                5. *-commutativeN/A

                  \[\leadsto \left(\left(\color{blue}{\log x \cdot x} - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{y - \frac{-7936500793651}{10000000000000000}}{x} \cdot z\right) \cdot z \]
                6. lower-*.f64N/A

                  \[\leadsto \left(\left(\color{blue}{\log x \cdot x} - x\right) + \frac{91893853320467}{100000000000000}\right) + \left(\frac{y - \frac{-7936500793651}{10000000000000000}}{x} \cdot z\right) \cdot z \]
                7. lower-log.f6498.8

                  \[\leadsto \left(\left(\color{blue}{\log x} \cdot x - x\right) + 0.91893853320467\right) + \left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z \]
              8. Applied rewrites98.8%

                \[\leadsto \left(\left(\color{blue}{\log x \cdot x} - x\right) + 0.91893853320467\right) + \left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z \]
            3. Recombined 2 regimes into one program.
            4. Add Preprocessing

            Alternative 9: 80.2% accurate, 1.3× speedup?

            \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq 5 \cdot 10^{+156}:\\ \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), \frac{z}{x}, \frac{0.083333333333333}{x}\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\log x - 1\right) \cdot x\\ \end{array} \end{array} \]
            (FPCore (x y z)
             :precision binary64
             (if (<= x 5e+156)
               (fma
                (fma (- y -0.0007936500793651) z -0.0027777777777778)
                (/ z x)
                (/ 0.083333333333333 x))
               (* (- (log x) 1.0) x)))
            double code(double x, double y, double z) {
            	double tmp;
            	if (x <= 5e+156) {
            		tmp = fma(fma((y - -0.0007936500793651), z, -0.0027777777777778), (z / x), (0.083333333333333 / x));
            	} else {
            		tmp = (log(x) - 1.0) * x;
            	}
            	return tmp;
            }
            
            function code(x, y, z)
            	tmp = 0.0
            	if (x <= 5e+156)
            		tmp = fma(fma(Float64(y - -0.0007936500793651), z, -0.0027777777777778), Float64(z / x), Float64(0.083333333333333 / x));
            	else
            		tmp = Float64(Float64(log(x) - 1.0) * x);
            	end
            	return tmp
            end
            
            code[x_, y_, z_] := If[LessEqual[x, 5e+156], N[(N[(N[(y - -0.0007936500793651), $MachinePrecision] * z + -0.0027777777777778), $MachinePrecision] * N[(z / x), $MachinePrecision] + N[(0.083333333333333 / x), $MachinePrecision]), $MachinePrecision], N[(N[(N[Log[x], $MachinePrecision] - 1.0), $MachinePrecision] * x), $MachinePrecision]]
            
            \begin{array}{l}
            
            \\
            \begin{array}{l}
            \mathbf{if}\;x \leq 5 \cdot 10^{+156}:\\
            \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), \frac{z}{x}, \frac{0.083333333333333}{x}\right)\\
            
            \mathbf{else}:\\
            \;\;\;\;\left(\log x - 1\right) \cdot x\\
            
            
            \end{array}
            \end{array}
            
            Derivation
            1. Split input into 2 regimes
            2. if x < 4.99999999999999992e156

              1. Initial program 98.8%

                \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
              2. Add Preprocessing
              3. Taylor expanded in x around 0

                \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
              4. Step-by-step derivation
                1. lower-/.f64N/A

                  \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                2. +-commutativeN/A

                  \[\leadsto \frac{\color{blue}{z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) + \frac{83333333333333}{1000000000000000}}}{x} \]
                3. *-commutativeN/A

                  \[\leadsto \frac{\color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) \cdot z} + \frac{83333333333333}{1000000000000000}}{x} \]
                4. lower-fma.f64N/A

                  \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, z, \frac{83333333333333}{1000000000000000}\right)}}{x} \]
                5. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \color{blue}{\frac{13888888888889}{5000000000000000} \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                6. fp-cancel-sub-sign-invN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \left(\mathsf{neg}\left(\frac{13888888888889}{5000000000000000}\right)\right) \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                7. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \color{blue}{\frac{-13888888888889}{5000000000000000}} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                8. *-commutativeN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z} + \frac{-13888888888889}{5000000000000000} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                9. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z + \color{blue}{\frac{-13888888888889}{5000000000000000}}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                10. lower-fma.f64N/A

                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{7936500793651}{10000000000000000} + y, z, \frac{-13888888888889}{5000000000000000}\right)}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                11. +-commutativeN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y + \frac{7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                12. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                13. fp-cancel-sign-sub-invN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                14. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                15. metadata-evalN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                16. lower--.f6484.8

                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - -0.0007936500793651}, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]
              5. Applied rewrites84.8%

                \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}} \]
              6. Step-by-step derivation
                1. Applied rewrites85.7%

                  \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), \color{blue}{\frac{z}{x}}, \frac{0.083333333333333}{x}\right) \]

                if 4.99999999999999992e156 < x

                1. Initial program 81.7%

                  \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
                2. Add Preprocessing
                3. Taylor expanded in x around inf

                  \[\leadsto \color{blue}{x \cdot \left(-1 \cdot \log \left(\frac{1}{x}\right) - 1\right)} \]
                4. Step-by-step derivation
                  1. *-commutativeN/A

                    \[\leadsto \color{blue}{\left(-1 \cdot \log \left(\frac{1}{x}\right) - 1\right) \cdot x} \]
                  2. mul-1-negN/A

                    \[\leadsto \left(\color{blue}{\left(\mathsf{neg}\left(\log \left(\frac{1}{x}\right)\right)\right)} - 1\right) \cdot x \]
                  3. log-recN/A

                    \[\leadsto \left(\left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(\log x\right)\right)}\right)\right) - 1\right) \cdot x \]
                  4. remove-double-negN/A

                    \[\leadsto \left(\color{blue}{\log x} - 1\right) \cdot x \]
                  5. lower-*.f64N/A

                    \[\leadsto \color{blue}{\left(\log x - 1\right) \cdot x} \]
                  6. lower--.f64N/A

                    \[\leadsto \color{blue}{\left(\log x - 1\right)} \cdot x \]
                  7. lower-log.f6477.0

                    \[\leadsto \left(\color{blue}{\log x} - 1\right) \cdot x \]
                5. Applied rewrites77.0%

                  \[\leadsto \color{blue}{\left(\log x - 1\right) \cdot x} \]
              7. Recombined 2 regimes into one program.
              8. Add Preprocessing

              Alternative 10: 64.0% accurate, 2.0× speedup?

              \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333\\ \mathbf{if}\;t\_0 \leq -40000:\\ \;\;\;\;y \cdot \frac{z \cdot z}{x}\\ \mathbf{elif}\;t\_0 \leq 0.1:\\ \;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}\\ \mathbf{else}:\\ \;\;\;\;\left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z\\ \end{array} \end{array} \]
              (FPCore (x y z)
               :precision binary64
               (let* ((t_0
                       (+
                        (* (- (* (+ y 0.0007936500793651) z) 0.0027777777777778) z)
                        0.083333333333333)))
                 (if (<= t_0 -40000.0)
                   (* y (/ (* z z) x))
                   (if (<= t_0 0.1)
                     (/
                      (fma
                       (fma 0.0007936500793651 z -0.0027777777777778)
                       z
                       0.083333333333333)
                      x)
                     (* (* (/ (- y -0.0007936500793651) x) z) z)))))
              double code(double x, double y, double z) {
              	double t_0 = ((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333;
              	double tmp;
              	if (t_0 <= -40000.0) {
              		tmp = y * ((z * z) / x);
              	} else if (t_0 <= 0.1) {
              		tmp = fma(fma(0.0007936500793651, z, -0.0027777777777778), z, 0.083333333333333) / x;
              	} else {
              		tmp = (((y - -0.0007936500793651) / x) * z) * z;
              	}
              	return tmp;
              }
              
              function code(x, y, z)
              	t_0 = Float64(Float64(Float64(Float64(Float64(y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333)
              	tmp = 0.0
              	if (t_0 <= -40000.0)
              		tmp = Float64(y * Float64(Float64(z * z) / x));
              	elseif (t_0 <= 0.1)
              		tmp = Float64(fma(fma(0.0007936500793651, z, -0.0027777777777778), z, 0.083333333333333) / x);
              	else
              		tmp = Float64(Float64(Float64(Float64(y - -0.0007936500793651) / x) * z) * z);
              	end
              	return tmp
              end
              
              code[x_, y_, z_] := Block[{t$95$0 = N[(N[(N[(N[(N[(y + 0.0007936500793651), $MachinePrecision] * z), $MachinePrecision] - 0.0027777777777778), $MachinePrecision] * z), $MachinePrecision] + 0.083333333333333), $MachinePrecision]}, If[LessEqual[t$95$0, -40000.0], N[(y * N[(N[(z * z), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$0, 0.1], N[(N[(N[(0.0007936500793651 * z + -0.0027777777777778), $MachinePrecision] * z + 0.083333333333333), $MachinePrecision] / x), $MachinePrecision], N[(N[(N[(N[(y - -0.0007936500793651), $MachinePrecision] / x), $MachinePrecision] * z), $MachinePrecision] * z), $MachinePrecision]]]]
              
              \begin{array}{l}
              
              \\
              \begin{array}{l}
              t_0 := \left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333\\
              \mathbf{if}\;t\_0 \leq -40000:\\
              \;\;\;\;y \cdot \frac{z \cdot z}{x}\\
              
              \mathbf{elif}\;t\_0 \leq 0.1:\\
              \;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}\\
              
              \mathbf{else}:\\
              \;\;\;\;\left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z\\
              
              
              \end{array}
              \end{array}
              
              Derivation
              1. Split input into 3 regimes
              2. if (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64)) < -4e4

                1. Initial program 93.9%

                  \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
                2. Add Preprocessing
                3. Taylor expanded in y around inf

                  \[\leadsto \color{blue}{\frac{y \cdot {z}^{2}}{x}} \]
                4. Step-by-step derivation
                  1. lower-/.f64N/A

                    \[\leadsto \color{blue}{\frac{y \cdot {z}^{2}}{x}} \]
                  2. *-commutativeN/A

                    \[\leadsto \frac{\color{blue}{{z}^{2} \cdot y}}{x} \]
                  3. lower-*.f64N/A

                    \[\leadsto \frac{\color{blue}{{z}^{2} \cdot y}}{x} \]
                  4. unpow2N/A

                    \[\leadsto \frac{\color{blue}{\left(z \cdot z\right)} \cdot y}{x} \]
                  5. lower-*.f6469.8

                    \[\leadsto \frac{\color{blue}{\left(z \cdot z\right)} \cdot y}{x} \]
                5. Applied rewrites69.8%

                  \[\leadsto \color{blue}{\frac{\left(z \cdot z\right) \cdot y}{x}} \]
                6. Step-by-step derivation
                  1. Applied rewrites69.8%

                    \[\leadsto y \cdot \color{blue}{\frac{z \cdot z}{x}} \]

                  if -4e4 < (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64)) < 0.10000000000000001

                  1. Initial program 99.4%

                    \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
                  2. Add Preprocessing
                  3. Taylor expanded in x around 0

                    \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                  4. Step-by-step derivation
                    1. lower-/.f64N/A

                      \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                    2. +-commutativeN/A

                      \[\leadsto \frac{\color{blue}{z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) + \frac{83333333333333}{1000000000000000}}}{x} \]
                    3. *-commutativeN/A

                      \[\leadsto \frac{\color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) \cdot z} + \frac{83333333333333}{1000000000000000}}{x} \]
                    4. lower-fma.f64N/A

                      \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, z, \frac{83333333333333}{1000000000000000}\right)}}{x} \]
                    5. metadata-evalN/A

                      \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \color{blue}{\frac{13888888888889}{5000000000000000} \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                    6. fp-cancel-sub-sign-invN/A

                      \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \left(\mathsf{neg}\left(\frac{13888888888889}{5000000000000000}\right)\right) \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                    7. metadata-evalN/A

                      \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \color{blue}{\frac{-13888888888889}{5000000000000000}} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                    8. *-commutativeN/A

                      \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z} + \frac{-13888888888889}{5000000000000000} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                    9. metadata-evalN/A

                      \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z + \color{blue}{\frac{-13888888888889}{5000000000000000}}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                    10. lower-fma.f64N/A

                      \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{7936500793651}{10000000000000000} + y, z, \frac{-13888888888889}{5000000000000000}\right)}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                    11. +-commutativeN/A

                      \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y + \frac{7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                    12. metadata-evalN/A

                      \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                    13. fp-cancel-sign-sub-invN/A

                      \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                    14. metadata-evalN/A

                      \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                    15. metadata-evalN/A

                      \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                    16. lower--.f6455.6

                      \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - -0.0007936500793651}, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]
                  5. Applied rewrites55.6%

                    \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}} \]
                  6. Taylor expanded in y around 0

                    \[\leadsto \frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot z - \frac{13888888888889}{5000000000000000}\right)}{x} \]
                  7. Step-by-step derivation
                    1. Applied rewrites54.7%

                      \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]

                    if 0.10000000000000001 < (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64))

                    1. Initial program 88.5%

                      \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
                    2. Add Preprocessing
                    3. Taylor expanded in z around inf

                      \[\leadsto \color{blue}{{z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)} \]
                    4. Step-by-step derivation
                      1. *-commutativeN/A

                        \[\leadsto \color{blue}{\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot {z}^{2}} \]
                      2. unpow2N/A

                        \[\leadsto \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot \color{blue}{\left(z \cdot z\right)} \]
                      3. associate-*r*N/A

                        \[\leadsto \color{blue}{\left(\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot z\right) \cdot z} \]
                      4. *-commutativeN/A

                        \[\leadsto \color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)\right)} \cdot z \]
                      5. lower-*.f64N/A

                        \[\leadsto \color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)\right) \cdot z} \]
                      6. *-commutativeN/A

                        \[\leadsto \color{blue}{\left(\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot z\right)} \cdot z \]
                      7. lower-*.f64N/A

                        \[\leadsto \color{blue}{\left(\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot z\right)} \cdot z \]
                      8. associate-*r/N/A

                        \[\leadsto \left(\left(\color{blue}{\frac{\frac{7936500793651}{10000000000000000} \cdot 1}{x}} + \frac{y}{x}\right) \cdot z\right) \cdot z \]
                      9. metadata-evalN/A

                        \[\leadsto \left(\left(\frac{\color{blue}{\frac{7936500793651}{10000000000000000}}}{x} + \frac{y}{x}\right) \cdot z\right) \cdot z \]
                      10. div-add-revN/A

                        \[\leadsto \left(\color{blue}{\frac{\frac{7936500793651}{10000000000000000} + y}{x}} \cdot z\right) \cdot z \]
                      11. lower-/.f64N/A

                        \[\leadsto \left(\color{blue}{\frac{\frac{7936500793651}{10000000000000000} + y}{x}} \cdot z\right) \cdot z \]
                      12. +-commutativeN/A

                        \[\leadsto \left(\frac{\color{blue}{y + \frac{7936500793651}{10000000000000000}}}{x} \cdot z\right) \cdot z \]
                      13. metadata-evalN/A

                        \[\leadsto \left(\frac{y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}}{x} \cdot z\right) \cdot z \]
                      14. fp-cancel-sign-sub-invN/A

                        \[\leadsto \left(\frac{\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}}{x} \cdot z\right) \cdot z \]
                      15. metadata-evalN/A

                        \[\leadsto \left(\frac{y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1}{x} \cdot z\right) \cdot z \]
                      16. metadata-evalN/A

                        \[\leadsto \left(\frac{y - \color{blue}{\frac{-7936500793651}{10000000000000000}}}{x} \cdot z\right) \cdot z \]
                      17. lower--.f6484.0

                        \[\leadsto \left(\frac{\color{blue}{y - -0.0007936500793651}}{x} \cdot z\right) \cdot z \]
                    5. Applied rewrites84.0%

                      \[\leadsto \color{blue}{\left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z} \]
                  8. Recombined 3 regimes into one program.
                  9. Add Preprocessing

                  Alternative 11: 62.5% accurate, 2.0× speedup?

                  \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333\\ \mathbf{if}\;t\_0 \leq -40000:\\ \;\;\;\;y \cdot \frac{z \cdot z}{x}\\ \mathbf{elif}\;t\_0 \leq 0.1:\\ \;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}\\ \mathbf{else}:\\ \;\;\;\;\frac{y - -0.0007936500793651}{x} \cdot \left(z \cdot z\right)\\ \end{array} \end{array} \]
                  (FPCore (x y z)
                   :precision binary64
                   (let* ((t_0
                           (+
                            (* (- (* (+ y 0.0007936500793651) z) 0.0027777777777778) z)
                            0.083333333333333)))
                     (if (<= t_0 -40000.0)
                       (* y (/ (* z z) x))
                       (if (<= t_0 0.1)
                         (/
                          (fma
                           (fma 0.0007936500793651 z -0.0027777777777778)
                           z
                           0.083333333333333)
                          x)
                         (* (/ (- y -0.0007936500793651) x) (* z z))))))
                  double code(double x, double y, double z) {
                  	double t_0 = ((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333;
                  	double tmp;
                  	if (t_0 <= -40000.0) {
                  		tmp = y * ((z * z) / x);
                  	} else if (t_0 <= 0.1) {
                  		tmp = fma(fma(0.0007936500793651, z, -0.0027777777777778), z, 0.083333333333333) / x;
                  	} else {
                  		tmp = ((y - -0.0007936500793651) / x) * (z * z);
                  	}
                  	return tmp;
                  }
                  
                  function code(x, y, z)
                  	t_0 = Float64(Float64(Float64(Float64(Float64(y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333)
                  	tmp = 0.0
                  	if (t_0 <= -40000.0)
                  		tmp = Float64(y * Float64(Float64(z * z) / x));
                  	elseif (t_0 <= 0.1)
                  		tmp = Float64(fma(fma(0.0007936500793651, z, -0.0027777777777778), z, 0.083333333333333) / x);
                  	else
                  		tmp = Float64(Float64(Float64(y - -0.0007936500793651) / x) * Float64(z * z));
                  	end
                  	return tmp
                  end
                  
                  code[x_, y_, z_] := Block[{t$95$0 = N[(N[(N[(N[(N[(y + 0.0007936500793651), $MachinePrecision] * z), $MachinePrecision] - 0.0027777777777778), $MachinePrecision] * z), $MachinePrecision] + 0.083333333333333), $MachinePrecision]}, If[LessEqual[t$95$0, -40000.0], N[(y * N[(N[(z * z), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$0, 0.1], N[(N[(N[(0.0007936500793651 * z + -0.0027777777777778), $MachinePrecision] * z + 0.083333333333333), $MachinePrecision] / x), $MachinePrecision], N[(N[(N[(y - -0.0007936500793651), $MachinePrecision] / x), $MachinePrecision] * N[(z * z), $MachinePrecision]), $MachinePrecision]]]]
                  
                  \begin{array}{l}
                  
                  \\
                  \begin{array}{l}
                  t_0 := \left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333\\
                  \mathbf{if}\;t\_0 \leq -40000:\\
                  \;\;\;\;y \cdot \frac{z \cdot z}{x}\\
                  
                  \mathbf{elif}\;t\_0 \leq 0.1:\\
                  \;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}\\
                  
                  \mathbf{else}:\\
                  \;\;\;\;\frac{y - -0.0007936500793651}{x} \cdot \left(z \cdot z\right)\\
                  
                  
                  \end{array}
                  \end{array}
                  
                  Derivation
                  1. Split input into 3 regimes
                  2. if (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64)) < -4e4

                    1. Initial program 93.9%

                      \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
                    2. Add Preprocessing
                    3. Taylor expanded in y around inf

                      \[\leadsto \color{blue}{\frac{y \cdot {z}^{2}}{x}} \]
                    4. Step-by-step derivation
                      1. lower-/.f64N/A

                        \[\leadsto \color{blue}{\frac{y \cdot {z}^{2}}{x}} \]
                      2. *-commutativeN/A

                        \[\leadsto \frac{\color{blue}{{z}^{2} \cdot y}}{x} \]
                      3. lower-*.f64N/A

                        \[\leadsto \frac{\color{blue}{{z}^{2} \cdot y}}{x} \]
                      4. unpow2N/A

                        \[\leadsto \frac{\color{blue}{\left(z \cdot z\right)} \cdot y}{x} \]
                      5. lower-*.f6469.8

                        \[\leadsto \frac{\color{blue}{\left(z \cdot z\right)} \cdot y}{x} \]
                    5. Applied rewrites69.8%

                      \[\leadsto \color{blue}{\frac{\left(z \cdot z\right) \cdot y}{x}} \]
                    6. Step-by-step derivation
                      1. Applied rewrites69.8%

                        \[\leadsto y \cdot \color{blue}{\frac{z \cdot z}{x}} \]

                      if -4e4 < (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64)) < 0.10000000000000001

                      1. Initial program 99.4%

                        \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
                      2. Add Preprocessing
                      3. Taylor expanded in x around 0

                        \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                      4. Step-by-step derivation
                        1. lower-/.f64N/A

                          \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                        2. +-commutativeN/A

                          \[\leadsto \frac{\color{blue}{z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) + \frac{83333333333333}{1000000000000000}}}{x} \]
                        3. *-commutativeN/A

                          \[\leadsto \frac{\color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) \cdot z} + \frac{83333333333333}{1000000000000000}}{x} \]
                        4. lower-fma.f64N/A

                          \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, z, \frac{83333333333333}{1000000000000000}\right)}}{x} \]
                        5. metadata-evalN/A

                          \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \color{blue}{\frac{13888888888889}{5000000000000000} \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                        6. fp-cancel-sub-sign-invN/A

                          \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \left(\mathsf{neg}\left(\frac{13888888888889}{5000000000000000}\right)\right) \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                        7. metadata-evalN/A

                          \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \color{blue}{\frac{-13888888888889}{5000000000000000}} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                        8. *-commutativeN/A

                          \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z} + \frac{-13888888888889}{5000000000000000} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                        9. metadata-evalN/A

                          \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z + \color{blue}{\frac{-13888888888889}{5000000000000000}}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                        10. lower-fma.f64N/A

                          \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{7936500793651}{10000000000000000} + y, z, \frac{-13888888888889}{5000000000000000}\right)}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                        11. +-commutativeN/A

                          \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y + \frac{7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                        12. metadata-evalN/A

                          \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                        13. fp-cancel-sign-sub-invN/A

                          \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                        14. metadata-evalN/A

                          \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                        15. metadata-evalN/A

                          \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                        16. lower--.f6455.6

                          \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - -0.0007936500793651}, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]
                      5. Applied rewrites55.6%

                        \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}} \]
                      6. Taylor expanded in y around 0

                        \[\leadsto \frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot z - \frac{13888888888889}{5000000000000000}\right)}{x} \]
                      7. Step-by-step derivation
                        1. Applied rewrites54.7%

                          \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]

                        if 0.10000000000000001 < (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64))

                        1. Initial program 88.5%

                          \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
                        2. Add Preprocessing
                        3. Taylor expanded in x around 0

                          \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                        4. Step-by-step derivation
                          1. lower-/.f64N/A

                            \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                          2. +-commutativeN/A

                            \[\leadsto \frac{\color{blue}{z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) + \frac{83333333333333}{1000000000000000}}}{x} \]
                          3. *-commutativeN/A

                            \[\leadsto \frac{\color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) \cdot z} + \frac{83333333333333}{1000000000000000}}{x} \]
                          4. lower-fma.f64N/A

                            \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, z, \frac{83333333333333}{1000000000000000}\right)}}{x} \]
                          5. metadata-evalN/A

                            \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \color{blue}{\frac{13888888888889}{5000000000000000} \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                          6. fp-cancel-sub-sign-invN/A

                            \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \left(\mathsf{neg}\left(\frac{13888888888889}{5000000000000000}\right)\right) \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                          7. metadata-evalN/A

                            \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \color{blue}{\frac{-13888888888889}{5000000000000000}} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                          8. *-commutativeN/A

                            \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z} + \frac{-13888888888889}{5000000000000000} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                          9. metadata-evalN/A

                            \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z + \color{blue}{\frac{-13888888888889}{5000000000000000}}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                          10. lower-fma.f64N/A

                            \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{7936500793651}{10000000000000000} + y, z, \frac{-13888888888889}{5000000000000000}\right)}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                          11. +-commutativeN/A

                            \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y + \frac{7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                          12. metadata-evalN/A

                            \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                          13. fp-cancel-sign-sub-invN/A

                            \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                          14. metadata-evalN/A

                            \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                          15. metadata-evalN/A

                            \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                          16. lower--.f6477.6

                            \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - -0.0007936500793651}, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]
                        5. Applied rewrites77.6%

                          \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}} \]
                        6. Taylor expanded in z around inf

                          \[\leadsto \frac{{z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} + y\right)}{\color{blue}{x}} \]
                        7. Step-by-step derivation
                          1. Applied rewrites76.7%

                            \[\leadsto \frac{y - -0.0007936500793651}{x} \cdot \color{blue}{\left(z \cdot z\right)} \]
                        8. Recombined 3 regimes into one program.
                        9. Add Preprocessing

                        Alternative 12: 52.5% accurate, 2.1× speedup?

                        \[\begin{array}{l} \\ \begin{array}{l} t_0 := \left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333\\ \mathbf{if}\;t\_0 \leq -40000 \lor \neg \left(t\_0 \leq 0.1\right):\\ \;\;\;\;y \cdot \frac{z \cdot z}{x}\\ \mathbf{else}:\\ \;\;\;\;\frac{\mathsf{fma}\left(-0.0027777777777778, z, 0.083333333333333\right)}{x}\\ \end{array} \end{array} \]
                        (FPCore (x y z)
                         :precision binary64
                         (let* ((t_0
                                 (+
                                  (* (- (* (+ y 0.0007936500793651) z) 0.0027777777777778) z)
                                  0.083333333333333)))
                           (if (or (<= t_0 -40000.0) (not (<= t_0 0.1)))
                             (* y (/ (* z z) x))
                             (/ (fma -0.0027777777777778 z 0.083333333333333) x))))
                        double code(double x, double y, double z) {
                        	double t_0 = ((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333;
                        	double tmp;
                        	if ((t_0 <= -40000.0) || !(t_0 <= 0.1)) {
                        		tmp = y * ((z * z) / x);
                        	} else {
                        		tmp = fma(-0.0027777777777778, z, 0.083333333333333) / x;
                        	}
                        	return tmp;
                        }
                        
                        function code(x, y, z)
                        	t_0 = Float64(Float64(Float64(Float64(Float64(y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333)
                        	tmp = 0.0
                        	if ((t_0 <= -40000.0) || !(t_0 <= 0.1))
                        		tmp = Float64(y * Float64(Float64(z * z) / x));
                        	else
                        		tmp = Float64(fma(-0.0027777777777778, z, 0.083333333333333) / x);
                        	end
                        	return tmp
                        end
                        
                        code[x_, y_, z_] := Block[{t$95$0 = N[(N[(N[(N[(N[(y + 0.0007936500793651), $MachinePrecision] * z), $MachinePrecision] - 0.0027777777777778), $MachinePrecision] * z), $MachinePrecision] + 0.083333333333333), $MachinePrecision]}, If[Or[LessEqual[t$95$0, -40000.0], N[Not[LessEqual[t$95$0, 0.1]], $MachinePrecision]], N[(y * N[(N[(z * z), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision], N[(N[(-0.0027777777777778 * z + 0.083333333333333), $MachinePrecision] / x), $MachinePrecision]]]
                        
                        \begin{array}{l}
                        
                        \\
                        \begin{array}{l}
                        t_0 := \left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333\\
                        \mathbf{if}\;t\_0 \leq -40000 \lor \neg \left(t\_0 \leq 0.1\right):\\
                        \;\;\;\;y \cdot \frac{z \cdot z}{x}\\
                        
                        \mathbf{else}:\\
                        \;\;\;\;\frac{\mathsf{fma}\left(-0.0027777777777778, z, 0.083333333333333\right)}{x}\\
                        
                        
                        \end{array}
                        \end{array}
                        
                        Derivation
                        1. Split input into 2 regimes
                        2. if (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64)) < -4e4 or 0.10000000000000001 < (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64))

                          1. Initial program 90.4%

                            \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
                          2. Add Preprocessing
                          3. Taylor expanded in y around inf

                            \[\leadsto \color{blue}{\frac{y \cdot {z}^{2}}{x}} \]
                          4. Step-by-step derivation
                            1. lower-/.f64N/A

                              \[\leadsto \color{blue}{\frac{y \cdot {z}^{2}}{x}} \]
                            2. *-commutativeN/A

                              \[\leadsto \frac{\color{blue}{{z}^{2} \cdot y}}{x} \]
                            3. lower-*.f64N/A

                              \[\leadsto \frac{\color{blue}{{z}^{2} \cdot y}}{x} \]
                            4. unpow2N/A

                              \[\leadsto \frac{\color{blue}{\left(z \cdot z\right)} \cdot y}{x} \]
                            5. lower-*.f6459.1

                              \[\leadsto \frac{\color{blue}{\left(z \cdot z\right)} \cdot y}{x} \]
                          5. Applied rewrites59.1%

                            \[\leadsto \color{blue}{\frac{\left(z \cdot z\right) \cdot y}{x}} \]
                          6. Step-by-step derivation
                            1. Applied rewrites60.4%

                              \[\leadsto y \cdot \color{blue}{\frac{z \cdot z}{x}} \]

                            if -4e4 < (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64)) < 0.10000000000000001

                            1. Initial program 99.4%

                              \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
                            2. Add Preprocessing
                            3. Taylor expanded in x around 0

                              \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                            4. Step-by-step derivation
                              1. lower-/.f64N/A

                                \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                              2. +-commutativeN/A

                                \[\leadsto \frac{\color{blue}{z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) + \frac{83333333333333}{1000000000000000}}}{x} \]
                              3. *-commutativeN/A

                                \[\leadsto \frac{\color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) \cdot z} + \frac{83333333333333}{1000000000000000}}{x} \]
                              4. lower-fma.f64N/A

                                \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, z, \frac{83333333333333}{1000000000000000}\right)}}{x} \]
                              5. metadata-evalN/A

                                \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \color{blue}{\frac{13888888888889}{5000000000000000} \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              6. fp-cancel-sub-sign-invN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \left(\mathsf{neg}\left(\frac{13888888888889}{5000000000000000}\right)\right) \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              7. metadata-evalN/A

                                \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \color{blue}{\frac{-13888888888889}{5000000000000000}} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              8. *-commutativeN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z} + \frac{-13888888888889}{5000000000000000} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              9. metadata-evalN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z + \color{blue}{\frac{-13888888888889}{5000000000000000}}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              10. lower-fma.f64N/A

                                \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{7936500793651}{10000000000000000} + y, z, \frac{-13888888888889}{5000000000000000}\right)}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              11. +-commutativeN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y + \frac{7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              12. metadata-evalN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              13. fp-cancel-sign-sub-invN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              14. metadata-evalN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              15. metadata-evalN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              16. lower--.f6455.6

                                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - -0.0007936500793651}, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]
                            5. Applied rewrites55.6%

                              \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}} \]
                            6. Taylor expanded in z around 0

                              \[\leadsto \frac{\frac{83333333333333}{1000000000000000} + \frac{-13888888888889}{5000000000000000} \cdot z}{x} \]
                            7. Step-by-step derivation
                              1. Applied rewrites54.7%

                                \[\leadsto \frac{\mathsf{fma}\left(-0.0027777777777778, z, 0.083333333333333\right)}{x} \]
                            8. Recombined 2 regimes into one program.
                            9. Final simplification58.0%

                              \[\leadsto \begin{array}{l} \mathbf{if}\;\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333 \leq -40000 \lor \neg \left(\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333 \leq 0.1\right):\\ \;\;\;\;y \cdot \frac{z \cdot z}{x}\\ \mathbf{else}:\\ \;\;\;\;\frac{\mathsf{fma}\left(-0.0027777777777778, z, 0.083333333333333\right)}{x}\\ \end{array} \]
                            10. Add Preprocessing

                            Alternative 13: 64.4% accurate, 2.8× speedup?

                            \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333 \leq 3 \cdot 10^{+252}:\\ \;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}\\ \mathbf{else}:\\ \;\;\;\;\left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z\\ \end{array} \end{array} \]
                            (FPCore (x y z)
                             :precision binary64
                             (if (<=
                                  (+
                                   (* (- (* (+ y 0.0007936500793651) z) 0.0027777777777778) z)
                                   0.083333333333333)
                                  3e+252)
                               (/
                                (fma
                                 (fma (- y -0.0007936500793651) z -0.0027777777777778)
                                 z
                                 0.083333333333333)
                                x)
                               (* (* (/ (- y -0.0007936500793651) x) z) z)))
                            double code(double x, double y, double z) {
                            	double tmp;
                            	if ((((((y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) <= 3e+252) {
                            		tmp = fma(fma((y - -0.0007936500793651), z, -0.0027777777777778), z, 0.083333333333333) / x;
                            	} else {
                            		tmp = (((y - -0.0007936500793651) / x) * z) * z;
                            	}
                            	return tmp;
                            }
                            
                            function code(x, y, z)
                            	tmp = 0.0
                            	if (Float64(Float64(Float64(Float64(Float64(y + 0.0007936500793651) * z) - 0.0027777777777778) * z) + 0.083333333333333) <= 3e+252)
                            		tmp = Float64(fma(fma(Float64(y - -0.0007936500793651), z, -0.0027777777777778), z, 0.083333333333333) / x);
                            	else
                            		tmp = Float64(Float64(Float64(Float64(y - -0.0007936500793651) / x) * z) * z);
                            	end
                            	return tmp
                            end
                            
                            code[x_, y_, z_] := If[LessEqual[N[(N[(N[(N[(N[(y + 0.0007936500793651), $MachinePrecision] * z), $MachinePrecision] - 0.0027777777777778), $MachinePrecision] * z), $MachinePrecision] + 0.083333333333333), $MachinePrecision], 3e+252], N[(N[(N[(N[(y - -0.0007936500793651), $MachinePrecision] * z + -0.0027777777777778), $MachinePrecision] * z + 0.083333333333333), $MachinePrecision] / x), $MachinePrecision], N[(N[(N[(N[(y - -0.0007936500793651), $MachinePrecision] / x), $MachinePrecision] * z), $MachinePrecision] * z), $MachinePrecision]]
                            
                            \begin{array}{l}
                            
                            \\
                            \begin{array}{l}
                            \mathbf{if}\;\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333 \leq 3 \cdot 10^{+252}:\\
                            \;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}\\
                            
                            \mathbf{else}:\\
                            \;\;\;\;\left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z\\
                            
                            
                            \end{array}
                            \end{array}
                            
                            Derivation
                            1. Split input into 2 regimes
                            2. if (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64)) < 2.99999999999999989e252

                              1. Initial program 97.9%

                                \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
                              2. Add Preprocessing
                              3. Taylor expanded in x around 0

                                \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                              4. Step-by-step derivation
                                1. lower-/.f64N/A

                                  \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                                2. +-commutativeN/A

                                  \[\leadsto \frac{\color{blue}{z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) + \frac{83333333333333}{1000000000000000}}}{x} \]
                                3. *-commutativeN/A

                                  \[\leadsto \frac{\color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) \cdot z} + \frac{83333333333333}{1000000000000000}}{x} \]
                                4. lower-fma.f64N/A

                                  \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, z, \frac{83333333333333}{1000000000000000}\right)}}{x} \]
                                5. metadata-evalN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \color{blue}{\frac{13888888888889}{5000000000000000} \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                6. fp-cancel-sub-sign-invN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \left(\mathsf{neg}\left(\frac{13888888888889}{5000000000000000}\right)\right) \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                7. metadata-evalN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \color{blue}{\frac{-13888888888889}{5000000000000000}} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                8. *-commutativeN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z} + \frac{-13888888888889}{5000000000000000} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                9. metadata-evalN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z + \color{blue}{\frac{-13888888888889}{5000000000000000}}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                10. lower-fma.f64N/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{7936500793651}{10000000000000000} + y, z, \frac{-13888888888889}{5000000000000000}\right)}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                11. +-commutativeN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y + \frac{7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                12. metadata-evalN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                13. fp-cancel-sign-sub-invN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                14. metadata-evalN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                15. metadata-evalN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                16. lower--.f6461.1

                                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - -0.0007936500793651}, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]
                              5. Applied rewrites61.1%

                                \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}} \]

                              if 2.99999999999999989e252 < (+.f64 (*.f64 (-.f64 (*.f64 (+.f64 y #s(literal 7936500793651/10000000000000000 binary64)) z) #s(literal 13888888888889/5000000000000000 binary64)) z) #s(literal 83333333333333/1000000000000000 binary64))

                              1. Initial program 84.6%

                                \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
                              2. Add Preprocessing
                              3. Taylor expanded in z around inf

                                \[\leadsto \color{blue}{{z}^{2} \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)} \]
                              4. Step-by-step derivation
                                1. *-commutativeN/A

                                  \[\leadsto \color{blue}{\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot {z}^{2}} \]
                                2. unpow2N/A

                                  \[\leadsto \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot \color{blue}{\left(z \cdot z\right)} \]
                                3. associate-*r*N/A

                                  \[\leadsto \color{blue}{\left(\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot z\right) \cdot z} \]
                                4. *-commutativeN/A

                                  \[\leadsto \color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)\right)} \cdot z \]
                                5. lower-*.f64N/A

                                  \[\leadsto \color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right)\right) \cdot z} \]
                                6. *-commutativeN/A

                                  \[\leadsto \color{blue}{\left(\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot z\right)} \cdot z \]
                                7. lower-*.f64N/A

                                  \[\leadsto \color{blue}{\left(\left(\frac{7936500793651}{10000000000000000} \cdot \frac{1}{x} + \frac{y}{x}\right) \cdot z\right)} \cdot z \]
                                8. associate-*r/N/A

                                  \[\leadsto \left(\left(\color{blue}{\frac{\frac{7936500793651}{10000000000000000} \cdot 1}{x}} + \frac{y}{x}\right) \cdot z\right) \cdot z \]
                                9. metadata-evalN/A

                                  \[\leadsto \left(\left(\frac{\color{blue}{\frac{7936500793651}{10000000000000000}}}{x} + \frac{y}{x}\right) \cdot z\right) \cdot z \]
                                10. div-add-revN/A

                                  \[\leadsto \left(\color{blue}{\frac{\frac{7936500793651}{10000000000000000} + y}{x}} \cdot z\right) \cdot z \]
                                11. lower-/.f64N/A

                                  \[\leadsto \left(\color{blue}{\frac{\frac{7936500793651}{10000000000000000} + y}{x}} \cdot z\right) \cdot z \]
                                12. +-commutativeN/A

                                  \[\leadsto \left(\frac{\color{blue}{y + \frac{7936500793651}{10000000000000000}}}{x} \cdot z\right) \cdot z \]
                                13. metadata-evalN/A

                                  \[\leadsto \left(\frac{y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}}{x} \cdot z\right) \cdot z \]
                                14. fp-cancel-sign-sub-invN/A

                                  \[\leadsto \left(\frac{\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}}{x} \cdot z\right) \cdot z \]
                                15. metadata-evalN/A

                                  \[\leadsto \left(\frac{y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1}{x} \cdot z\right) \cdot z \]
                                16. metadata-evalN/A

                                  \[\leadsto \left(\frac{y - \color{blue}{\frac{-7936500793651}{10000000000000000}}}{x} \cdot z\right) \cdot z \]
                                17. lower--.f6491.9

                                  \[\leadsto \left(\frac{\color{blue}{y - -0.0007936500793651}}{x} \cdot z\right) \cdot z \]
                              5. Applied rewrites91.9%

                                \[\leadsto \color{blue}{\left(\frac{y - -0.0007936500793651}{x} \cdot z\right) \cdot z} \]
                            3. Recombined 2 regimes into one program.
                            4. Add Preprocessing

                            Alternative 14: 64.7% accurate, 3.9× speedup?

                            \[\begin{array}{l} \\ \mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), \frac{z}{x}, \frac{0.083333333333333}{x}\right) \end{array} \]
                            (FPCore (x y z)
                             :precision binary64
                             (fma
                              (fma (- y -0.0007936500793651) z -0.0027777777777778)
                              (/ z x)
                              (/ 0.083333333333333 x)))
                            double code(double x, double y, double z) {
                            	return fma(fma((y - -0.0007936500793651), z, -0.0027777777777778), (z / x), (0.083333333333333 / x));
                            }
                            
                            function code(x, y, z)
                            	return fma(fma(Float64(y - -0.0007936500793651), z, -0.0027777777777778), Float64(z / x), Float64(0.083333333333333 / x))
                            end
                            
                            code[x_, y_, z_] := N[(N[(N[(y - -0.0007936500793651), $MachinePrecision] * z + -0.0027777777777778), $MachinePrecision] * N[(z / x), $MachinePrecision] + N[(0.083333333333333 / x), $MachinePrecision]), $MachinePrecision]
                            
                            \begin{array}{l}
                            
                            \\
                            \mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), \frac{z}{x}, \frac{0.083333333333333}{x}\right)
                            \end{array}
                            
                            Derivation
                            1. Initial program 94.2%

                              \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
                            2. Add Preprocessing
                            3. Taylor expanded in x around 0

                              \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                            4. Step-by-step derivation
                              1. lower-/.f64N/A

                                \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                              2. +-commutativeN/A

                                \[\leadsto \frac{\color{blue}{z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) + \frac{83333333333333}{1000000000000000}}}{x} \]
                              3. *-commutativeN/A

                                \[\leadsto \frac{\color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) \cdot z} + \frac{83333333333333}{1000000000000000}}{x} \]
                              4. lower-fma.f64N/A

                                \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, z, \frac{83333333333333}{1000000000000000}\right)}}{x} \]
                              5. metadata-evalN/A

                                \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \color{blue}{\frac{13888888888889}{5000000000000000} \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              6. fp-cancel-sub-sign-invN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \left(\mathsf{neg}\left(\frac{13888888888889}{5000000000000000}\right)\right) \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              7. metadata-evalN/A

                                \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \color{blue}{\frac{-13888888888889}{5000000000000000}} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              8. *-commutativeN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z} + \frac{-13888888888889}{5000000000000000} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              9. metadata-evalN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z + \color{blue}{\frac{-13888888888889}{5000000000000000}}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              10. lower-fma.f64N/A

                                \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{7936500793651}{10000000000000000} + y, z, \frac{-13888888888889}{5000000000000000}\right)}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              11. +-commutativeN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y + \frac{7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              12. metadata-evalN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              13. fp-cancel-sign-sub-invN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              14. metadata-evalN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              15. metadata-evalN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                              16. lower--.f6466.9

                                \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - -0.0007936500793651}, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]
                            5. Applied rewrites66.9%

                              \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}} \]
                            6. Step-by-step derivation
                              1. Applied rewrites69.2%

                                \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), \color{blue}{\frac{z}{x}}, \frac{0.083333333333333}{x}\right) \]
                              2. Add Preprocessing

                              Alternative 15: 29.5% accurate, 8.2× speedup?

                              \[\begin{array}{l} \\ \frac{\mathsf{fma}\left(-0.0027777777777778, z, 0.083333333333333\right)}{x} \end{array} \]
                              (FPCore (x y z)
                               :precision binary64
                               (/ (fma -0.0027777777777778 z 0.083333333333333) x))
                              double code(double x, double y, double z) {
                              	return fma(-0.0027777777777778, z, 0.083333333333333) / x;
                              }
                              
                              function code(x, y, z)
                              	return Float64(fma(-0.0027777777777778, z, 0.083333333333333) / x)
                              end
                              
                              code[x_, y_, z_] := N[(N[(-0.0027777777777778 * z + 0.083333333333333), $MachinePrecision] / x), $MachinePrecision]
                              
                              \begin{array}{l}
                              
                              \\
                              \frac{\mathsf{fma}\left(-0.0027777777777778, z, 0.083333333333333\right)}{x}
                              \end{array}
                              
                              Derivation
                              1. Initial program 94.2%

                                \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
                              2. Add Preprocessing
                              3. Taylor expanded in x around 0

                                \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                              4. Step-by-step derivation
                                1. lower-/.f64N/A

                                  \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                                2. +-commutativeN/A

                                  \[\leadsto \frac{\color{blue}{z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) + \frac{83333333333333}{1000000000000000}}}{x} \]
                                3. *-commutativeN/A

                                  \[\leadsto \frac{\color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) \cdot z} + \frac{83333333333333}{1000000000000000}}{x} \]
                                4. lower-fma.f64N/A

                                  \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, z, \frac{83333333333333}{1000000000000000}\right)}}{x} \]
                                5. metadata-evalN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \color{blue}{\frac{13888888888889}{5000000000000000} \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                6. fp-cancel-sub-sign-invN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \left(\mathsf{neg}\left(\frac{13888888888889}{5000000000000000}\right)\right) \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                7. metadata-evalN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \color{blue}{\frac{-13888888888889}{5000000000000000}} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                8. *-commutativeN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z} + \frac{-13888888888889}{5000000000000000} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                9. metadata-evalN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z + \color{blue}{\frac{-13888888888889}{5000000000000000}}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                10. lower-fma.f64N/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{7936500793651}{10000000000000000} + y, z, \frac{-13888888888889}{5000000000000000}\right)}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                11. +-commutativeN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y + \frac{7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                12. metadata-evalN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                13. fp-cancel-sign-sub-invN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                14. metadata-evalN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                15. metadata-evalN/A

                                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                16. lower--.f6466.9

                                  \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - -0.0007936500793651}, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]
                              5. Applied rewrites66.9%

                                \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}} \]
                              6. Taylor expanded in z around 0

                                \[\leadsto \frac{\frac{83333333333333}{1000000000000000} + \frac{-13888888888889}{5000000000000000} \cdot z}{x} \]
                              7. Step-by-step derivation
                                1. Applied rewrites31.5%

                                  \[\leadsto \frac{\mathsf{fma}\left(-0.0027777777777778, z, 0.083333333333333\right)}{x} \]
                                2. Add Preprocessing

                                Alternative 16: 23.7% accurate, 12.3× speedup?

                                \[\begin{array}{l} \\ \frac{0.083333333333333}{x} \end{array} \]
                                (FPCore (x y z) :precision binary64 (/ 0.083333333333333 x))
                                double code(double x, double y, double z) {
                                	return 0.083333333333333 / 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, y, z)
                                use fmin_fmax_functions
                                    real(8), intent (in) :: x
                                    real(8), intent (in) :: y
                                    real(8), intent (in) :: z
                                    code = 0.083333333333333d0 / x
                                end function
                                
                                public static double code(double x, double y, double z) {
                                	return 0.083333333333333 / x;
                                }
                                
                                def code(x, y, z):
                                	return 0.083333333333333 / x
                                
                                function code(x, y, z)
                                	return Float64(0.083333333333333 / x)
                                end
                                
                                function tmp = code(x, y, z)
                                	tmp = 0.083333333333333 / x;
                                end
                                
                                code[x_, y_, z_] := N[(0.083333333333333 / x), $MachinePrecision]
                                
                                \begin{array}{l}
                                
                                \\
                                \frac{0.083333333333333}{x}
                                \end{array}
                                
                                Derivation
                                1. Initial program 94.2%

                                  \[\left(\left(\left(x - 0.5\right) \cdot \log x - x\right) + 0.91893853320467\right) + \frac{\left(\left(y + 0.0007936500793651\right) \cdot z - 0.0027777777777778\right) \cdot z + 0.083333333333333}{x} \]
                                2. Add Preprocessing
                                3. Taylor expanded in x around 0

                                  \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                                4. Step-by-step derivation
                                  1. lower-/.f64N/A

                                    \[\leadsto \color{blue}{\frac{\frac{83333333333333}{1000000000000000} + z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right)}{x}} \]
                                  2. +-commutativeN/A

                                    \[\leadsto \frac{\color{blue}{z \cdot \left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) + \frac{83333333333333}{1000000000000000}}}{x} \]
                                  3. *-commutativeN/A

                                    \[\leadsto \frac{\color{blue}{\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}\right) \cdot z} + \frac{83333333333333}{1000000000000000}}{x} \]
                                  4. lower-fma.f64N/A

                                    \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \frac{13888888888889}{5000000000000000}, z, \frac{83333333333333}{1000000000000000}\right)}}{x} \]
                                  5. metadata-evalN/A

                                    \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) - \color{blue}{\frac{13888888888889}{5000000000000000} \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                  6. fp-cancel-sub-sign-invN/A

                                    \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \left(\mathsf{neg}\left(\frac{13888888888889}{5000000000000000}\right)\right) \cdot 1}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                  7. metadata-evalN/A

                                    \[\leadsto \frac{\mathsf{fma}\left(z \cdot \left(\frac{7936500793651}{10000000000000000} + y\right) + \color{blue}{\frac{-13888888888889}{5000000000000000}} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                  8. *-commutativeN/A

                                    \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z} + \frac{-13888888888889}{5000000000000000} \cdot 1, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                  9. metadata-evalN/A

                                    \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{7936500793651}{10000000000000000} + y\right) \cdot z + \color{blue}{\frac{-13888888888889}{5000000000000000}}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                  10. lower-fma.f64N/A

                                    \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{7936500793651}{10000000000000000} + y, z, \frac{-13888888888889}{5000000000000000}\right)}, z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                  11. +-commutativeN/A

                                    \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y + \frac{7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                  12. metadata-evalN/A

                                    \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y + \color{blue}{\frac{7936500793651}{10000000000000000} \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                  13. fp-cancel-sign-sub-invN/A

                                    \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - \left(\mathsf{neg}\left(\frac{7936500793651}{10000000000000000}\right)\right) \cdot 1}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                  14. metadata-evalN/A

                                    \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}} \cdot 1, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                  15. metadata-evalN/A

                                    \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(y - \color{blue}{\frac{-7936500793651}{10000000000000000}}, z, \frac{-13888888888889}{5000000000000000}\right), z, \frac{83333333333333}{1000000000000000}\right)}{x} \]
                                  16. lower--.f6466.9

                                    \[\leadsto \frac{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{y - -0.0007936500793651}, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x} \]
                                5. Applied rewrites66.9%

                                  \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(y - -0.0007936500793651, z, -0.0027777777777778\right), z, 0.083333333333333\right)}{x}} \]
                                6. Taylor expanded in z around 0

                                  \[\leadsto \frac{\frac{83333333333333}{1000000000000000}}{x} \]
                                7. Step-by-step derivation
                                  1. Applied rewrites25.0%

                                    \[\leadsto \frac{0.083333333333333}{x} \]
                                  2. Add Preprocessing

                                  Developer Target 1: 98.4% accurate, 0.9× speedup?

                                  \[\begin{array}{l} \\ \left(\left(\left(x - 0.5\right) \cdot \log x + \left(0.91893853320467 - x\right)\right) + \frac{0.083333333333333}{x}\right) + \frac{z}{x} \cdot \left(z \cdot \left(y + 0.0007936500793651\right) - 0.0027777777777778\right) \end{array} \]
                                  (FPCore (x y z)
                                   :precision binary64
                                   (+
                                    (+ (+ (* (- x 0.5) (log x)) (- 0.91893853320467 x)) (/ 0.083333333333333 x))
                                    (* (/ z x) (- (* z (+ y 0.0007936500793651)) 0.0027777777777778))))
                                  double code(double x, double y, double z) {
                                  	return ((((x - 0.5) * log(x)) + (0.91893853320467 - x)) + (0.083333333333333 / x)) + ((z / x) * ((z * (y + 0.0007936500793651)) - 0.0027777777777778));
                                  }
                                  
                                  module fmin_fmax_functions
                                      implicit none
                                      private
                                      public fmax
                                      public fmin
                                  
                                      interface fmax
                                          module procedure fmax88
                                          module procedure fmax44
                                          module procedure fmax84
                                          module procedure fmax48
                                      end interface
                                      interface fmin
                                          module procedure fmin88
                                          module procedure fmin44
                                          module procedure fmin84
                                          module procedure fmin48
                                      end interface
                                  contains
                                      real(8) function fmax88(x, y) result (res)
                                          real(8), intent (in) :: x
                                          real(8), intent (in) :: y
                                          res = merge(y, merge(x, max(x, y), y /= y), x /= x)
                                      end function
                                      real(4) function fmax44(x, y) result (res)
                                          real(4), intent (in) :: x
                                          real(4), intent (in) :: y
                                          res = merge(y, merge(x, max(x, y), y /= y), x /= x)
                                      end function
                                      real(8) function fmax84(x, y) result(res)
                                          real(8), intent (in) :: x
                                          real(4), intent (in) :: y
                                          res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
                                      end function
                                      real(8) function fmax48(x, y) result(res)
                                          real(4), intent (in) :: x
                                          real(8), intent (in) :: y
                                          res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
                                      end function
                                      real(8) function fmin88(x, y) result (res)
                                          real(8), intent (in) :: x
                                          real(8), intent (in) :: y
                                          res = merge(y, merge(x, min(x, y), y /= y), x /= x)
                                      end function
                                      real(4) function fmin44(x, y) result (res)
                                          real(4), intent (in) :: x
                                          real(4), intent (in) :: y
                                          res = merge(y, merge(x, min(x, y), y /= y), x /= x)
                                      end function
                                      real(8) function fmin84(x, y) result(res)
                                          real(8), intent (in) :: x
                                          real(4), intent (in) :: y
                                          res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
                                      end function
                                      real(8) function fmin48(x, y) result(res)
                                          real(4), intent (in) :: x
                                          real(8), intent (in) :: y
                                          res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
                                      end function
                                  end module
                                  
                                  real(8) function code(x, y, z)
                                  use fmin_fmax_functions
                                      real(8), intent (in) :: x
                                      real(8), intent (in) :: y
                                      real(8), intent (in) :: z
                                      code = ((((x - 0.5d0) * log(x)) + (0.91893853320467d0 - x)) + (0.083333333333333d0 / x)) + ((z / x) * ((z * (y + 0.0007936500793651d0)) - 0.0027777777777778d0))
                                  end function
                                  
                                  public static double code(double x, double y, double z) {
                                  	return ((((x - 0.5) * Math.log(x)) + (0.91893853320467 - x)) + (0.083333333333333 / x)) + ((z / x) * ((z * (y + 0.0007936500793651)) - 0.0027777777777778));
                                  }
                                  
                                  def code(x, y, z):
                                  	return ((((x - 0.5) * math.log(x)) + (0.91893853320467 - x)) + (0.083333333333333 / x)) + ((z / x) * ((z * (y + 0.0007936500793651)) - 0.0027777777777778))
                                  
                                  function code(x, y, z)
                                  	return Float64(Float64(Float64(Float64(Float64(x - 0.5) * log(x)) + Float64(0.91893853320467 - x)) + Float64(0.083333333333333 / x)) + Float64(Float64(z / x) * Float64(Float64(z * Float64(y + 0.0007936500793651)) - 0.0027777777777778)))
                                  end
                                  
                                  function tmp = code(x, y, z)
                                  	tmp = ((((x - 0.5) * log(x)) + (0.91893853320467 - x)) + (0.083333333333333 / x)) + ((z / x) * ((z * (y + 0.0007936500793651)) - 0.0027777777777778));
                                  end
                                  
                                  code[x_, y_, z_] := N[(N[(N[(N[(N[(x - 0.5), $MachinePrecision] * N[Log[x], $MachinePrecision]), $MachinePrecision] + N[(0.91893853320467 - x), $MachinePrecision]), $MachinePrecision] + N[(0.083333333333333 / x), $MachinePrecision]), $MachinePrecision] + N[(N[(z / x), $MachinePrecision] * N[(N[(z * N[(y + 0.0007936500793651), $MachinePrecision]), $MachinePrecision] - 0.0027777777777778), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
                                  
                                  \begin{array}{l}
                                  
                                  \\
                                  \left(\left(\left(x - 0.5\right) \cdot \log x + \left(0.91893853320467 - x\right)\right) + \frac{0.083333333333333}{x}\right) + \frac{z}{x} \cdot \left(z \cdot \left(y + 0.0007936500793651\right) - 0.0027777777777778\right)
                                  \end{array}
                                  

                                  Reproduce

                                  ?
                                  herbie shell --seed 2025017 
                                  (FPCore (x y z)
                                    :name "Numeric.SpecFunctions:$slogFactorial from math-functions-0.1.5.2, B"
                                    :precision binary64
                                  
                                    :alt
                                    (! :herbie-platform default (+ (+ (+ (* (- x 1/2) (log x)) (- 91893853320467/100000000000000 x)) (/ 83333333333333/1000000000000000 x)) (* (/ z x) (- (* z (+ y 7936500793651/10000000000000000)) 13888888888889/5000000000000000))))
                                  
                                    (+ (+ (- (* (- x 0.5) (log x)) x) 0.91893853320467) (/ (+ (* (- (* (+ y 0.0007936500793651) z) 0.0027777777777778) z) 0.083333333333333) x)))