Kahan p13 Example 2

Percentage Accurate: 99.9% → 100.0%
Time: 8.2s
Alternatives: 11
Speedup: 1.6×

Specification

?
\[\begin{array}{l} \\ \begin{array}{l} t_1 := 2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\\ t_2 := t\_1 \cdot t\_1\\ \frac{1 + t\_2}{2 + t\_2} \end{array} \end{array} \]
(FPCore (t)
 :precision binary64
 (let* ((t_1 (- 2.0 (/ (/ 2.0 t) (+ 1.0 (/ 1.0 t))))) (t_2 (* t_1 t_1)))
   (/ (+ 1.0 t_2) (+ 2.0 t_2))))
double code(double t) {
	double t_1 = 2.0 - ((2.0 / t) / (1.0 + (1.0 / t)));
	double t_2 = t_1 * t_1;
	return (1.0 + t_2) / (2.0 + t_2);
}
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(t)
use fmin_fmax_functions
    real(8), intent (in) :: t
    real(8) :: t_1
    real(8) :: t_2
    t_1 = 2.0d0 - ((2.0d0 / t) / (1.0d0 + (1.0d0 / t)))
    t_2 = t_1 * t_1
    code = (1.0d0 + t_2) / (2.0d0 + t_2)
end function
public static double code(double t) {
	double t_1 = 2.0 - ((2.0 / t) / (1.0 + (1.0 / t)));
	double t_2 = t_1 * t_1;
	return (1.0 + t_2) / (2.0 + t_2);
}
def code(t):
	t_1 = 2.0 - ((2.0 / t) / (1.0 + (1.0 / t)))
	t_2 = t_1 * t_1
	return (1.0 + t_2) / (2.0 + t_2)
function code(t)
	t_1 = Float64(2.0 - Float64(Float64(2.0 / t) / Float64(1.0 + Float64(1.0 / t))))
	t_2 = Float64(t_1 * t_1)
	return Float64(Float64(1.0 + t_2) / Float64(2.0 + t_2))
end
function tmp = code(t)
	t_1 = 2.0 - ((2.0 / t) / (1.0 + (1.0 / t)));
	t_2 = t_1 * t_1;
	tmp = (1.0 + t_2) / (2.0 + t_2);
end
code[t_] := Block[{t$95$1 = N[(2.0 - N[(N[(2.0 / t), $MachinePrecision] / N[(1.0 + N[(1.0 / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(t$95$1 * t$95$1), $MachinePrecision]}, N[(N[(1.0 + t$95$2), $MachinePrecision] / N[(2.0 + t$95$2), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
t_1 := 2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\\
t_2 := t\_1 \cdot t\_1\\
\frac{1 + t\_2}{2 + t\_2}
\end{array}
\end{array}

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

Herbie found 11 alternatives:

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

Initial Program: 99.9% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_1 := 2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\\ t_2 := t\_1 \cdot t\_1\\ \frac{1 + t\_2}{2 + t\_2} \end{array} \end{array} \]
(FPCore (t)
 :precision binary64
 (let* ((t_1 (- 2.0 (/ (/ 2.0 t) (+ 1.0 (/ 1.0 t))))) (t_2 (* t_1 t_1)))
   (/ (+ 1.0 t_2) (+ 2.0 t_2))))
double code(double t) {
	double t_1 = 2.0 - ((2.0 / t) / (1.0 + (1.0 / t)));
	double t_2 = t_1 * t_1;
	return (1.0 + t_2) / (2.0 + t_2);
}
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(t)
use fmin_fmax_functions
    real(8), intent (in) :: t
    real(8) :: t_1
    real(8) :: t_2
    t_1 = 2.0d0 - ((2.0d0 / t) / (1.0d0 + (1.0d0 / t)))
    t_2 = t_1 * t_1
    code = (1.0d0 + t_2) / (2.0d0 + t_2)
end function
public static double code(double t) {
	double t_1 = 2.0 - ((2.0 / t) / (1.0 + (1.0 / t)));
	double t_2 = t_1 * t_1;
	return (1.0 + t_2) / (2.0 + t_2);
}
def code(t):
	t_1 = 2.0 - ((2.0 / t) / (1.0 + (1.0 / t)))
	t_2 = t_1 * t_1
	return (1.0 + t_2) / (2.0 + t_2)
function code(t)
	t_1 = Float64(2.0 - Float64(Float64(2.0 / t) / Float64(1.0 + Float64(1.0 / t))))
	t_2 = Float64(t_1 * t_1)
	return Float64(Float64(1.0 + t_2) / Float64(2.0 + t_2))
end
function tmp = code(t)
	t_1 = 2.0 - ((2.0 / t) / (1.0 + (1.0 / t)));
	t_2 = t_1 * t_1;
	tmp = (1.0 + t_2) / (2.0 + t_2);
end
code[t_] := Block[{t$95$1 = N[(2.0 - N[(N[(2.0 / t), $MachinePrecision] / N[(1.0 + N[(1.0 / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(t$95$1 * t$95$1), $MachinePrecision]}, N[(N[(1.0 + t$95$2), $MachinePrecision] / N[(2.0 + t$95$2), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
t_1 := 2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\\
t_2 := t\_1 \cdot t\_1\\
\frac{1 + t\_2}{2 + t\_2}
\end{array}
\end{array}

Alternative 1: 100.0% accurate, 1.5× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_1 := 2 - \frac{2}{t - -1}\\ t_2 := \mathsf{fma}\left(t\_1, t\_1, 1\right)\\ \frac{t\_2}{t\_2 + 1} \end{array} \end{array} \]
(FPCore (t)
 :precision binary64
 (let* ((t_1 (- 2.0 (/ 2.0 (- t -1.0)))) (t_2 (fma t_1 t_1 1.0)))
   (/ t_2 (+ t_2 1.0))))
double code(double t) {
	double t_1 = 2.0 - (2.0 / (t - -1.0));
	double t_2 = fma(t_1, t_1, 1.0);
	return t_2 / (t_2 + 1.0);
}
function code(t)
	t_1 = Float64(2.0 - Float64(2.0 / Float64(t - -1.0)))
	t_2 = fma(t_1, t_1, 1.0)
	return Float64(t_2 / Float64(t_2 + 1.0))
end
code[t_] := Block[{t$95$1 = N[(2.0 - N[(2.0 / N[(t - -1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(t$95$1 * t$95$1 + 1.0), $MachinePrecision]}, N[(t$95$2 / N[(t$95$2 + 1.0), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
t_1 := 2 - \frac{2}{t - -1}\\
t_2 := \mathsf{fma}\left(t\_1, t\_1, 1\right)\\
\frac{t\_2}{t\_2 + 1}
\end{array}
\end{array}
Derivation
  1. Initial program 99.9%

    \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
  2. Step-by-step derivation
    1. Applied rewrites100.0%

      \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 2\right)}} \]
    2. Step-by-step derivation
      1. lift-fma.f64N/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\color{blue}{\left(2 - \frac{2}{t + 1}\right) \cdot \left(2 - \frac{2}{t + 1}\right) + 2}} \]
      2. lift--.f64N/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\color{blue}{\left(2 - \frac{2}{t + 1}\right)} \cdot \left(2 - \frac{2}{t + 1}\right) + 2} \]
      3. lift-+.f64N/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\left(2 - \frac{2}{\color{blue}{t + 1}}\right) \cdot \left(2 - \frac{2}{t + 1}\right) + 2} \]
      4. lift-/.f64N/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\left(2 - \color{blue}{\frac{2}{t + 1}}\right) \cdot \left(2 - \frac{2}{t + 1}\right) + 2} \]
      5. lift--.f64N/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\left(2 - \frac{2}{t + 1}\right) \cdot \color{blue}{\left(2 - \frac{2}{t + 1}\right)} + 2} \]
      6. lift-+.f64N/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\left(2 - \frac{2}{t + 1}\right) \cdot \left(2 - \frac{2}{\color{blue}{t + 1}}\right) + 2} \]
      7. lift-/.f64N/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\left(2 - \frac{2}{t + 1}\right) \cdot \left(2 - \color{blue}{\frac{2}{t + 1}}\right) + 2} \]
      8. metadata-evalN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\left(2 - \frac{2}{t + 1}\right) \cdot \left(2 - \frac{2}{t + 1}\right) + \color{blue}{\left(1 + 1\right)}} \]
      9. associate-+r+N/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\color{blue}{\left(\left(2 - \frac{2}{t + 1}\right) \cdot \left(2 - \frac{2}{t + 1}\right) + 1\right) + 1}} \]
      10. lower-+.f64N/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\color{blue}{\left(\left(2 - \frac{2}{t + 1}\right) \cdot \left(2 - \frac{2}{t + 1}\right) + 1\right) + 1}} \]
    3. Applied rewrites100.0%

      \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\color{blue}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1}} \]
    4. Step-by-step derivation
      1. lift-+.f64N/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{\color{blue}{t + 1}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      2. rgt-mult-inverseN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + \color{blue}{t \cdot \frac{1}{t}}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      3. fp-cancel-sign-subN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{\color{blue}{t - \left(\mathsf{neg}\left(t\right)\right) \cdot \frac{1}{t}}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      4. lift-neg.f64N/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \color{blue}{\left(-t\right)} \cdot \frac{1}{t}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      5. metadata-evalN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \left(-t\right) \cdot \frac{\color{blue}{\mathsf{neg}\left(-1\right)}}{t}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      6. distribute-frac-negN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \left(-t\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\frac{-1}{t}\right)\right)}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      7. distribute-rgt-neg-outN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \color{blue}{\left(\mathsf{neg}\left(\left(-t\right) \cdot \frac{-1}{t}\right)\right)}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      8. frac-2neg-revN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \left(\mathsf{neg}\left(\left(-t\right) \cdot \color{blue}{\frac{\mathsf{neg}\left(-1\right)}{\mathsf{neg}\left(t\right)}}\right)\right)}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      9. metadata-evalN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \left(\mathsf{neg}\left(\left(-t\right) \cdot \frac{\color{blue}{1}}{\mathsf{neg}\left(t\right)}\right)\right)}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      10. lift-neg.f64N/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \left(\mathsf{neg}\left(\left(-t\right) \cdot \frac{1}{\color{blue}{-t}}\right)\right)}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      11. rgt-mult-inverseN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      12. metadata-evalN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \color{blue}{-1}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      13. lower--.f64100.0

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{\color{blue}{t - -1}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
    5. Applied rewrites100.0%

      \[\leadsto \frac{\mathsf{fma}\left(2 - \color{blue}{\frac{2}{t - -1}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
    6. Step-by-step derivation
      1. lift-+.f64N/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{\color{blue}{t + 1}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      2. rgt-mult-inverseN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t + \color{blue}{t \cdot \frac{1}{t}}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      3. fp-cancel-sign-subN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{\color{blue}{t - \left(\mathsf{neg}\left(t\right)\right) \cdot \frac{1}{t}}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      4. lift-neg.f64N/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \color{blue}{\left(-t\right)} \cdot \frac{1}{t}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      5. metadata-evalN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \left(-t\right) \cdot \frac{\color{blue}{\mathsf{neg}\left(-1\right)}}{t}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      6. distribute-frac-negN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \left(-t\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\frac{-1}{t}\right)\right)}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      7. distribute-rgt-neg-outN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \color{blue}{\left(\mathsf{neg}\left(\left(-t\right) \cdot \frac{-1}{t}\right)\right)}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      8. frac-2neg-revN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \left(\mathsf{neg}\left(\left(-t\right) \cdot \color{blue}{\frac{\mathsf{neg}\left(-1\right)}{\mathsf{neg}\left(t\right)}}\right)\right)}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      9. metadata-evalN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \left(\mathsf{neg}\left(\left(-t\right) \cdot \frac{\color{blue}{1}}{\mathsf{neg}\left(t\right)}\right)\right)}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      10. lift-neg.f64N/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \left(\mathsf{neg}\left(\left(-t\right) \cdot \frac{1}{\color{blue}{-t}}\right)\right)}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      11. rgt-mult-inverseN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      12. metadata-evalN/A

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \color{blue}{-1}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
      13. lower--.f64100.0

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{\color{blue}{t - -1}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
    7. Applied rewrites100.0%

      \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \color{blue}{\frac{2}{t - -1}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
    8. Step-by-step derivation
      1. Applied rewrites100.0%

        \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right)}{\color{blue}{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right) + 1}} \]
      2. Add Preprocessing

      Alternative 2: 100.0% accurate, 1.6× speedup?

      \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{2}{t - -1}\\ t_2 := 2 - t\_1\\ t_3 := t\_1 - 2\\ \frac{\mathsf{fma}\left(t\_2, t\_2, 1\right)}{\mathsf{fma}\left(t\_3, t\_3, 2\right)} \end{array} \end{array} \]
      (FPCore (t)
       :precision binary64
       (let* ((t_1 (/ 2.0 (- t -1.0))) (t_2 (- 2.0 t_1)) (t_3 (- t_1 2.0)))
         (/ (fma t_2 t_2 1.0) (fma t_3 t_3 2.0))))
      double code(double t) {
      	double t_1 = 2.0 / (t - -1.0);
      	double t_2 = 2.0 - t_1;
      	double t_3 = t_1 - 2.0;
      	return fma(t_2, t_2, 1.0) / fma(t_3, t_3, 2.0);
      }
      
      function code(t)
      	t_1 = Float64(2.0 / Float64(t - -1.0))
      	t_2 = Float64(2.0 - t_1)
      	t_3 = Float64(t_1 - 2.0)
      	return Float64(fma(t_2, t_2, 1.0) / fma(t_3, t_3, 2.0))
      end
      
      code[t_] := Block[{t$95$1 = N[(2.0 / N[(t - -1.0), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(2.0 - t$95$1), $MachinePrecision]}, Block[{t$95$3 = N[(t$95$1 - 2.0), $MachinePrecision]}, N[(N[(t$95$2 * t$95$2 + 1.0), $MachinePrecision] / N[(t$95$3 * t$95$3 + 2.0), $MachinePrecision]), $MachinePrecision]]]]
      
      \begin{array}{l}
      
      \\
      \begin{array}{l}
      t_1 := \frac{2}{t - -1}\\
      t_2 := 2 - t\_1\\
      t_3 := t\_1 - 2\\
      \frac{\mathsf{fma}\left(t\_2, t\_2, 1\right)}{\mathsf{fma}\left(t\_3, t\_3, 2\right)}
      \end{array}
      \end{array}
      
      Derivation
      1. Initial program 99.9%

        \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
      2. Step-by-step derivation
        1. Applied rewrites100.0%

          \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 2\right)}} \]
        2. Step-by-step derivation
          1. lift-fma.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\color{blue}{\left(2 - \frac{2}{t + 1}\right) \cdot \left(2 - \frac{2}{t + 1}\right) + 2}} \]
          2. lift--.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\color{blue}{\left(2 - \frac{2}{t + 1}\right)} \cdot \left(2 - \frac{2}{t + 1}\right) + 2} \]
          3. lift-+.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\left(2 - \frac{2}{\color{blue}{t + 1}}\right) \cdot \left(2 - \frac{2}{t + 1}\right) + 2} \]
          4. lift-/.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\left(2 - \color{blue}{\frac{2}{t + 1}}\right) \cdot \left(2 - \frac{2}{t + 1}\right) + 2} \]
          5. lift--.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\left(2 - \frac{2}{t + 1}\right) \cdot \color{blue}{\left(2 - \frac{2}{t + 1}\right)} + 2} \]
          6. lift-+.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\left(2 - \frac{2}{t + 1}\right) \cdot \left(2 - \frac{2}{\color{blue}{t + 1}}\right) + 2} \]
          7. lift-/.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\left(2 - \frac{2}{t + 1}\right) \cdot \left(2 - \color{blue}{\frac{2}{t + 1}}\right) + 2} \]
          8. metadata-evalN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\left(2 - \frac{2}{t + 1}\right) \cdot \left(2 - \frac{2}{t + 1}\right) + \color{blue}{\left(1 + 1\right)}} \]
          9. associate-+r+N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\color{blue}{\left(\left(2 - \frac{2}{t + 1}\right) \cdot \left(2 - \frac{2}{t + 1}\right) + 1\right) + 1}} \]
          10. lower-+.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\color{blue}{\left(\left(2 - \frac{2}{t + 1}\right) \cdot \left(2 - \frac{2}{t + 1}\right) + 1\right) + 1}} \]
        3. Applied rewrites100.0%

          \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + 1}, 2 - \frac{2}{t + 1}, 1\right)}{\color{blue}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1}} \]
        4. Step-by-step derivation
          1. lift-+.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{\color{blue}{t + 1}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          2. rgt-mult-inverseN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t + \color{blue}{t \cdot \frac{1}{t}}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          3. fp-cancel-sign-subN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{\color{blue}{t - \left(\mathsf{neg}\left(t\right)\right) \cdot \frac{1}{t}}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          4. lift-neg.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \color{blue}{\left(-t\right)} \cdot \frac{1}{t}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          5. metadata-evalN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \left(-t\right) \cdot \frac{\color{blue}{\mathsf{neg}\left(-1\right)}}{t}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          6. distribute-frac-negN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \left(-t\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\frac{-1}{t}\right)\right)}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          7. distribute-rgt-neg-outN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \color{blue}{\left(\mathsf{neg}\left(\left(-t\right) \cdot \frac{-1}{t}\right)\right)}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          8. frac-2neg-revN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \left(\mathsf{neg}\left(\left(-t\right) \cdot \color{blue}{\frac{\mathsf{neg}\left(-1\right)}{\mathsf{neg}\left(t\right)}}\right)\right)}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          9. metadata-evalN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \left(\mathsf{neg}\left(\left(-t\right) \cdot \frac{\color{blue}{1}}{\mathsf{neg}\left(t\right)}\right)\right)}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          10. lift-neg.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \left(\mathsf{neg}\left(\left(-t\right) \cdot \frac{1}{\color{blue}{-t}}\right)\right)}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          11. rgt-mult-inverseN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          12. metadata-evalN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - \color{blue}{-1}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          13. lower--.f64100.0

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{\color{blue}{t - -1}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
        5. Applied rewrites100.0%

          \[\leadsto \frac{\mathsf{fma}\left(2 - \color{blue}{\frac{2}{t - -1}}, 2 - \frac{2}{t + 1}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
        6. Step-by-step derivation
          1. lift-+.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{\color{blue}{t + 1}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          2. rgt-mult-inverseN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t + \color{blue}{t \cdot \frac{1}{t}}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          3. fp-cancel-sign-subN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{\color{blue}{t - \left(\mathsf{neg}\left(t\right)\right) \cdot \frac{1}{t}}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          4. lift-neg.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \color{blue}{\left(-t\right)} \cdot \frac{1}{t}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          5. metadata-evalN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \left(-t\right) \cdot \frac{\color{blue}{\mathsf{neg}\left(-1\right)}}{t}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          6. distribute-frac-negN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \left(-t\right) \cdot \color{blue}{\left(\mathsf{neg}\left(\frac{-1}{t}\right)\right)}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          7. distribute-rgt-neg-outN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \color{blue}{\left(\mathsf{neg}\left(\left(-t\right) \cdot \frac{-1}{t}\right)\right)}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          8. frac-2neg-revN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \left(\mathsf{neg}\left(\left(-t\right) \cdot \color{blue}{\frac{\mathsf{neg}\left(-1\right)}{\mathsf{neg}\left(t\right)}}\right)\right)}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          9. metadata-evalN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \left(\mathsf{neg}\left(\left(-t\right) \cdot \frac{\color{blue}{1}}{\mathsf{neg}\left(t\right)}\right)\right)}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          10. lift-neg.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \left(\mathsf{neg}\left(\left(-t\right) \cdot \frac{1}{\color{blue}{-t}}\right)\right)}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          11. rgt-mult-inverseN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          12. metadata-evalN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - \color{blue}{-1}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
          13. lower--.f64100.0

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{\color{blue}{t - -1}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
        7. Applied rewrites100.0%

          \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \color{blue}{\frac{2}{t - -1}}, 1\right)}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1} \]
        8. Step-by-step derivation
          1. lift-+.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right)}{\color{blue}{\mathsf{fma}\left(2 - \frac{2}{1 + t}, 2 - \frac{2}{1 + t}, 1\right) + 1}} \]
          2. lift-fma.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right)}{\color{blue}{\left(\left(2 - \frac{2}{1 + t}\right) \cdot \left(2 - \frac{2}{1 + t}\right) + 1\right)} + 1} \]
          3. lift--.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right)}{\left(\color{blue}{\left(2 - \frac{2}{1 + t}\right)} \cdot \left(2 - \frac{2}{1 + t}\right) + 1\right) + 1} \]
          4. lift-+.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right)}{\left(\left(2 - \frac{2}{\color{blue}{1 + t}}\right) \cdot \left(2 - \frac{2}{1 + t}\right) + 1\right) + 1} \]
          5. lift-/.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right)}{\left(\left(2 - \color{blue}{\frac{2}{1 + t}}\right) \cdot \left(2 - \frac{2}{1 + t}\right) + 1\right) + 1} \]
          6. lift--.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right)}{\left(\left(2 - \frac{2}{1 + t}\right) \cdot \color{blue}{\left(2 - \frac{2}{1 + t}\right)} + 1\right) + 1} \]
          7. lift-+.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right)}{\left(\left(2 - \frac{2}{1 + t}\right) \cdot \left(2 - \frac{2}{\color{blue}{1 + t}}\right) + 1\right) + 1} \]
          8. lift-/.f64N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right)}{\left(\left(2 - \frac{2}{1 + t}\right) \cdot \left(2 - \color{blue}{\frac{2}{1 + t}}\right) + 1\right) + 1} \]
          9. associate-+l+N/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right)}{\color{blue}{\left(2 - \frac{2}{1 + t}\right) \cdot \left(2 - \frac{2}{1 + t}\right) + \left(1 + 1\right)}} \]
          10. sqr-abs-revN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right)}{\color{blue}{\left|2 - \frac{2}{1 + t}\right| \cdot \left|2 - \frac{2}{1 + t}\right|} + \left(1 + 1\right)} \]
          11. fabs-subN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right)}{\color{blue}{\left|\frac{2}{1 + t} - 2\right|} \cdot \left|2 - \frac{2}{1 + t}\right| + \left(1 + 1\right)} \]
          12. fabs-subN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right)}{\left|\frac{2}{1 + t} - 2\right| \cdot \color{blue}{\left|\frac{2}{1 + t} - 2\right|} + \left(1 + 1\right)} \]
          13. sqr-absN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right)}{\color{blue}{\left(\frac{2}{1 + t} - 2\right) \cdot \left(\frac{2}{1 + t} - 2\right)} + \left(1 + 1\right)} \]
          14. metadata-evalN/A

            \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right)}{\left(\frac{2}{1 + t} - 2\right) \cdot \left(\frac{2}{1 + t} - 2\right) + \color{blue}{2}} \]
        9. Applied rewrites100.0%

          \[\leadsto \frac{\mathsf{fma}\left(2 - \frac{2}{t - -1}, 2 - \frac{2}{t - -1}, 1\right)}{\color{blue}{\mathsf{fma}\left(\frac{2}{t - -1} - 2, \frac{2}{t - -1} - 2, 2\right)}} \]
        10. Add Preprocessing

        Alternative 3: 99.4% accurate, 2.2× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\frac{2}{t}}{1 + \frac{1}{t}} \leq 0.1:\\ \;\;\;\;0.8333333333333334 - \frac{\frac{-0.037037037037037035 - \frac{0.04938271604938271}{t}}{t} - -0.2222222222222222}{t}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(t - 2, t, 1\right), t \cdot t, 0.5\right)\\ \end{array} \end{array} \]
        (FPCore (t)
         :precision binary64
         (if (<= (/ (/ 2.0 t) (+ 1.0 (/ 1.0 t))) 0.1)
           (-
            0.8333333333333334
            (/
             (-
              (/ (- -0.037037037037037035 (/ 0.04938271604938271 t)) t)
              -0.2222222222222222)
             t))
           (fma (fma (- t 2.0) t 1.0) (* t t) 0.5)))
        double code(double t) {
        	double tmp;
        	if (((2.0 / t) / (1.0 + (1.0 / t))) <= 0.1) {
        		tmp = 0.8333333333333334 - ((((-0.037037037037037035 - (0.04938271604938271 / t)) / t) - -0.2222222222222222) / t);
        	} else {
        		tmp = fma(fma((t - 2.0), t, 1.0), (t * t), 0.5);
        	}
        	return tmp;
        }
        
        function code(t)
        	tmp = 0.0
        	if (Float64(Float64(2.0 / t) / Float64(1.0 + Float64(1.0 / t))) <= 0.1)
        		tmp = Float64(0.8333333333333334 - Float64(Float64(Float64(Float64(-0.037037037037037035 - Float64(0.04938271604938271 / t)) / t) - -0.2222222222222222) / t));
        	else
        		tmp = fma(fma(Float64(t - 2.0), t, 1.0), Float64(t * t), 0.5);
        	end
        	return tmp
        end
        
        code[t_] := If[LessEqual[N[(N[(2.0 / t), $MachinePrecision] / N[(1.0 + N[(1.0 / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 0.1], N[(0.8333333333333334 - N[(N[(N[(N[(-0.037037037037037035 - N[(0.04938271604938271 / t), $MachinePrecision]), $MachinePrecision] / t), $MachinePrecision] - -0.2222222222222222), $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision], N[(N[(N[(t - 2.0), $MachinePrecision] * t + 1.0), $MachinePrecision] * N[(t * t), $MachinePrecision] + 0.5), $MachinePrecision]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        \mathbf{if}\;\frac{\frac{2}{t}}{1 + \frac{1}{t}} \leq 0.1:\\
        \;\;\;\;0.8333333333333334 - \frac{\frac{-0.037037037037037035 - \frac{0.04938271604938271}{t}}{t} - -0.2222222222222222}{t}\\
        
        \mathbf{else}:\\
        \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(t - 2, t, 1\right), t \cdot t, 0.5\right)\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 2 regimes
        2. if (/.f64 (/.f64 #s(literal 2 binary64) t) (+.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) t))) < 0.10000000000000001

          1. Initial program 100.0%

            \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
          2. Taylor expanded in t around -inf

            \[\leadsto \color{blue}{\frac{5}{6} + -1 \cdot \frac{\frac{2}{9} + -1 \cdot \frac{\frac{1}{27} + \frac{4}{81} \cdot \frac{1}{t}}{t}}{t}} \]
          3. Step-by-step derivation
            1. fp-cancel-sign-sub-invN/A

              \[\leadsto \frac{5}{6} - \color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \frac{\frac{2}{9} + -1 \cdot \frac{\frac{1}{27} + \frac{4}{81} \cdot \frac{1}{t}}{t}}{t}} \]
            2. metadata-evalN/A

              \[\leadsto \frac{5}{6} - 1 \cdot \frac{\color{blue}{\frac{2}{9} + -1 \cdot \frac{\frac{1}{27} + \frac{4}{81} \cdot \frac{1}{t}}{t}}}{t} \]
            3. *-lft-identityN/A

              \[\leadsto \frac{5}{6} - \frac{\frac{2}{9} + -1 \cdot \frac{\frac{1}{27} + \frac{4}{81} \cdot \frac{1}{t}}{t}}{\color{blue}{t}} \]
            4. lower--.f64N/A

              \[\leadsto \frac{5}{6} - \color{blue}{\frac{\frac{2}{9} + -1 \cdot \frac{\frac{1}{27} + \frac{4}{81} \cdot \frac{1}{t}}{t}}{t}} \]
            5. lower-/.f64N/A

              \[\leadsto \frac{5}{6} - \frac{\frac{2}{9} + -1 \cdot \frac{\frac{1}{27} + \frac{4}{81} \cdot \frac{1}{t}}{t}}{\color{blue}{t}} \]
          4. Applied rewrites99.7%

            \[\leadsto \color{blue}{0.8333333333333334 - \frac{\frac{-0.037037037037037035 - \frac{0.04938271604938271}{t}}{t} - -0.2222222222222222}{t}} \]

          if 0.10000000000000001 < (/.f64 (/.f64 #s(literal 2 binary64) t) (+.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) t)))

          1. Initial program 99.9%

            \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
          2. Taylor expanded in t around 0

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

              \[\leadsto {t}^{2} \cdot \left(1 + t \cdot \left(t - 2\right)\right) + \color{blue}{\frac{1}{2}} \]
            2. distribute-rgt-inN/A

              \[\leadsto \left(1 \cdot {t}^{2} + \left(t \cdot \left(t - 2\right)\right) \cdot {t}^{2}\right) + \frac{1}{2} \]
            3. *-lft-identityN/A

              \[\leadsto \left({t}^{2} + \left(t \cdot \left(t - 2\right)\right) \cdot {t}^{2}\right) + \frac{1}{2} \]
            4. distribute-rgt1-inN/A

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

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

              \[\leadsto \mathsf{fma}\left(1 + t \cdot \left(t - 2\right), \color{blue}{{t}^{2}}, \frac{1}{2}\right) \]
            7. +-commutativeN/A

              \[\leadsto \mathsf{fma}\left(t \cdot \left(t - 2\right) + 1, {\color{blue}{t}}^{2}, \frac{1}{2}\right) \]
            8. *-commutativeN/A

              \[\leadsto \mathsf{fma}\left(\left(t - 2\right) \cdot t + 1, {t}^{2}, \frac{1}{2}\right) \]
            9. lower-fma.f64N/A

              \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(t - 2, t, 1\right), {\color{blue}{t}}^{2}, \frac{1}{2}\right) \]
            10. lower--.f64N/A

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

              \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(t - 2, t, 1\right), t \cdot \color{blue}{t}, \frac{1}{2}\right) \]
            12. lower-*.f6499.2

              \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(t - 2, t, 1\right), t \cdot \color{blue}{t}, 0.5\right) \]
          4. Applied rewrites99.2%

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

        Alternative 4: 99.4% accurate, 2.3× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\frac{2}{t}}{1 + \frac{1}{t}} \leq 0.1:\\ \;\;\;\;\frac{0.037037037037037035}{t \cdot t} - \left(\frac{0.2222222222222222}{t} - 0.8333333333333334\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(t - 2, t, 1\right), t \cdot t, 0.5\right)\\ \end{array} \end{array} \]
        (FPCore (t)
         :precision binary64
         (if (<= (/ (/ 2.0 t) (+ 1.0 (/ 1.0 t))) 0.1)
           (-
            (/ 0.037037037037037035 (* t t))
            (- (/ 0.2222222222222222 t) 0.8333333333333334))
           (fma (fma (- t 2.0) t 1.0) (* t t) 0.5)))
        double code(double t) {
        	double tmp;
        	if (((2.0 / t) / (1.0 + (1.0 / t))) <= 0.1) {
        		tmp = (0.037037037037037035 / (t * t)) - ((0.2222222222222222 / t) - 0.8333333333333334);
        	} else {
        		tmp = fma(fma((t - 2.0), t, 1.0), (t * t), 0.5);
        	}
        	return tmp;
        }
        
        function code(t)
        	tmp = 0.0
        	if (Float64(Float64(2.0 / t) / Float64(1.0 + Float64(1.0 / t))) <= 0.1)
        		tmp = Float64(Float64(0.037037037037037035 / Float64(t * t)) - Float64(Float64(0.2222222222222222 / t) - 0.8333333333333334));
        	else
        		tmp = fma(fma(Float64(t - 2.0), t, 1.0), Float64(t * t), 0.5);
        	end
        	return tmp
        end
        
        code[t_] := If[LessEqual[N[(N[(2.0 / t), $MachinePrecision] / N[(1.0 + N[(1.0 / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 0.1], N[(N[(0.037037037037037035 / N[(t * t), $MachinePrecision]), $MachinePrecision] - N[(N[(0.2222222222222222 / t), $MachinePrecision] - 0.8333333333333334), $MachinePrecision]), $MachinePrecision], N[(N[(N[(t - 2.0), $MachinePrecision] * t + 1.0), $MachinePrecision] * N[(t * t), $MachinePrecision] + 0.5), $MachinePrecision]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        \mathbf{if}\;\frac{\frac{2}{t}}{1 + \frac{1}{t}} \leq 0.1:\\
        \;\;\;\;\frac{0.037037037037037035}{t \cdot t} - \left(\frac{0.2222222222222222}{t} - 0.8333333333333334\right)\\
        
        \mathbf{else}:\\
        \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(t - 2, t, 1\right), t \cdot t, 0.5\right)\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 2 regimes
        2. if (/.f64 (/.f64 #s(literal 2 binary64) t) (+.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) t))) < 0.10000000000000001

          1. Initial program 100.0%

            \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
          2. Taylor expanded in t around inf

            \[\leadsto \color{blue}{\left(\frac{5}{6} + \frac{\frac{1}{27}}{{t}^{2}}\right) - \frac{2}{9} \cdot \frac{1}{t}} \]
          3. Applied rewrites99.5%

            \[\leadsto \color{blue}{0.8333333333333334 - \frac{0.2222222222222222 - \frac{0.037037037037037035}{t}}{t}} \]
          4. Step-by-step derivation
            1. lift--.f64N/A

              \[\leadsto \frac{5}{6} - \color{blue}{\frac{\frac{2}{9} - \frac{\frac{1}{27}}{t}}{t}} \]
            2. lift-/.f64N/A

              \[\leadsto \frac{5}{6} - \frac{\frac{2}{9} - \frac{\frac{1}{27}}{t}}{\color{blue}{t}} \]
            3. lift--.f64N/A

              \[\leadsto \frac{5}{6} - \frac{\frac{2}{9} - \frac{\frac{1}{27}}{t}}{t} \]
            4. lift-/.f64N/A

              \[\leadsto \frac{5}{6} - \frac{\frac{2}{9} - \frac{\frac{1}{27}}{t}}{t} \]
            5. div-subN/A

              \[\leadsto \frac{5}{6} - \left(\frac{\frac{2}{9}}{t} - \color{blue}{\frac{\frac{\frac{1}{27}}{t}}{t}}\right) \]
            6. associate-/l/N/A

              \[\leadsto \frac{5}{6} - \left(\frac{\frac{2}{9}}{t} - \frac{\frac{1}{27}}{\color{blue}{t \cdot t}}\right) \]
            7. pow2N/A

              \[\leadsto \frac{5}{6} - \left(\frac{\frac{2}{9}}{t} - \frac{\frac{1}{27}}{{t}^{\color{blue}{2}}}\right) \]
            8. associate--r-N/A

              \[\leadsto \left(\frac{5}{6} - \frac{\frac{2}{9}}{t}\right) + \color{blue}{\frac{\frac{1}{27}}{{t}^{2}}} \]
            9. metadata-evalN/A

              \[\leadsto \left(\frac{5}{6} - \frac{\frac{2}{9} \cdot 1}{t}\right) + \frac{\frac{1}{27}}{{t}^{2}} \]
            10. associate-*r/N/A

              \[\leadsto \left(\frac{5}{6} - \frac{2}{9} \cdot \frac{1}{t}\right) + \frac{\frac{1}{27}}{{t}^{2}} \]
            11. +-commutativeN/A

              \[\leadsto \frac{\frac{1}{27}}{{t}^{2}} + \color{blue}{\left(\frac{5}{6} - \frac{2}{9} \cdot \frac{1}{t}\right)} \]
            12. associate-*r/N/A

              \[\leadsto \frac{\frac{1}{27}}{{t}^{2}} + \left(\frac{5}{6} - \frac{\frac{2}{9} \cdot 1}{\color{blue}{t}}\right) \]
            13. metadata-evalN/A

              \[\leadsto \frac{\frac{1}{27}}{{t}^{2}} + \left(\frac{5}{6} - \frac{\frac{2}{9}}{t}\right) \]
            14. associate--l+N/A

              \[\leadsto \left(\frac{\frac{1}{27}}{{t}^{2}} + \frac{5}{6}\right) - \color{blue}{\frac{\frac{2}{9}}{t}} \]
            15. +-commutativeN/A

              \[\leadsto \left(\frac{5}{6} + \frac{\frac{1}{27}}{{t}^{2}}\right) - \frac{\color{blue}{\frac{2}{9}}}{t} \]
            16. associate--l+N/A

              \[\leadsto \frac{5}{6} + \color{blue}{\left(\frac{\frac{1}{27}}{{t}^{2}} - \frac{\frac{2}{9}}{t}\right)} \]
            17. +-commutativeN/A

              \[\leadsto \left(\frac{\frac{1}{27}}{{t}^{2}} - \frac{\frac{2}{9}}{t}\right) + \color{blue}{\frac{5}{6}} \]
            18. associate-+l-N/A

              \[\leadsto \frac{\frac{1}{27}}{{t}^{2}} - \color{blue}{\left(\frac{\frac{2}{9}}{t} - \frac{5}{6}\right)} \]
            19. lower--.f64N/A

              \[\leadsto \frac{\frac{1}{27}}{{t}^{2}} - \color{blue}{\left(\frac{\frac{2}{9}}{t} - \frac{5}{6}\right)} \]
            20. lower-/.f64N/A

              \[\leadsto \frac{\frac{1}{27}}{{t}^{2}} - \left(\color{blue}{\frac{\frac{2}{9}}{t}} - \frac{5}{6}\right) \]
            21. pow2N/A

              \[\leadsto \frac{\frac{1}{27}}{t \cdot t} - \left(\frac{\frac{2}{9}}{\color{blue}{t}} - \frac{5}{6}\right) \]
            22. lift-*.f64N/A

              \[\leadsto \frac{\frac{1}{27}}{t \cdot t} - \left(\frac{\frac{2}{9}}{\color{blue}{t}} - \frac{5}{6}\right) \]
            23. lower--.f64N/A

              \[\leadsto \frac{\frac{1}{27}}{t \cdot t} - \left(\frac{\frac{2}{9}}{t} - \color{blue}{\frac{5}{6}}\right) \]
          5. Applied rewrites99.5%

            \[\leadsto \frac{0.037037037037037035}{t \cdot t} - \color{blue}{\left(\frac{0.2222222222222222}{t} - 0.8333333333333334\right)} \]

          if 0.10000000000000001 < (/.f64 (/.f64 #s(literal 2 binary64) t) (+.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) t)))

          1. Initial program 99.9%

            \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
          2. Taylor expanded in t around 0

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

              \[\leadsto {t}^{2} \cdot \left(1 + t \cdot \left(t - 2\right)\right) + \color{blue}{\frac{1}{2}} \]
            2. distribute-rgt-inN/A

              \[\leadsto \left(1 \cdot {t}^{2} + \left(t \cdot \left(t - 2\right)\right) \cdot {t}^{2}\right) + \frac{1}{2} \]
            3. *-lft-identityN/A

              \[\leadsto \left({t}^{2} + \left(t \cdot \left(t - 2\right)\right) \cdot {t}^{2}\right) + \frac{1}{2} \]
            4. distribute-rgt1-inN/A

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

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

              \[\leadsto \mathsf{fma}\left(1 + t \cdot \left(t - 2\right), \color{blue}{{t}^{2}}, \frac{1}{2}\right) \]
            7. +-commutativeN/A

              \[\leadsto \mathsf{fma}\left(t \cdot \left(t - 2\right) + 1, {\color{blue}{t}}^{2}, \frac{1}{2}\right) \]
            8. *-commutativeN/A

              \[\leadsto \mathsf{fma}\left(\left(t - 2\right) \cdot t + 1, {t}^{2}, \frac{1}{2}\right) \]
            9. lower-fma.f64N/A

              \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(t - 2, t, 1\right), {\color{blue}{t}}^{2}, \frac{1}{2}\right) \]
            10. lower--.f64N/A

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

              \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(t - 2, t, 1\right), t \cdot \color{blue}{t}, \frac{1}{2}\right) \]
            12. lower-*.f6499.2

              \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(t - 2, t, 1\right), t \cdot \color{blue}{t}, 0.5\right) \]
          4. Applied rewrites99.2%

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

        Alternative 5: 99.3% accurate, 2.4× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\frac{2}{t}}{1 + \frac{1}{t}} \leq 0.1:\\ \;\;\;\;\frac{0.037037037037037035}{t \cdot t} - \left(\frac{0.2222222222222222}{t} - 0.8333333333333334\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(-2, t, 1\right), t \cdot t, 0.5\right)\\ \end{array} \end{array} \]
        (FPCore (t)
         :precision binary64
         (if (<= (/ (/ 2.0 t) (+ 1.0 (/ 1.0 t))) 0.1)
           (-
            (/ 0.037037037037037035 (* t t))
            (- (/ 0.2222222222222222 t) 0.8333333333333334))
           (fma (fma -2.0 t 1.0) (* t t) 0.5)))
        double code(double t) {
        	double tmp;
        	if (((2.0 / t) / (1.0 + (1.0 / t))) <= 0.1) {
        		tmp = (0.037037037037037035 / (t * t)) - ((0.2222222222222222 / t) - 0.8333333333333334);
        	} else {
        		tmp = fma(fma(-2.0, t, 1.0), (t * t), 0.5);
        	}
        	return tmp;
        }
        
        function code(t)
        	tmp = 0.0
        	if (Float64(Float64(2.0 / t) / Float64(1.0 + Float64(1.0 / t))) <= 0.1)
        		tmp = Float64(Float64(0.037037037037037035 / Float64(t * t)) - Float64(Float64(0.2222222222222222 / t) - 0.8333333333333334));
        	else
        		tmp = fma(fma(-2.0, t, 1.0), Float64(t * t), 0.5);
        	end
        	return tmp
        end
        
        code[t_] := If[LessEqual[N[(N[(2.0 / t), $MachinePrecision] / N[(1.0 + N[(1.0 / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 0.1], N[(N[(0.037037037037037035 / N[(t * t), $MachinePrecision]), $MachinePrecision] - N[(N[(0.2222222222222222 / t), $MachinePrecision] - 0.8333333333333334), $MachinePrecision]), $MachinePrecision], N[(N[(-2.0 * t + 1.0), $MachinePrecision] * N[(t * t), $MachinePrecision] + 0.5), $MachinePrecision]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        \mathbf{if}\;\frac{\frac{2}{t}}{1 + \frac{1}{t}} \leq 0.1:\\
        \;\;\;\;\frac{0.037037037037037035}{t \cdot t} - \left(\frac{0.2222222222222222}{t} - 0.8333333333333334\right)\\
        
        \mathbf{else}:\\
        \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(-2, t, 1\right), t \cdot t, 0.5\right)\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 2 regimes
        2. if (/.f64 (/.f64 #s(literal 2 binary64) t) (+.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) t))) < 0.10000000000000001

          1. Initial program 100.0%

            \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
          2. Taylor expanded in t around inf

            \[\leadsto \color{blue}{\left(\frac{5}{6} + \frac{\frac{1}{27}}{{t}^{2}}\right) - \frac{2}{9} \cdot \frac{1}{t}} \]
          3. Applied rewrites99.5%

            \[\leadsto \color{blue}{0.8333333333333334 - \frac{0.2222222222222222 - \frac{0.037037037037037035}{t}}{t}} \]
          4. Step-by-step derivation
            1. lift--.f64N/A

              \[\leadsto \frac{5}{6} - \color{blue}{\frac{\frac{2}{9} - \frac{\frac{1}{27}}{t}}{t}} \]
            2. lift-/.f64N/A

              \[\leadsto \frac{5}{6} - \frac{\frac{2}{9} - \frac{\frac{1}{27}}{t}}{\color{blue}{t}} \]
            3. lift--.f64N/A

              \[\leadsto \frac{5}{6} - \frac{\frac{2}{9} - \frac{\frac{1}{27}}{t}}{t} \]
            4. lift-/.f64N/A

              \[\leadsto \frac{5}{6} - \frac{\frac{2}{9} - \frac{\frac{1}{27}}{t}}{t} \]
            5. div-subN/A

              \[\leadsto \frac{5}{6} - \left(\frac{\frac{2}{9}}{t} - \color{blue}{\frac{\frac{\frac{1}{27}}{t}}{t}}\right) \]
            6. associate-/l/N/A

              \[\leadsto \frac{5}{6} - \left(\frac{\frac{2}{9}}{t} - \frac{\frac{1}{27}}{\color{blue}{t \cdot t}}\right) \]
            7. pow2N/A

              \[\leadsto \frac{5}{6} - \left(\frac{\frac{2}{9}}{t} - \frac{\frac{1}{27}}{{t}^{\color{blue}{2}}}\right) \]
            8. associate--r-N/A

              \[\leadsto \left(\frac{5}{6} - \frac{\frac{2}{9}}{t}\right) + \color{blue}{\frac{\frac{1}{27}}{{t}^{2}}} \]
            9. metadata-evalN/A

              \[\leadsto \left(\frac{5}{6} - \frac{\frac{2}{9} \cdot 1}{t}\right) + \frac{\frac{1}{27}}{{t}^{2}} \]
            10. associate-*r/N/A

              \[\leadsto \left(\frac{5}{6} - \frac{2}{9} \cdot \frac{1}{t}\right) + \frac{\frac{1}{27}}{{t}^{2}} \]
            11. +-commutativeN/A

              \[\leadsto \frac{\frac{1}{27}}{{t}^{2}} + \color{blue}{\left(\frac{5}{6} - \frac{2}{9} \cdot \frac{1}{t}\right)} \]
            12. associate-*r/N/A

              \[\leadsto \frac{\frac{1}{27}}{{t}^{2}} + \left(\frac{5}{6} - \frac{\frac{2}{9} \cdot 1}{\color{blue}{t}}\right) \]
            13. metadata-evalN/A

              \[\leadsto \frac{\frac{1}{27}}{{t}^{2}} + \left(\frac{5}{6} - \frac{\frac{2}{9}}{t}\right) \]
            14. associate--l+N/A

              \[\leadsto \left(\frac{\frac{1}{27}}{{t}^{2}} + \frac{5}{6}\right) - \color{blue}{\frac{\frac{2}{9}}{t}} \]
            15. +-commutativeN/A

              \[\leadsto \left(\frac{5}{6} + \frac{\frac{1}{27}}{{t}^{2}}\right) - \frac{\color{blue}{\frac{2}{9}}}{t} \]
            16. associate--l+N/A

              \[\leadsto \frac{5}{6} + \color{blue}{\left(\frac{\frac{1}{27}}{{t}^{2}} - \frac{\frac{2}{9}}{t}\right)} \]
            17. +-commutativeN/A

              \[\leadsto \left(\frac{\frac{1}{27}}{{t}^{2}} - \frac{\frac{2}{9}}{t}\right) + \color{blue}{\frac{5}{6}} \]
            18. associate-+l-N/A

              \[\leadsto \frac{\frac{1}{27}}{{t}^{2}} - \color{blue}{\left(\frac{\frac{2}{9}}{t} - \frac{5}{6}\right)} \]
            19. lower--.f64N/A

              \[\leadsto \frac{\frac{1}{27}}{{t}^{2}} - \color{blue}{\left(\frac{\frac{2}{9}}{t} - \frac{5}{6}\right)} \]
            20. lower-/.f64N/A

              \[\leadsto \frac{\frac{1}{27}}{{t}^{2}} - \left(\color{blue}{\frac{\frac{2}{9}}{t}} - \frac{5}{6}\right) \]
            21. pow2N/A

              \[\leadsto \frac{\frac{1}{27}}{t \cdot t} - \left(\frac{\frac{2}{9}}{\color{blue}{t}} - \frac{5}{6}\right) \]
            22. lift-*.f64N/A

              \[\leadsto \frac{\frac{1}{27}}{t \cdot t} - \left(\frac{\frac{2}{9}}{\color{blue}{t}} - \frac{5}{6}\right) \]
            23. lower--.f64N/A

              \[\leadsto \frac{\frac{1}{27}}{t \cdot t} - \left(\frac{\frac{2}{9}}{t} - \color{blue}{\frac{5}{6}}\right) \]
          5. Applied rewrites99.5%

            \[\leadsto \frac{0.037037037037037035}{t \cdot t} - \color{blue}{\left(\frac{0.2222222222222222}{t} - 0.8333333333333334\right)} \]

          if 0.10000000000000001 < (/.f64 (/.f64 #s(literal 2 binary64) t) (+.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) t)))

          1. Initial program 99.9%

            \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
          2. Taylor expanded in t around 0

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

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

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

              \[\leadsto \left(-2 \cdot t + 1\right) \cdot {t}^{2} + \frac{1}{2} \]
            4. distribute-rgt1-inN/A

              \[\leadsto \left({t}^{2} + \left(-2 \cdot t\right) \cdot {t}^{2}\right) + \frac{1}{2} \]
            5. distribute-rgt1-inN/A

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

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

              \[\leadsto \mathsf{fma}\left(1 + -2 \cdot t, \color{blue}{{t}^{2}}, \frac{1}{2}\right) \]
            8. +-commutativeN/A

              \[\leadsto \mathsf{fma}\left(-2 \cdot t + 1, {\color{blue}{t}}^{2}, \frac{1}{2}\right) \]
            9. lower-fma.f64N/A

              \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(-2, t, 1\right), {\color{blue}{t}}^{2}, \frac{1}{2}\right) \]
            10. unpow2N/A

              \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(-2, t, 1\right), t \cdot \color{blue}{t}, \frac{1}{2}\right) \]
            11. lower-*.f6499.1

              \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(-2, t, 1\right), t \cdot \color{blue}{t}, 0.5\right) \]
          4. Applied rewrites99.1%

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

        Alternative 6: 99.3% accurate, 2.5× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\frac{2}{t}}{1 + \frac{1}{t}} \leq 0.1:\\ \;\;\;\;0.8333333333333334 - \frac{0.2222222222222222 - \frac{0.037037037037037035}{t}}{t}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(-2, t, 1\right), t \cdot t, 0.5\right)\\ \end{array} \end{array} \]
        (FPCore (t)
         :precision binary64
         (if (<= (/ (/ 2.0 t) (+ 1.0 (/ 1.0 t))) 0.1)
           (-
            0.8333333333333334
            (/ (- 0.2222222222222222 (/ 0.037037037037037035 t)) t))
           (fma (fma -2.0 t 1.0) (* t t) 0.5)))
        double code(double t) {
        	double tmp;
        	if (((2.0 / t) / (1.0 + (1.0 / t))) <= 0.1) {
        		tmp = 0.8333333333333334 - ((0.2222222222222222 - (0.037037037037037035 / t)) / t);
        	} else {
        		tmp = fma(fma(-2.0, t, 1.0), (t * t), 0.5);
        	}
        	return tmp;
        }
        
        function code(t)
        	tmp = 0.0
        	if (Float64(Float64(2.0 / t) / Float64(1.0 + Float64(1.0 / t))) <= 0.1)
        		tmp = Float64(0.8333333333333334 - Float64(Float64(0.2222222222222222 - Float64(0.037037037037037035 / t)) / t));
        	else
        		tmp = fma(fma(-2.0, t, 1.0), Float64(t * t), 0.5);
        	end
        	return tmp
        end
        
        code[t_] := If[LessEqual[N[(N[(2.0 / t), $MachinePrecision] / N[(1.0 + N[(1.0 / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 0.1], N[(0.8333333333333334 - N[(N[(0.2222222222222222 - N[(0.037037037037037035 / t), $MachinePrecision]), $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision], N[(N[(-2.0 * t + 1.0), $MachinePrecision] * N[(t * t), $MachinePrecision] + 0.5), $MachinePrecision]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        \mathbf{if}\;\frac{\frac{2}{t}}{1 + \frac{1}{t}} \leq 0.1:\\
        \;\;\;\;0.8333333333333334 - \frac{0.2222222222222222 - \frac{0.037037037037037035}{t}}{t}\\
        
        \mathbf{else}:\\
        \;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(-2, t, 1\right), t \cdot t, 0.5\right)\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 2 regimes
        2. if (/.f64 (/.f64 #s(literal 2 binary64) t) (+.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) t))) < 0.10000000000000001

          1. Initial program 100.0%

            \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
          2. Taylor expanded in t around inf

            \[\leadsto \color{blue}{\left(\frac{5}{6} + \frac{\frac{1}{27}}{{t}^{2}}\right) - \frac{2}{9} \cdot \frac{1}{t}} \]
          3. Applied rewrites99.5%

            \[\leadsto \color{blue}{0.8333333333333334 - \frac{0.2222222222222222 - \frac{0.037037037037037035}{t}}{t}} \]

          if 0.10000000000000001 < (/.f64 (/.f64 #s(literal 2 binary64) t) (+.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) t)))

          1. Initial program 99.9%

            \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
          2. Taylor expanded in t around 0

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

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

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

              \[\leadsto \left(-2 \cdot t + 1\right) \cdot {t}^{2} + \frac{1}{2} \]
            4. distribute-rgt1-inN/A

              \[\leadsto \left({t}^{2} + \left(-2 \cdot t\right) \cdot {t}^{2}\right) + \frac{1}{2} \]
            5. distribute-rgt1-inN/A

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

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

              \[\leadsto \mathsf{fma}\left(1 + -2 \cdot t, \color{blue}{{t}^{2}}, \frac{1}{2}\right) \]
            8. +-commutativeN/A

              \[\leadsto \mathsf{fma}\left(-2 \cdot t + 1, {\color{blue}{t}}^{2}, \frac{1}{2}\right) \]
            9. lower-fma.f64N/A

              \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(-2, t, 1\right), {\color{blue}{t}}^{2}, \frac{1}{2}\right) \]
            10. unpow2N/A

              \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(-2, t, 1\right), t \cdot \color{blue}{t}, \frac{1}{2}\right) \]
            11. lower-*.f6499.1

              \[\leadsto \mathsf{fma}\left(\mathsf{fma}\left(-2, t, 1\right), t \cdot \color{blue}{t}, 0.5\right) \]
          4. Applied rewrites99.1%

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

        Alternative 7: 99.2% accurate, 2.6× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\frac{2}{t}}{1 + \frac{1}{t}} \leq 0.1:\\ \;\;\;\;0.8333333333333334 - \frac{0.2222222222222222 - \frac{0.037037037037037035}{t}}{t}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(t, t, 0.5\right)\\ \end{array} \end{array} \]
        (FPCore (t)
         :precision binary64
         (if (<= (/ (/ 2.0 t) (+ 1.0 (/ 1.0 t))) 0.1)
           (-
            0.8333333333333334
            (/ (- 0.2222222222222222 (/ 0.037037037037037035 t)) t))
           (fma t t 0.5)))
        double code(double t) {
        	double tmp;
        	if (((2.0 / t) / (1.0 + (1.0 / t))) <= 0.1) {
        		tmp = 0.8333333333333334 - ((0.2222222222222222 - (0.037037037037037035 / t)) / t);
        	} else {
        		tmp = fma(t, t, 0.5);
        	}
        	return tmp;
        }
        
        function code(t)
        	tmp = 0.0
        	if (Float64(Float64(2.0 / t) / Float64(1.0 + Float64(1.0 / t))) <= 0.1)
        		tmp = Float64(0.8333333333333334 - Float64(Float64(0.2222222222222222 - Float64(0.037037037037037035 / t)) / t));
        	else
        		tmp = fma(t, t, 0.5);
        	end
        	return tmp
        end
        
        code[t_] := If[LessEqual[N[(N[(2.0 / t), $MachinePrecision] / N[(1.0 + N[(1.0 / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 0.1], N[(0.8333333333333334 - N[(N[(0.2222222222222222 - N[(0.037037037037037035 / t), $MachinePrecision]), $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision], N[(t * t + 0.5), $MachinePrecision]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        \mathbf{if}\;\frac{\frac{2}{t}}{1 + \frac{1}{t}} \leq 0.1:\\
        \;\;\;\;0.8333333333333334 - \frac{0.2222222222222222 - \frac{0.037037037037037035}{t}}{t}\\
        
        \mathbf{else}:\\
        \;\;\;\;\mathsf{fma}\left(t, t, 0.5\right)\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 2 regimes
        2. if (/.f64 (/.f64 #s(literal 2 binary64) t) (+.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) t))) < 0.10000000000000001

          1. Initial program 100.0%

            \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
          2. Taylor expanded in t around inf

            \[\leadsto \color{blue}{\left(\frac{5}{6} + \frac{\frac{1}{27}}{{t}^{2}}\right) - \frac{2}{9} \cdot \frac{1}{t}} \]
          3. Applied rewrites99.5%

            \[\leadsto \color{blue}{0.8333333333333334 - \frac{0.2222222222222222 - \frac{0.037037037037037035}{t}}{t}} \]

          if 0.10000000000000001 < (/.f64 (/.f64 #s(literal 2 binary64) t) (+.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) t)))

          1. Initial program 99.9%

            \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
          2. Taylor expanded in t around 0

            \[\leadsto \color{blue}{\frac{1}{2} + {t}^{2}} \]
          3. Step-by-step derivation
            1. +-commutativeN/A

              \[\leadsto {t}^{2} + \color{blue}{\frac{1}{2}} \]
            2. unpow2N/A

              \[\leadsto t \cdot t + \frac{1}{2} \]
            3. lower-fma.f6498.9

              \[\leadsto \mathsf{fma}\left(t, \color{blue}{t}, 0.5\right) \]
          4. Applied rewrites98.9%

            \[\leadsto \color{blue}{\mathsf{fma}\left(t, t, 0.5\right)} \]
        3. Recombined 2 regimes into one program.
        4. Add Preprocessing

        Alternative 8: 99.0% accurate, 3.3× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\frac{2}{t}}{1 + \frac{1}{t}} \leq 0.1:\\ \;\;\;\;0.8333333333333334 - \frac{0.2222222222222222}{t}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(t, t, 0.5\right)\\ \end{array} \end{array} \]
        (FPCore (t)
         :precision binary64
         (if (<= (/ (/ 2.0 t) (+ 1.0 (/ 1.0 t))) 0.1)
           (- 0.8333333333333334 (/ 0.2222222222222222 t))
           (fma t t 0.5)))
        double code(double t) {
        	double tmp;
        	if (((2.0 / t) / (1.0 + (1.0 / t))) <= 0.1) {
        		tmp = 0.8333333333333334 - (0.2222222222222222 / t);
        	} else {
        		tmp = fma(t, t, 0.5);
        	}
        	return tmp;
        }
        
        function code(t)
        	tmp = 0.0
        	if (Float64(Float64(2.0 / t) / Float64(1.0 + Float64(1.0 / t))) <= 0.1)
        		tmp = Float64(0.8333333333333334 - Float64(0.2222222222222222 / t));
        	else
        		tmp = fma(t, t, 0.5);
        	end
        	return tmp
        end
        
        code[t_] := If[LessEqual[N[(N[(2.0 / t), $MachinePrecision] / N[(1.0 + N[(1.0 / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 0.1], N[(0.8333333333333334 - N[(0.2222222222222222 / t), $MachinePrecision]), $MachinePrecision], N[(t * t + 0.5), $MachinePrecision]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        \mathbf{if}\;\frac{\frac{2}{t}}{1 + \frac{1}{t}} \leq 0.1:\\
        \;\;\;\;0.8333333333333334 - \frac{0.2222222222222222}{t}\\
        
        \mathbf{else}:\\
        \;\;\;\;\mathsf{fma}\left(t, t, 0.5\right)\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 2 regimes
        2. if (/.f64 (/.f64 #s(literal 2 binary64) t) (+.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) t))) < 0.10000000000000001

          1. Initial program 100.0%

            \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
          2. Taylor expanded in t around inf

            \[\leadsto \color{blue}{\frac{5}{6} - \frac{2}{9} \cdot \frac{1}{t}} \]
          3. Step-by-step derivation
            1. lower--.f64N/A

              \[\leadsto \frac{5}{6} - \color{blue}{\frac{2}{9} \cdot \frac{1}{t}} \]
            2. associate-*r/N/A

              \[\leadsto \frac{5}{6} - \frac{\frac{2}{9} \cdot 1}{\color{blue}{t}} \]
            3. metadata-evalN/A

              \[\leadsto \frac{5}{6} - \frac{\frac{2}{9}}{t} \]
            4. lower-/.f6499.2

              \[\leadsto 0.8333333333333334 - \frac{0.2222222222222222}{\color{blue}{t}} \]
          4. Applied rewrites99.2%

            \[\leadsto \color{blue}{0.8333333333333334 - \frac{0.2222222222222222}{t}} \]

          if 0.10000000000000001 < (/.f64 (/.f64 #s(literal 2 binary64) t) (+.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) t)))

          1. Initial program 99.9%

            \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
          2. Taylor expanded in t around 0

            \[\leadsto \color{blue}{\frac{1}{2} + {t}^{2}} \]
          3. Step-by-step derivation
            1. +-commutativeN/A

              \[\leadsto {t}^{2} + \color{blue}{\frac{1}{2}} \]
            2. unpow2N/A

              \[\leadsto t \cdot t + \frac{1}{2} \]
            3. lower-fma.f6498.9

              \[\leadsto \mathsf{fma}\left(t, \color{blue}{t}, 0.5\right) \]
          4. Applied rewrites98.9%

            \[\leadsto \color{blue}{\mathsf{fma}\left(t, t, 0.5\right)} \]
        3. Recombined 2 regimes into one program.
        4. Add Preprocessing

        Alternative 9: 98.6% accurate, 3.4× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\frac{2}{t}}{1 + \frac{1}{t}} \leq 0.1:\\ \;\;\;\;0.8333333333333334\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(t, t, 0.5\right)\\ \end{array} \end{array} \]
        (FPCore (t)
         :precision binary64
         (if (<= (/ (/ 2.0 t) (+ 1.0 (/ 1.0 t))) 0.1)
           0.8333333333333334
           (fma t t 0.5)))
        double code(double t) {
        	double tmp;
        	if (((2.0 / t) / (1.0 + (1.0 / t))) <= 0.1) {
        		tmp = 0.8333333333333334;
        	} else {
        		tmp = fma(t, t, 0.5);
        	}
        	return tmp;
        }
        
        function code(t)
        	tmp = 0.0
        	if (Float64(Float64(2.0 / t) / Float64(1.0 + Float64(1.0 / t))) <= 0.1)
        		tmp = 0.8333333333333334;
        	else
        		tmp = fma(t, t, 0.5);
        	end
        	return tmp
        end
        
        code[t_] := If[LessEqual[N[(N[(2.0 / t), $MachinePrecision] / N[(1.0 + N[(1.0 / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 0.1], 0.8333333333333334, N[(t * t + 0.5), $MachinePrecision]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        \mathbf{if}\;\frac{\frac{2}{t}}{1 + \frac{1}{t}} \leq 0.1:\\
        \;\;\;\;0.8333333333333334\\
        
        \mathbf{else}:\\
        \;\;\;\;\mathsf{fma}\left(t, t, 0.5\right)\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 2 regimes
        2. if (/.f64 (/.f64 #s(literal 2 binary64) t) (+.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) t))) < 0.10000000000000001

          1. Initial program 100.0%

            \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
          2. Taylor expanded in t around inf

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

              \[\leadsto \color{blue}{0.8333333333333334} \]

            if 0.10000000000000001 < (/.f64 (/.f64 #s(literal 2 binary64) t) (+.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) t)))

            1. Initial program 99.9%

              \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
            2. Taylor expanded in t around 0

              \[\leadsto \color{blue}{\frac{1}{2} + {t}^{2}} \]
            3. Step-by-step derivation
              1. +-commutativeN/A

                \[\leadsto {t}^{2} + \color{blue}{\frac{1}{2}} \]
              2. unpow2N/A

                \[\leadsto t \cdot t + \frac{1}{2} \]
              3. lower-fma.f6498.9

                \[\leadsto \mathsf{fma}\left(t, \color{blue}{t}, 0.5\right) \]
            4. Applied rewrites98.9%

              \[\leadsto \color{blue}{\mathsf{fma}\left(t, t, 0.5\right)} \]
          4. Recombined 2 regimes into one program.
          5. Add Preprocessing

          Alternative 10: 98.4% accurate, 4.4× speedup?

          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\frac{2}{t}}{1 + \frac{1}{t}} \leq 1:\\ \;\;\;\;0.8333333333333334\\ \mathbf{else}:\\ \;\;\;\;0.5\\ \end{array} \end{array} \]
          (FPCore (t)
           :precision binary64
           (if (<= (/ (/ 2.0 t) (+ 1.0 (/ 1.0 t))) 1.0) 0.8333333333333334 0.5))
          double code(double t) {
          	double tmp;
          	if (((2.0 / t) / (1.0 + (1.0 / t))) <= 1.0) {
          		tmp = 0.8333333333333334;
          	} else {
          		tmp = 0.5;
          	}
          	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(t)
          use fmin_fmax_functions
              real(8), intent (in) :: t
              real(8) :: tmp
              if (((2.0d0 / t) / (1.0d0 + (1.0d0 / t))) <= 1.0d0) then
                  tmp = 0.8333333333333334d0
              else
                  tmp = 0.5d0
              end if
              code = tmp
          end function
          
          public static double code(double t) {
          	double tmp;
          	if (((2.0 / t) / (1.0 + (1.0 / t))) <= 1.0) {
          		tmp = 0.8333333333333334;
          	} else {
          		tmp = 0.5;
          	}
          	return tmp;
          }
          
          def code(t):
          	tmp = 0
          	if ((2.0 / t) / (1.0 + (1.0 / t))) <= 1.0:
          		tmp = 0.8333333333333334
          	else:
          		tmp = 0.5
          	return tmp
          
          function code(t)
          	tmp = 0.0
          	if (Float64(Float64(2.0 / t) / Float64(1.0 + Float64(1.0 / t))) <= 1.0)
          		tmp = 0.8333333333333334;
          	else
          		tmp = 0.5;
          	end
          	return tmp
          end
          
          function tmp_2 = code(t)
          	tmp = 0.0;
          	if (((2.0 / t) / (1.0 + (1.0 / t))) <= 1.0)
          		tmp = 0.8333333333333334;
          	else
          		tmp = 0.5;
          	end
          	tmp_2 = tmp;
          end
          
          code[t_] := If[LessEqual[N[(N[(2.0 / t), $MachinePrecision] / N[(1.0 + N[(1.0 / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 1.0], 0.8333333333333334, 0.5]
          
          \begin{array}{l}
          
          \\
          \begin{array}{l}
          \mathbf{if}\;\frac{\frac{2}{t}}{1 + \frac{1}{t}} \leq 1:\\
          \;\;\;\;0.8333333333333334\\
          
          \mathbf{else}:\\
          \;\;\;\;0.5\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 2 regimes
          2. if (/.f64 (/.f64 #s(literal 2 binary64) t) (+.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) t))) < 1

            1. Initial program 100.0%

              \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
            2. Taylor expanded in t around inf

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

                \[\leadsto \color{blue}{0.8333333333333334} \]

              if 1 < (/.f64 (/.f64 #s(literal 2 binary64) t) (+.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) t)))

              1. Initial program 99.9%

                \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
              2. Taylor expanded in t around 0

                \[\leadsto \color{blue}{\frac{1}{2}} \]
              3. Step-by-step derivation
                1. Applied rewrites98.6%

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

              Alternative 11: 58.3% accurate, 77.5× speedup?

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

                \[\frac{1 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)}{2 + \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right) \cdot \left(2 - \frac{\frac{2}{t}}{1 + \frac{1}{t}}\right)} \]
              2. Taylor expanded in t around 0

                \[\leadsto \color{blue}{\frac{1}{2}} \]
              3. Step-by-step derivation
                1. Applied rewrites58.3%

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

                Reproduce

                ?
                herbie shell --seed 2025130 
                (FPCore (t)
                  :name "Kahan p13 Example 2"
                  :precision binary64
                  (/ (+ 1.0 (* (- 2.0 (/ (/ 2.0 t) (+ 1.0 (/ 1.0 t)))) (- 2.0 (/ (/ 2.0 t) (+ 1.0 (/ 1.0 t)))))) (+ 2.0 (* (- 2.0 (/ (/ 2.0 t) (+ 1.0 (/ 1.0 t)))) (- 2.0 (/ (/ 2.0 t) (+ 1.0 (/ 1.0 t))))))))