Toniolo and Linder, Equation (13)

Percentage Accurate: 50.5% → 65.3%
Time: 11.7s
Alternatives: 20
Speedup: 1.5×

Specification

?
\[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
(FPCore (n U t l Om U*)
  :precision binary64
  (sqrt
 (*
  (* (* 2.0 n) U)
  (-
   (- t (* 2.0 (/ (* l l) Om)))
   (* (* n (pow (/ l Om) 2.0)) (- U U*))))))
double code(double n, double U, double t, double l, double Om, double U_42_) {
	return sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * pow((l / Om), 2.0)) * (U - U_42_)))));
}
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(n, u, t, l, om, u_42)
use fmin_fmax_functions
    real(8), intent (in) :: n
    real(8), intent (in) :: u
    real(8), intent (in) :: t
    real(8), intent (in) :: l
    real(8), intent (in) :: om
    real(8), intent (in) :: u_42
    code = sqrt((((2.0d0 * n) * u) * ((t - (2.0d0 * ((l * l) / om))) - ((n * ((l / om) ** 2.0d0)) * (u - u_42)))))
end function
public static double code(double n, double U, double t, double l, double Om, double U_42_) {
	return Math.sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * Math.pow((l / Om), 2.0)) * (U - U_42_)))));
}
def code(n, U, t, l, Om, U_42_):
	return math.sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * math.pow((l / Om), 2.0)) * (U - U_42_)))))
function code(n, U, t, l, Om, U_42_)
	return sqrt(Float64(Float64(Float64(2.0 * n) * U) * Float64(Float64(t - Float64(2.0 * Float64(Float64(l * l) / Om))) - Float64(Float64(n * (Float64(l / Om) ^ 2.0)) * Float64(U - U_42_)))))
end
function tmp = code(n, U, t, l, Om, U_42_)
	tmp = sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * ((l / Om) ^ 2.0)) * (U - U_42_)))));
end
code[n_, U_, t_, l_, Om_, U$42$_] := N[Sqrt[N[(N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision] * N[(N[(t - N[(2.0 * N[(N[(l * l), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(N[(n * N[Power[N[(l / Om), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}

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 20 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: 50.5% accurate, 1.0× speedup?

\[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
(FPCore (n U t l Om U*)
  :precision binary64
  (sqrt
 (*
  (* (* 2.0 n) U)
  (-
   (- t (* 2.0 (/ (* l l) Om)))
   (* (* n (pow (/ l Om) 2.0)) (- U U*))))))
double code(double n, double U, double t, double l, double Om, double U_42_) {
	return sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * pow((l / Om), 2.0)) * (U - U_42_)))));
}
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(n, u, t, l, om, u_42)
use fmin_fmax_functions
    real(8), intent (in) :: n
    real(8), intent (in) :: u
    real(8), intent (in) :: t
    real(8), intent (in) :: l
    real(8), intent (in) :: om
    real(8), intent (in) :: u_42
    code = sqrt((((2.0d0 * n) * u) * ((t - (2.0d0 * ((l * l) / om))) - ((n * ((l / om) ** 2.0d0)) * (u - u_42)))))
end function
public static double code(double n, double U, double t, double l, double Om, double U_42_) {
	return Math.sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * Math.pow((l / Om), 2.0)) * (U - U_42_)))));
}
def code(n, U, t, l, Om, U_42_):
	return math.sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * math.pow((l / Om), 2.0)) * (U - U_42_)))))
function code(n, U, t, l, Om, U_42_)
	return sqrt(Float64(Float64(Float64(2.0 * n) * U) * Float64(Float64(t - Float64(2.0 * Float64(Float64(l * l) / Om))) - Float64(Float64(n * (Float64(l / Om) ^ 2.0)) * Float64(U - U_42_)))))
end
function tmp = code(n, U, t, l, Om, U_42_)
	tmp = sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * ((l / Om) ^ 2.0)) * (U - U_42_)))));
end
code[n_, U_, t_, l_, Om_, U$42$_] := N[Sqrt[N[(N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision] * N[(N[(t - N[(2.0 * N[(N[(l * l), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(N[(n * N[Power[N[(l / Om), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}

Alternative 1: 65.3% accurate, 0.3× speedup?

\[\begin{array}{l} t_1 := \frac{\ell}{Om} \cdot n\\ t_2 := \left(2 \cdot n\right) \cdot U\\ t_3 := t - 2 \cdot \frac{\ell \cdot \ell}{Om}\\ t_4 := t\_2 \cdot \left(t\_3 - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\\ \mathbf{if}\;t\_4 \leq 0:\\ \;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), t\_1, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}\\ \mathbf{elif}\;t\_4 \leq 5 \cdot 10^{+303}:\\ \;\;\;\;\sqrt{t\_2 \cdot \left(t\_3 - \left(\frac{1}{Om} \cdot \left(\ell \cdot t\_1\right)\right) \cdot \left(U - U*\right)\right)}\\ \mathbf{elif}\;t\_4 \leq \infty:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}\\ \end{array} \]
(FPCore (n U t l Om U*)
  :precision binary64
  (let* ((t_1 (* (/ l Om) n))
       (t_2 (* (* 2.0 n) U))
       (t_3 (- t (* 2.0 (/ (* l l) Om))))
       (t_4 (* t_2 (- t_3 (* (* n (pow (/ l Om) 2.0)) (- U U*))))))
  (if (<= t_4 0.0)
    (*
     (sqrt
      (*
       (+ (/ (fma (* l (- U* U)) t_1 (* (* -2.0 l) l)) Om) t)
       (+ n n)))
     (sqrt U))
    (if (<= t_4 5e+303)
      (sqrt (* t_2 (- t_3 (* (* (/ 1.0 Om) (* l t_1)) (- U U*)))))
      (if (<= t_4 INFINITY)
        (sqrt
         (*
          (fma (fma (* (- U* U) n) (/ l Om) (* -2.0 l)) (/ l Om) t)
          (* (+ U U) n)))
        (sqrt
         (*
          2.0
          (/
           (* U (* l (* n (fma -2.0 l (/ (* l (* n (- U* U))) Om)))))
           Om))))))))
double code(double n, double U, double t, double l, double Om, double U_42_) {
	double t_1 = (l / Om) * n;
	double t_2 = (2.0 * n) * U;
	double t_3 = t - (2.0 * ((l * l) / Om));
	double t_4 = t_2 * (t_3 - ((n * pow((l / Om), 2.0)) * (U - U_42_)));
	double tmp;
	if (t_4 <= 0.0) {
		tmp = sqrt((((fma((l * (U_42_ - U)), t_1, ((-2.0 * l) * l)) / Om) + t) * (n + n))) * sqrt(U);
	} else if (t_4 <= 5e+303) {
		tmp = sqrt((t_2 * (t_3 - (((1.0 / Om) * (l * t_1)) * (U - U_42_)))));
	} else if (t_4 <= ((double) INFINITY)) {
		tmp = sqrt((fma(fma(((U_42_ - U) * n), (l / Om), (-2.0 * l)), (l / Om), t) * ((U + U) * n)));
	} else {
		tmp = sqrt((2.0 * ((U * (l * (n * fma(-2.0, l, ((l * (n * (U_42_ - U))) / Om))))) / Om)));
	}
	return tmp;
}
function code(n, U, t, l, Om, U_42_)
	t_1 = Float64(Float64(l / Om) * n)
	t_2 = Float64(Float64(2.0 * n) * U)
	t_3 = Float64(t - Float64(2.0 * Float64(Float64(l * l) / Om)))
	t_4 = Float64(t_2 * Float64(t_3 - Float64(Float64(n * (Float64(l / Om) ^ 2.0)) * Float64(U - U_42_))))
	tmp = 0.0
	if (t_4 <= 0.0)
		tmp = Float64(sqrt(Float64(Float64(Float64(fma(Float64(l * Float64(U_42_ - U)), t_1, Float64(Float64(-2.0 * l) * l)) / Om) + t) * Float64(n + n))) * sqrt(U));
	elseif (t_4 <= 5e+303)
		tmp = sqrt(Float64(t_2 * Float64(t_3 - Float64(Float64(Float64(1.0 / Om) * Float64(l * t_1)) * Float64(U - U_42_)))));
	elseif (t_4 <= Inf)
		tmp = sqrt(Float64(fma(fma(Float64(Float64(U_42_ - U) * n), Float64(l / Om), Float64(-2.0 * l)), Float64(l / Om), t) * Float64(Float64(U + U) * n)));
	else
		tmp = sqrt(Float64(2.0 * Float64(Float64(U * Float64(l * Float64(n * fma(-2.0, l, Float64(Float64(l * Float64(n * Float64(U_42_ - U))) / Om))))) / Om)));
	end
	return tmp
end
code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[(N[(l / Om), $MachinePrecision] * n), $MachinePrecision]}, Block[{t$95$2 = N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision]}, Block[{t$95$3 = N[(t - N[(2.0 * N[(N[(l * l), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$4 = N[(t$95$2 * N[(t$95$3 - N[(N[(n * N[Power[N[(l / Om), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$4, 0.0], N[(N[Sqrt[N[(N[(N[(N[(N[(l * N[(U$42$ - U), $MachinePrecision]), $MachinePrecision] * t$95$1 + N[(N[(-2.0 * l), $MachinePrecision] * l), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision] + t), $MachinePrecision] * N[(n + n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] * N[Sqrt[U], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$4, 5e+303], N[Sqrt[N[(t$95$2 * N[(t$95$3 - N[(N[(N[(1.0 / Om), $MachinePrecision] * N[(l * t$95$1), $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], If[LessEqual[t$95$4, Infinity], N[Sqrt[N[(N[(N[(N[(N[(U$42$ - U), $MachinePrecision] * n), $MachinePrecision] * N[(l / Om), $MachinePrecision] + N[(-2.0 * l), $MachinePrecision]), $MachinePrecision] * N[(l / Om), $MachinePrecision] + t), $MachinePrecision] * N[(N[(U + U), $MachinePrecision] * n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], N[Sqrt[N[(2.0 * N[(N[(U * N[(l * N[(n * N[(-2.0 * l + N[(N[(l * N[(n * N[(U$42$ - U), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]]]]]]]
\begin{array}{l}
t_1 := \frac{\ell}{Om} \cdot n\\
t_2 := \left(2 \cdot n\right) \cdot U\\
t_3 := t - 2 \cdot \frac{\ell \cdot \ell}{Om}\\
t_4 := t\_2 \cdot \left(t\_3 - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\\
\mathbf{if}\;t\_4 \leq 0:\\
\;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), t\_1, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}\\

\mathbf{elif}\;t\_4 \leq 5 \cdot 10^{+303}:\\
\;\;\;\;\sqrt{t\_2 \cdot \left(t\_3 - \left(\frac{1}{Om} \cdot \left(\ell \cdot t\_1\right)\right) \cdot \left(U - U*\right)\right)}\\

\mathbf{elif}\;t\_4 \leq \infty:\\
\;\;\;\;\sqrt{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\

\mathbf{else}:\\
\;\;\;\;\sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}\\


\end{array}
Derivation
  1. Split input into 4 regimes
  2. if (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 0.0

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
      3. fp-cancel-sub-sign-invN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
      4. +-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      7. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      8. sub-negate-revN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      9. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      10. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      11. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      12. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      13. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      14. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      15. lower-fma.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
    3. Applied rewrites52.2%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
    4. Applied rewrites29.2%

      \[\leadsto \color{blue}{\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}} \]

    if 0.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 4.9999999999999997e303

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U - U*\right)\right)} \]
      2. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U - U*\right)\right)} \]
      3. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U - U*\right)\right)} \]
      4. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U - U*\right)\right)} \]
      5. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U - U*\right)\right)} \]
      6. lift-/.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(\color{blue}{\frac{\ell}{Om}} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right) \cdot \left(U - U*\right)\right)} \]
      7. mult-flipN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(\color{blue}{\left(\ell \cdot \frac{1}{Om}\right)} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right) \cdot \left(U - U*\right)\right)} \]
      8. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(\color{blue}{\left(\frac{1}{Om} \cdot \ell\right)} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right) \cdot \left(U - U*\right)\right)} \]
      9. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(\frac{1}{Om} \cdot \left(\ell \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)\right)} \cdot \left(U - U*\right)\right)} \]
      10. lower-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(\frac{1}{Om} \cdot \left(\ell \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)\right)} \cdot \left(U - U*\right)\right)} \]
      11. lower-/.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(\color{blue}{\frac{1}{Om}} \cdot \left(\ell \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)\right) \cdot \left(U - U*\right)\right)} \]
      12. lower-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(\frac{1}{Om} \cdot \color{blue}{\left(\ell \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)}\right) \cdot \left(U - U*\right)\right)} \]
      13. lower-*.f6451.1%

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(\frac{1}{Om} \cdot \left(\ell \cdot \color{blue}{\left(\frac{\ell}{Om} \cdot n\right)}\right)\right) \cdot \left(U - U*\right)\right)} \]
    3. Applied rewrites51.1%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(\frac{1}{Om} \cdot \left(\ell \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)\right)} \cdot \left(U - U*\right)\right)} \]

    if 4.9999999999999997e303 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < +inf.0

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
      3. fp-cancel-sub-sign-invN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
      4. +-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      7. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      8. sub-negate-revN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      9. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      10. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      11. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      12. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      13. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      14. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      15. lower-fma.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
    3. Applied rewrites52.2%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
    4. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
      2. *-commutativeN/A

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
      3. lower-*.f6452.2%

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
    5. Applied rewrites51.4%

      \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
    6. Applied rewrites53.2%

      \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
    7. Applied rewrites57.3%

      \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]

    if +inf.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
      3. fp-cancel-sub-sign-invN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
      4. +-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      7. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      8. sub-negate-revN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      9. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      10. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      11. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      12. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      13. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      14. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      15. lower-fma.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
    3. Applied rewrites52.2%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
    4. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
      2. *-commutativeN/A

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
      3. lower-*.f6452.2%

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
    5. Applied rewrites51.4%

      \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
    6. Applied rewrites53.2%

      \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
    7. Taylor expanded in t around 0

      \[\leadsto \sqrt{\color{blue}{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
    8. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \sqrt{2 \cdot \color{blue}{\frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
      2. lower-/.f64N/A

        \[\leadsto \sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{\color{blue}{Om}}} \]
    9. Applied rewrites29.2%

      \[\leadsto \sqrt{\color{blue}{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
  3. Recombined 4 regimes into one program.
  4. Add Preprocessing

Alternative 2: 64.9% accurate, 0.3× speedup?

\[\begin{array}{l} t_1 := \frac{\ell \cdot \ell}{Om}\\ t_2 := \frac{\ell}{Om} \cdot n\\ t_3 := \left(2 \cdot n\right) \cdot U\\ t_4 := t\_3 \cdot \left(\left(t - 2 \cdot t\_1\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\\ \mathbf{if}\;t\_4 \leq 0:\\ \;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), t\_2, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}\\ \mathbf{elif}\;t\_4 \leq 5 \cdot 10^{+303}:\\ \;\;\;\;\sqrt{t\_3 \cdot \mathsf{fma}\left(\frac{\ell}{Om}, t\_2 \cdot \left(U* - U\right), \mathsf{fma}\left(-2, t\_1, t\right)\right)}\\ \mathbf{elif}\;t\_4 \leq \infty:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}\\ \end{array} \]
(FPCore (n U t l Om U*)
  :precision binary64
  (let* ((t_1 (/ (* l l) Om))
       (t_2 (* (/ l Om) n))
       (t_3 (* (* 2.0 n) U))
       (t_4
        (*
         t_3
         (-
          (- t (* 2.0 t_1))
          (* (* n (pow (/ l Om) 2.0)) (- U U*))))))
  (if (<= t_4 0.0)
    (*
     (sqrt
      (*
       (+ (/ (fma (* l (- U* U)) t_2 (* (* -2.0 l) l)) Om) t)
       (+ n n)))
     (sqrt U))
    (if (<= t_4 5e+303)
      (sqrt (* t_3 (fma (/ l Om) (* t_2 (- U* U)) (fma -2.0 t_1 t))))
      (if (<= t_4 INFINITY)
        (sqrt
         (*
          (fma (fma (* (- U* U) n) (/ l Om) (* -2.0 l)) (/ l Om) t)
          (* (+ U U) n)))
        (sqrt
         (*
          2.0
          (/
           (* U (* l (* n (fma -2.0 l (/ (* l (* n (- U* U))) Om)))))
           Om))))))))
double code(double n, double U, double t, double l, double Om, double U_42_) {
	double t_1 = (l * l) / Om;
	double t_2 = (l / Om) * n;
	double t_3 = (2.0 * n) * U;
	double t_4 = t_3 * ((t - (2.0 * t_1)) - ((n * pow((l / Om), 2.0)) * (U - U_42_)));
	double tmp;
	if (t_4 <= 0.0) {
		tmp = sqrt((((fma((l * (U_42_ - U)), t_2, ((-2.0 * l) * l)) / Om) + t) * (n + n))) * sqrt(U);
	} else if (t_4 <= 5e+303) {
		tmp = sqrt((t_3 * fma((l / Om), (t_2 * (U_42_ - U)), fma(-2.0, t_1, t))));
	} else if (t_4 <= ((double) INFINITY)) {
		tmp = sqrt((fma(fma(((U_42_ - U) * n), (l / Om), (-2.0 * l)), (l / Om), t) * ((U + U) * n)));
	} else {
		tmp = sqrt((2.0 * ((U * (l * (n * fma(-2.0, l, ((l * (n * (U_42_ - U))) / Om))))) / Om)));
	}
	return tmp;
}
function code(n, U, t, l, Om, U_42_)
	t_1 = Float64(Float64(l * l) / Om)
	t_2 = Float64(Float64(l / Om) * n)
	t_3 = Float64(Float64(2.0 * n) * U)
	t_4 = Float64(t_3 * Float64(Float64(t - Float64(2.0 * t_1)) - Float64(Float64(n * (Float64(l / Om) ^ 2.0)) * Float64(U - U_42_))))
	tmp = 0.0
	if (t_4 <= 0.0)
		tmp = Float64(sqrt(Float64(Float64(Float64(fma(Float64(l * Float64(U_42_ - U)), t_2, Float64(Float64(-2.0 * l) * l)) / Om) + t) * Float64(n + n))) * sqrt(U));
	elseif (t_4 <= 5e+303)
		tmp = sqrt(Float64(t_3 * fma(Float64(l / Om), Float64(t_2 * Float64(U_42_ - U)), fma(-2.0, t_1, t))));
	elseif (t_4 <= Inf)
		tmp = sqrt(Float64(fma(fma(Float64(Float64(U_42_ - U) * n), Float64(l / Om), Float64(-2.0 * l)), Float64(l / Om), t) * Float64(Float64(U + U) * n)));
	else
		tmp = sqrt(Float64(2.0 * Float64(Float64(U * Float64(l * Float64(n * fma(-2.0, l, Float64(Float64(l * Float64(n * Float64(U_42_ - U))) / Om))))) / Om)));
	end
	return tmp
end
code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[(N[(l * l), $MachinePrecision] / Om), $MachinePrecision]}, Block[{t$95$2 = N[(N[(l / Om), $MachinePrecision] * n), $MachinePrecision]}, Block[{t$95$3 = N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision]}, Block[{t$95$4 = N[(t$95$3 * N[(N[(t - N[(2.0 * t$95$1), $MachinePrecision]), $MachinePrecision] - N[(N[(n * N[Power[N[(l / Om), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$4, 0.0], N[(N[Sqrt[N[(N[(N[(N[(N[(l * N[(U$42$ - U), $MachinePrecision]), $MachinePrecision] * t$95$2 + N[(N[(-2.0 * l), $MachinePrecision] * l), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision] + t), $MachinePrecision] * N[(n + n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] * N[Sqrt[U], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$4, 5e+303], N[Sqrt[N[(t$95$3 * N[(N[(l / Om), $MachinePrecision] * N[(t$95$2 * N[(U$42$ - U), $MachinePrecision]), $MachinePrecision] + N[(-2.0 * t$95$1 + t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], If[LessEqual[t$95$4, Infinity], N[Sqrt[N[(N[(N[(N[(N[(U$42$ - U), $MachinePrecision] * n), $MachinePrecision] * N[(l / Om), $MachinePrecision] + N[(-2.0 * l), $MachinePrecision]), $MachinePrecision] * N[(l / Om), $MachinePrecision] + t), $MachinePrecision] * N[(N[(U + U), $MachinePrecision] * n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], N[Sqrt[N[(2.0 * N[(N[(U * N[(l * N[(n * N[(-2.0 * l + N[(N[(l * N[(n * N[(U$42$ - U), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]]]]]]]
\begin{array}{l}
t_1 := \frac{\ell \cdot \ell}{Om}\\
t_2 := \frac{\ell}{Om} \cdot n\\
t_3 := \left(2 \cdot n\right) \cdot U\\
t_4 := t\_3 \cdot \left(\left(t - 2 \cdot t\_1\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\\
\mathbf{if}\;t\_4 \leq 0:\\
\;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), t\_2, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}\\

\mathbf{elif}\;t\_4 \leq 5 \cdot 10^{+303}:\\
\;\;\;\;\sqrt{t\_3 \cdot \mathsf{fma}\left(\frac{\ell}{Om}, t\_2 \cdot \left(U* - U\right), \mathsf{fma}\left(-2, t\_1, t\right)\right)}\\

\mathbf{elif}\;t\_4 \leq \infty:\\
\;\;\;\;\sqrt{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\

\mathbf{else}:\\
\;\;\;\;\sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}\\


\end{array}
Derivation
  1. Split input into 4 regimes
  2. if (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 0.0

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
      3. fp-cancel-sub-sign-invN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
      4. +-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      7. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      8. sub-negate-revN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      9. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      10. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      11. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      12. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      13. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      14. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      15. lower-fma.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
    3. Applied rewrites52.2%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
    4. Applied rewrites29.2%

      \[\leadsto \color{blue}{\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}} \]

    if 0.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 4.9999999999999997e303

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
      3. fp-cancel-sub-sign-invN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
      4. +-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      7. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      8. sub-negate-revN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      9. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      10. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      11. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      12. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      13. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      14. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      15. lower-fma.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
    3. Applied rewrites52.2%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]

    if 4.9999999999999997e303 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < +inf.0

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
      3. fp-cancel-sub-sign-invN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
      4. +-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      7. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      8. sub-negate-revN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      9. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      10. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      11. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      12. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      13. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      14. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      15. lower-fma.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
    3. Applied rewrites52.2%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
    4. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
      2. *-commutativeN/A

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
      3. lower-*.f6452.2%

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
    5. Applied rewrites51.4%

      \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
    6. Applied rewrites53.2%

      \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
    7. Applied rewrites57.3%

      \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]

    if +inf.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
      3. fp-cancel-sub-sign-invN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
      4. +-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      7. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      8. sub-negate-revN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      9. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      10. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      11. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      12. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      13. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      14. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      15. lower-fma.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
    3. Applied rewrites52.2%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
    4. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
      2. *-commutativeN/A

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
      3. lower-*.f6452.2%

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
    5. Applied rewrites51.4%

      \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
    6. Applied rewrites53.2%

      \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
    7. Taylor expanded in t around 0

      \[\leadsto \sqrt{\color{blue}{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
    8. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \sqrt{2 \cdot \color{blue}{\frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
      2. lower-/.f64N/A

        \[\leadsto \sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{\color{blue}{Om}}} \]
    9. Applied rewrites29.2%

      \[\leadsto \sqrt{\color{blue}{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
  3. Recombined 4 regimes into one program.
  4. Add Preprocessing

Alternative 3: 64.7% accurate, 0.3× speedup?

\[\begin{array}{l} t_1 := \frac{\left|\ell\right|}{Om}\\ t_2 := \left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\left|\ell\right| \cdot \left|\ell\right|}{Om}\right) - \left(n \cdot {t\_1}^{2}\right) \cdot \left(U - U*\right)\right)\\ \mathbf{if}\;t\_2 \leq 0:\\ \;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\left|\ell\right| \cdot \left(U* - U\right), t\_1 \cdot n, \left(-2 \cdot \left|\ell\right|\right) \cdot \left|\ell\right|\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}\\ \mathbf{elif}\;t\_2 \leq 5 \cdot 10^{+303}:\\ \;\;\;\;\sqrt{t\_2}\\ \mathbf{else}:\\ \;\;\;\;\left|\ell\right| \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)}\\ \end{array} \]
(FPCore (n U t l Om U*)
  :precision binary64
  (let* ((t_1 (/ (fabs l) Om))
       (t_2
        (*
         (* (* 2.0 n) U)
         (-
          (- t (* 2.0 (/ (* (fabs l) (fabs l)) Om)))
          (* (* n (pow t_1 2.0)) (- U U*))))))
  (if (<= t_2 0.0)
    (*
     (sqrt
      (*
       (+
        (/
         (fma
          (* (fabs l) (- U* U))
          (* t_1 n)
          (* (* -2.0 (fabs l)) (fabs l)))
         Om)
        t)
       (+ n n)))
     (sqrt U))
    (if (<= t_2 5e+303)
      (sqrt t_2)
      (*
       (fabs l)
       (sqrt
        (*
         -2.0
         (*
          U
          (*
           n
           (fma
            2.0
            (/ 1.0 Om)
            (/ (* n (- U U*)) (pow Om 2.0))))))))))))
double code(double n, double U, double t, double l, double Om, double U_42_) {
	double t_1 = fabs(l) / Om;
	double t_2 = ((2.0 * n) * U) * ((t - (2.0 * ((fabs(l) * fabs(l)) / Om))) - ((n * pow(t_1, 2.0)) * (U - U_42_)));
	double tmp;
	if (t_2 <= 0.0) {
		tmp = sqrt((((fma((fabs(l) * (U_42_ - U)), (t_1 * n), ((-2.0 * fabs(l)) * fabs(l))) / Om) + t) * (n + n))) * sqrt(U);
	} else if (t_2 <= 5e+303) {
		tmp = sqrt(t_2);
	} else {
		tmp = fabs(l) * sqrt((-2.0 * (U * (n * fma(2.0, (1.0 / Om), ((n * (U - U_42_)) / pow(Om, 2.0)))))));
	}
	return tmp;
}
function code(n, U, t, l, Om, U_42_)
	t_1 = Float64(abs(l) / Om)
	t_2 = Float64(Float64(Float64(2.0 * n) * U) * Float64(Float64(t - Float64(2.0 * Float64(Float64(abs(l) * abs(l)) / Om))) - Float64(Float64(n * (t_1 ^ 2.0)) * Float64(U - U_42_))))
	tmp = 0.0
	if (t_2 <= 0.0)
		tmp = Float64(sqrt(Float64(Float64(Float64(fma(Float64(abs(l) * Float64(U_42_ - U)), Float64(t_1 * n), Float64(Float64(-2.0 * abs(l)) * abs(l))) / Om) + t) * Float64(n + n))) * sqrt(U));
	elseif (t_2 <= 5e+303)
		tmp = sqrt(t_2);
	else
		tmp = Float64(abs(l) * sqrt(Float64(-2.0 * Float64(U * Float64(n * fma(2.0, Float64(1.0 / Om), Float64(Float64(n * Float64(U - U_42_)) / (Om ^ 2.0))))))));
	end
	return tmp
end
code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[(N[Abs[l], $MachinePrecision] / Om), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision] * N[(N[(t - N[(2.0 * N[(N[(N[Abs[l], $MachinePrecision] * N[Abs[l], $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(N[(n * N[Power[t$95$1, 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, 0.0], N[(N[Sqrt[N[(N[(N[(N[(N[(N[Abs[l], $MachinePrecision] * N[(U$42$ - U), $MachinePrecision]), $MachinePrecision] * N[(t$95$1 * n), $MachinePrecision] + N[(N[(-2.0 * N[Abs[l], $MachinePrecision]), $MachinePrecision] * N[Abs[l], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision] + t), $MachinePrecision] * N[(n + n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] * N[Sqrt[U], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$2, 5e+303], N[Sqrt[t$95$2], $MachinePrecision], N[(N[Abs[l], $MachinePrecision] * N[Sqrt[N[(-2.0 * N[(U * N[(n * N[(2.0 * N[(1.0 / Om), $MachinePrecision] + N[(N[(n * N[(U - U$42$), $MachinePrecision]), $MachinePrecision] / N[Power[Om, 2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]]]]
\begin{array}{l}
t_1 := \frac{\left|\ell\right|}{Om}\\
t_2 := \left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\left|\ell\right| \cdot \left|\ell\right|}{Om}\right) - \left(n \cdot {t\_1}^{2}\right) \cdot \left(U - U*\right)\right)\\
\mathbf{if}\;t\_2 \leq 0:\\
\;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\left|\ell\right| \cdot \left(U* - U\right), t\_1 \cdot n, \left(-2 \cdot \left|\ell\right|\right) \cdot \left|\ell\right|\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}\\

\mathbf{elif}\;t\_2 \leq 5 \cdot 10^{+303}:\\
\;\;\;\;\sqrt{t\_2}\\

\mathbf{else}:\\
\;\;\;\;\left|\ell\right| \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)}\\


\end{array}
Derivation
  1. Split input into 3 regimes
  2. if (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 0.0

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
      3. fp-cancel-sub-sign-invN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
      4. +-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      7. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      8. sub-negate-revN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      9. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      10. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      11. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      12. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      13. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      14. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      15. lower-fma.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
    3. Applied rewrites52.2%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
    4. Applied rewrites29.2%

      \[\leadsto \color{blue}{\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}} \]

    if 0.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 4.9999999999999997e303

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]

    if 4.9999999999999997e303 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Taylor expanded in t around inf

      \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
      2. lower-*.f64N/A

        \[\leadsto \sqrt{2 \cdot \left(U \cdot \color{blue}{\left(n \cdot t\right)}\right)} \]
      3. lower-*.f6435.9%

        \[\leadsto \sqrt{2 \cdot \left(U \cdot \left(n \cdot \color{blue}{t}\right)\right)} \]
    4. Applied rewrites35.9%

      \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
    5. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
      2. count-2-revN/A

        \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U \cdot \left(n \cdot t\right)}} \]
      3. lift-*.f64N/A

        \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
      4. lift-*.f64N/A

        \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + U \cdot \left(n \cdot t\right)} \]
      5. associate-*r*N/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
      6. lift-*.f64N/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \color{blue}{\left(n \cdot t\right)}} \]
      7. lift-*.f64N/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \left(n \cdot \color{blue}{t}\right)} \]
      8. associate-*r*N/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \left(U \cdot n\right) \cdot \color{blue}{t}} \]
      9. distribute-lft-outN/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
      10. *-commutativeN/A

        \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \left(\color{blue}{t} + t\right)} \]
      11. lower-*.f64N/A

        \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \color{blue}{\left(t + t\right)}} \]
      12. *-commutativeN/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
      13. lower-*.f64N/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
      14. lower-+.f6436.1%

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(t + \color{blue}{t}\right)} \]
    6. Applied rewrites36.1%

      \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
    7. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
      3. associate-*l*N/A

        \[\leadsto \sqrt{U \cdot \color{blue}{\left(n \cdot \left(t + t\right)\right)}} \]
      4. *-commutativeN/A

        \[\leadsto \sqrt{\left(n \cdot \left(t + t\right)\right) \cdot \color{blue}{U}} \]
      5. lower-*.f64N/A

        \[\leadsto \sqrt{\left(n \cdot \left(t + t\right)\right) \cdot \color{blue}{U}} \]
      6. lift-+.f64N/A

        \[\leadsto \sqrt{\left(n \cdot \left(t + t\right)\right) \cdot U} \]
      7. count-2N/A

        \[\leadsto \sqrt{\left(n \cdot \left(2 \cdot t\right)\right) \cdot U} \]
      8. associate-*r*N/A

        \[\leadsto \sqrt{\left(\left(n \cdot 2\right) \cdot t\right) \cdot U} \]
      9. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
      10. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
      11. lower-*.f6435.9%

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
      12. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
      13. count-2-revN/A

        \[\leadsto \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U} \]
      14. lower-+.f6435.9%

        \[\leadsto \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U} \]
    8. Applied rewrites35.9%

      \[\leadsto \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot \color{blue}{U}} \]
    9. Taylor expanded in l around inf

      \[\leadsto \color{blue}{\ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \left(2 \cdot \frac{1}{Om} + \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)}} \]
    10. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \ell \cdot \color{blue}{\sqrt{-2 \cdot \left(U \cdot \left(n \cdot \left(2 \cdot \frac{1}{Om} + \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)}} \]
      2. lower-sqrt.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \left(2 \cdot \frac{1}{Om} + \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      3. lower-*.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \left(2 \cdot \frac{1}{Om} + \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      4. lower-*.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \left(2 \cdot \frac{1}{Om} + \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      5. lower-*.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \left(2 \cdot \frac{1}{Om} + \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      6. lower-fma.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      7. lower-/.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      8. lower-/.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      9. lower-*.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      10. lower--.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      11. lower-pow.f6414.7%

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
    11. Applied rewrites14.7%

      \[\leadsto \color{blue}{\ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)}} \]
  3. Recombined 3 regimes into one program.
  4. Add Preprocessing

Alternative 4: 64.2% accurate, 0.3× speedup?

\[\begin{array}{l} t_1 := \left(2 \cdot n\right) \cdot U\\ t_2 := \frac{\left|\ell\right|}{Om}\\ t_3 := t\_2 \cdot n\\ t_4 := t - 2 \cdot \frac{\left|\ell\right| \cdot \left|\ell\right|}{Om}\\ t_5 := t\_1 \cdot \left(t\_4 - \left(n \cdot {t\_2}^{2}\right) \cdot \left(U - U*\right)\right)\\ \mathbf{if}\;t\_5 \leq 0:\\ \;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\left|\ell\right| \cdot \left(U* - U\right), t\_3, \left(-2 \cdot \left|\ell\right|\right) \cdot \left|\ell\right|\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}\\ \mathbf{elif}\;t\_5 \leq 5 \cdot 10^{+303}:\\ \;\;\;\;\sqrt{t\_1 \cdot \left(t\_4 - \left(\frac{1}{Om} \cdot \left(\left|\ell\right| \cdot t\_3\right)\right) \cdot \left(U - U*\right)\right)}\\ \mathbf{else}:\\ \;\;\;\;\left|\ell\right| \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)}\\ \end{array} \]
(FPCore (n U t l Om U*)
  :precision binary64
  (let* ((t_1 (* (* 2.0 n) U))
       (t_2 (/ (fabs l) Om))
       (t_3 (* t_2 n))
       (t_4 (- t (* 2.0 (/ (* (fabs l) (fabs l)) Om))))
       (t_5 (* t_1 (- t_4 (* (* n (pow t_2 2.0)) (- U U*))))))
  (if (<= t_5 0.0)
    (*
     (sqrt
      (*
       (+
        (/
         (fma
          (* (fabs l) (- U* U))
          t_3
          (* (* -2.0 (fabs l)) (fabs l)))
         Om)
        t)
       (+ n n)))
     (sqrt U))
    (if (<= t_5 5e+303)
      (sqrt
       (* t_1 (- t_4 (* (* (/ 1.0 Om) (* (fabs l) t_3)) (- U U*)))))
      (*
       (fabs l)
       (sqrt
        (*
         -2.0
         (*
          U
          (*
           n
           (fma
            2.0
            (/ 1.0 Om)
            (/ (* n (- U U*)) (pow Om 2.0))))))))))))
double code(double n, double U, double t, double l, double Om, double U_42_) {
	double t_1 = (2.0 * n) * U;
	double t_2 = fabs(l) / Om;
	double t_3 = t_2 * n;
	double t_4 = t - (2.0 * ((fabs(l) * fabs(l)) / Om));
	double t_5 = t_1 * (t_4 - ((n * pow(t_2, 2.0)) * (U - U_42_)));
	double tmp;
	if (t_5 <= 0.0) {
		tmp = sqrt((((fma((fabs(l) * (U_42_ - U)), t_3, ((-2.0 * fabs(l)) * fabs(l))) / Om) + t) * (n + n))) * sqrt(U);
	} else if (t_5 <= 5e+303) {
		tmp = sqrt((t_1 * (t_4 - (((1.0 / Om) * (fabs(l) * t_3)) * (U - U_42_)))));
	} else {
		tmp = fabs(l) * sqrt((-2.0 * (U * (n * fma(2.0, (1.0 / Om), ((n * (U - U_42_)) / pow(Om, 2.0)))))));
	}
	return tmp;
}
function code(n, U, t, l, Om, U_42_)
	t_1 = Float64(Float64(2.0 * n) * U)
	t_2 = Float64(abs(l) / Om)
	t_3 = Float64(t_2 * n)
	t_4 = Float64(t - Float64(2.0 * Float64(Float64(abs(l) * abs(l)) / Om)))
	t_5 = Float64(t_1 * Float64(t_4 - Float64(Float64(n * (t_2 ^ 2.0)) * Float64(U - U_42_))))
	tmp = 0.0
	if (t_5 <= 0.0)
		tmp = Float64(sqrt(Float64(Float64(Float64(fma(Float64(abs(l) * Float64(U_42_ - U)), t_3, Float64(Float64(-2.0 * abs(l)) * abs(l))) / Om) + t) * Float64(n + n))) * sqrt(U));
	elseif (t_5 <= 5e+303)
		tmp = sqrt(Float64(t_1 * Float64(t_4 - Float64(Float64(Float64(1.0 / Om) * Float64(abs(l) * t_3)) * Float64(U - U_42_)))));
	else
		tmp = Float64(abs(l) * sqrt(Float64(-2.0 * Float64(U * Float64(n * fma(2.0, Float64(1.0 / Om), Float64(Float64(n * Float64(U - U_42_)) / (Om ^ 2.0))))))));
	end
	return tmp
end
code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision]}, Block[{t$95$2 = N[(N[Abs[l], $MachinePrecision] / Om), $MachinePrecision]}, Block[{t$95$3 = N[(t$95$2 * n), $MachinePrecision]}, Block[{t$95$4 = N[(t - N[(2.0 * N[(N[(N[Abs[l], $MachinePrecision] * N[Abs[l], $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$5 = N[(t$95$1 * N[(t$95$4 - N[(N[(n * N[Power[t$95$2, 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$5, 0.0], N[(N[Sqrt[N[(N[(N[(N[(N[(N[Abs[l], $MachinePrecision] * N[(U$42$ - U), $MachinePrecision]), $MachinePrecision] * t$95$3 + N[(N[(-2.0 * N[Abs[l], $MachinePrecision]), $MachinePrecision] * N[Abs[l], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision] + t), $MachinePrecision] * N[(n + n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] * N[Sqrt[U], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$5, 5e+303], N[Sqrt[N[(t$95$1 * N[(t$95$4 - N[(N[(N[(1.0 / Om), $MachinePrecision] * N[(N[Abs[l], $MachinePrecision] * t$95$3), $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], N[(N[Abs[l], $MachinePrecision] * N[Sqrt[N[(-2.0 * N[(U * N[(n * N[(2.0 * N[(1.0 / Om), $MachinePrecision] + N[(N[(n * N[(U - U$42$), $MachinePrecision]), $MachinePrecision] / N[Power[Om, 2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]]]]]]]
\begin{array}{l}
t_1 := \left(2 \cdot n\right) \cdot U\\
t_2 := \frac{\left|\ell\right|}{Om}\\
t_3 := t\_2 \cdot n\\
t_4 := t - 2 \cdot \frac{\left|\ell\right| \cdot \left|\ell\right|}{Om}\\
t_5 := t\_1 \cdot \left(t\_4 - \left(n \cdot {t\_2}^{2}\right) \cdot \left(U - U*\right)\right)\\
\mathbf{if}\;t\_5 \leq 0:\\
\;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\left|\ell\right| \cdot \left(U* - U\right), t\_3, \left(-2 \cdot \left|\ell\right|\right) \cdot \left|\ell\right|\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}\\

\mathbf{elif}\;t\_5 \leq 5 \cdot 10^{+303}:\\
\;\;\;\;\sqrt{t\_1 \cdot \left(t\_4 - \left(\frac{1}{Om} \cdot \left(\left|\ell\right| \cdot t\_3\right)\right) \cdot \left(U - U*\right)\right)}\\

\mathbf{else}:\\
\;\;\;\;\left|\ell\right| \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)}\\


\end{array}
Derivation
  1. Split input into 3 regimes
  2. if (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 0.0

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
      3. fp-cancel-sub-sign-invN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
      4. +-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      7. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      8. sub-negate-revN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      9. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      10. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      11. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      12. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      13. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      14. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      15. lower-fma.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
    3. Applied rewrites52.2%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
    4. Applied rewrites29.2%

      \[\leadsto \color{blue}{\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}} \]

    if 0.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 4.9999999999999997e303

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U - U*\right)\right)} \]
      2. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U - U*\right)\right)} \]
      3. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U - U*\right)\right)} \]
      4. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U - U*\right)\right)} \]
      5. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U - U*\right)\right)} \]
      6. lift-/.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(\color{blue}{\frac{\ell}{Om}} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right) \cdot \left(U - U*\right)\right)} \]
      7. mult-flipN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(\color{blue}{\left(\ell \cdot \frac{1}{Om}\right)} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right) \cdot \left(U - U*\right)\right)} \]
      8. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(\color{blue}{\left(\frac{1}{Om} \cdot \ell\right)} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right) \cdot \left(U - U*\right)\right)} \]
      9. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(\frac{1}{Om} \cdot \left(\ell \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)\right)} \cdot \left(U - U*\right)\right)} \]
      10. lower-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(\frac{1}{Om} \cdot \left(\ell \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)\right)} \cdot \left(U - U*\right)\right)} \]
      11. lower-/.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(\color{blue}{\frac{1}{Om}} \cdot \left(\ell \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)\right) \cdot \left(U - U*\right)\right)} \]
      12. lower-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(\frac{1}{Om} \cdot \color{blue}{\left(\ell \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)}\right) \cdot \left(U - U*\right)\right)} \]
      13. lower-*.f6451.1%

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(\frac{1}{Om} \cdot \left(\ell \cdot \color{blue}{\left(\frac{\ell}{Om} \cdot n\right)}\right)\right) \cdot \left(U - U*\right)\right)} \]
    3. Applied rewrites51.1%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(\frac{1}{Om} \cdot \left(\ell \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)\right)} \cdot \left(U - U*\right)\right)} \]

    if 4.9999999999999997e303 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Taylor expanded in t around inf

      \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
    3. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
      2. lower-*.f64N/A

        \[\leadsto \sqrt{2 \cdot \left(U \cdot \color{blue}{\left(n \cdot t\right)}\right)} \]
      3. lower-*.f6435.9%

        \[\leadsto \sqrt{2 \cdot \left(U \cdot \left(n \cdot \color{blue}{t}\right)\right)} \]
    4. Applied rewrites35.9%

      \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
    5. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
      2. count-2-revN/A

        \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U \cdot \left(n \cdot t\right)}} \]
      3. lift-*.f64N/A

        \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
      4. lift-*.f64N/A

        \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + U \cdot \left(n \cdot t\right)} \]
      5. associate-*r*N/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
      6. lift-*.f64N/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \color{blue}{\left(n \cdot t\right)}} \]
      7. lift-*.f64N/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \left(n \cdot \color{blue}{t}\right)} \]
      8. associate-*r*N/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \left(U \cdot n\right) \cdot \color{blue}{t}} \]
      9. distribute-lft-outN/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
      10. *-commutativeN/A

        \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \left(\color{blue}{t} + t\right)} \]
      11. lower-*.f64N/A

        \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \color{blue}{\left(t + t\right)}} \]
      12. *-commutativeN/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
      13. lower-*.f64N/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
      14. lower-+.f6436.1%

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(t + \color{blue}{t}\right)} \]
    6. Applied rewrites36.1%

      \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
    7. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
      3. associate-*l*N/A

        \[\leadsto \sqrt{U \cdot \color{blue}{\left(n \cdot \left(t + t\right)\right)}} \]
      4. *-commutativeN/A

        \[\leadsto \sqrt{\left(n \cdot \left(t + t\right)\right) \cdot \color{blue}{U}} \]
      5. lower-*.f64N/A

        \[\leadsto \sqrt{\left(n \cdot \left(t + t\right)\right) \cdot \color{blue}{U}} \]
      6. lift-+.f64N/A

        \[\leadsto \sqrt{\left(n \cdot \left(t + t\right)\right) \cdot U} \]
      7. count-2N/A

        \[\leadsto \sqrt{\left(n \cdot \left(2 \cdot t\right)\right) \cdot U} \]
      8. associate-*r*N/A

        \[\leadsto \sqrt{\left(\left(n \cdot 2\right) \cdot t\right) \cdot U} \]
      9. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
      10. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
      11. lower-*.f6435.9%

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
      12. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
      13. count-2-revN/A

        \[\leadsto \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U} \]
      14. lower-+.f6435.9%

        \[\leadsto \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U} \]
    8. Applied rewrites35.9%

      \[\leadsto \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot \color{blue}{U}} \]
    9. Taylor expanded in l around inf

      \[\leadsto \color{blue}{\ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \left(2 \cdot \frac{1}{Om} + \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)}} \]
    10. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \ell \cdot \color{blue}{\sqrt{-2 \cdot \left(U \cdot \left(n \cdot \left(2 \cdot \frac{1}{Om} + \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)}} \]
      2. lower-sqrt.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \left(2 \cdot \frac{1}{Om} + \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      3. lower-*.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \left(2 \cdot \frac{1}{Om} + \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      4. lower-*.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \left(2 \cdot \frac{1}{Om} + \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      5. lower-*.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \left(2 \cdot \frac{1}{Om} + \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      6. lower-fma.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      7. lower-/.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      8. lower-/.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      9. lower-*.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      10. lower--.f64N/A

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
      11. lower-pow.f6414.7%

        \[\leadsto \ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)} \]
    11. Applied rewrites14.7%

      \[\leadsto \color{blue}{\ell \cdot \sqrt{-2 \cdot \left(U \cdot \left(n \cdot \mathsf{fma}\left(2, \frac{1}{Om}, \frac{n \cdot \left(U - U*\right)}{{Om}^{2}}\right)\right)\right)}} \]
  3. Recombined 3 regimes into one program.
  4. Add Preprocessing

Alternative 5: 64.2% accurate, 0.3× speedup?

\[\begin{array}{l} t_1 := \frac{\ell \cdot \ell}{Om}\\ t_2 := \frac{\ell}{Om} \cdot n\\ t_3 := \left(2 \cdot n\right) \cdot U\\ t_4 := t\_3 \cdot \left(\left(t - 2 \cdot t\_1\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\\ \mathbf{if}\;t\_4 \leq 0:\\ \;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), t\_2, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}\\ \mathbf{elif}\;t\_4 \leq 5 \cdot 10^{+303}:\\ \;\;\;\;\sqrt{t\_3 \cdot \mathsf{fma}\left(\left(U* - U\right) \cdot \frac{\ell}{Om}, t\_2, \mathsf{fma}\left(-2, t\_1, t\right)\right)}\\ \mathbf{elif}\;t\_4 \leq \infty:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}\\ \end{array} \]
(FPCore (n U t l Om U*)
  :precision binary64
  (let* ((t_1 (/ (* l l) Om))
       (t_2 (* (/ l Om) n))
       (t_3 (* (* 2.0 n) U))
       (t_4
        (*
         t_3
         (-
          (- t (* 2.0 t_1))
          (* (* n (pow (/ l Om) 2.0)) (- U U*))))))
  (if (<= t_4 0.0)
    (*
     (sqrt
      (*
       (+ (/ (fma (* l (- U* U)) t_2 (* (* -2.0 l) l)) Om) t)
       (+ n n)))
     (sqrt U))
    (if (<= t_4 5e+303)
      (sqrt (* t_3 (fma (* (- U* U) (/ l Om)) t_2 (fma -2.0 t_1 t))))
      (if (<= t_4 INFINITY)
        (sqrt
         (*
          (fma (fma (* (- U* U) n) (/ l Om) (* -2.0 l)) (/ l Om) t)
          (* (+ U U) n)))
        (sqrt
         (*
          2.0
          (/
           (* U (* l (* n (fma -2.0 l (/ (* l (* n (- U* U))) Om)))))
           Om))))))))
double code(double n, double U, double t, double l, double Om, double U_42_) {
	double t_1 = (l * l) / Om;
	double t_2 = (l / Om) * n;
	double t_3 = (2.0 * n) * U;
	double t_4 = t_3 * ((t - (2.0 * t_1)) - ((n * pow((l / Om), 2.0)) * (U - U_42_)));
	double tmp;
	if (t_4 <= 0.0) {
		tmp = sqrt((((fma((l * (U_42_ - U)), t_2, ((-2.0 * l) * l)) / Om) + t) * (n + n))) * sqrt(U);
	} else if (t_4 <= 5e+303) {
		tmp = sqrt((t_3 * fma(((U_42_ - U) * (l / Om)), t_2, fma(-2.0, t_1, t))));
	} else if (t_4 <= ((double) INFINITY)) {
		tmp = sqrt((fma(fma(((U_42_ - U) * n), (l / Om), (-2.0 * l)), (l / Om), t) * ((U + U) * n)));
	} else {
		tmp = sqrt((2.0 * ((U * (l * (n * fma(-2.0, l, ((l * (n * (U_42_ - U))) / Om))))) / Om)));
	}
	return tmp;
}
function code(n, U, t, l, Om, U_42_)
	t_1 = Float64(Float64(l * l) / Om)
	t_2 = Float64(Float64(l / Om) * n)
	t_3 = Float64(Float64(2.0 * n) * U)
	t_4 = Float64(t_3 * Float64(Float64(t - Float64(2.0 * t_1)) - Float64(Float64(n * (Float64(l / Om) ^ 2.0)) * Float64(U - U_42_))))
	tmp = 0.0
	if (t_4 <= 0.0)
		tmp = Float64(sqrt(Float64(Float64(Float64(fma(Float64(l * Float64(U_42_ - U)), t_2, Float64(Float64(-2.0 * l) * l)) / Om) + t) * Float64(n + n))) * sqrt(U));
	elseif (t_4 <= 5e+303)
		tmp = sqrt(Float64(t_3 * fma(Float64(Float64(U_42_ - U) * Float64(l / Om)), t_2, fma(-2.0, t_1, t))));
	elseif (t_4 <= Inf)
		tmp = sqrt(Float64(fma(fma(Float64(Float64(U_42_ - U) * n), Float64(l / Om), Float64(-2.0 * l)), Float64(l / Om), t) * Float64(Float64(U + U) * n)));
	else
		tmp = sqrt(Float64(2.0 * Float64(Float64(U * Float64(l * Float64(n * fma(-2.0, l, Float64(Float64(l * Float64(n * Float64(U_42_ - U))) / Om))))) / Om)));
	end
	return tmp
end
code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[(N[(l * l), $MachinePrecision] / Om), $MachinePrecision]}, Block[{t$95$2 = N[(N[(l / Om), $MachinePrecision] * n), $MachinePrecision]}, Block[{t$95$3 = N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision]}, Block[{t$95$4 = N[(t$95$3 * N[(N[(t - N[(2.0 * t$95$1), $MachinePrecision]), $MachinePrecision] - N[(N[(n * N[Power[N[(l / Om), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$4, 0.0], N[(N[Sqrt[N[(N[(N[(N[(N[(l * N[(U$42$ - U), $MachinePrecision]), $MachinePrecision] * t$95$2 + N[(N[(-2.0 * l), $MachinePrecision] * l), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision] + t), $MachinePrecision] * N[(n + n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] * N[Sqrt[U], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$4, 5e+303], N[Sqrt[N[(t$95$3 * N[(N[(N[(U$42$ - U), $MachinePrecision] * N[(l / Om), $MachinePrecision]), $MachinePrecision] * t$95$2 + N[(-2.0 * t$95$1 + t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], If[LessEqual[t$95$4, Infinity], N[Sqrt[N[(N[(N[(N[(N[(U$42$ - U), $MachinePrecision] * n), $MachinePrecision] * N[(l / Om), $MachinePrecision] + N[(-2.0 * l), $MachinePrecision]), $MachinePrecision] * N[(l / Om), $MachinePrecision] + t), $MachinePrecision] * N[(N[(U + U), $MachinePrecision] * n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], N[Sqrt[N[(2.0 * N[(N[(U * N[(l * N[(n * N[(-2.0 * l + N[(N[(l * N[(n * N[(U$42$ - U), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]]]]]]]
\begin{array}{l}
t_1 := \frac{\ell \cdot \ell}{Om}\\
t_2 := \frac{\ell}{Om} \cdot n\\
t_3 := \left(2 \cdot n\right) \cdot U\\
t_4 := t\_3 \cdot \left(\left(t - 2 \cdot t\_1\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\\
\mathbf{if}\;t\_4 \leq 0:\\
\;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), t\_2, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}\\

\mathbf{elif}\;t\_4 \leq 5 \cdot 10^{+303}:\\
\;\;\;\;\sqrt{t\_3 \cdot \mathsf{fma}\left(\left(U* - U\right) \cdot \frac{\ell}{Om}, t\_2, \mathsf{fma}\left(-2, t\_1, t\right)\right)}\\

\mathbf{elif}\;t\_4 \leq \infty:\\
\;\;\;\;\sqrt{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\

\mathbf{else}:\\
\;\;\;\;\sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}\\


\end{array}
Derivation
  1. Split input into 4 regimes
  2. if (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 0.0

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
      3. fp-cancel-sub-sign-invN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
      4. +-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      7. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      8. sub-negate-revN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      9. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      10. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      11. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      12. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      13. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      14. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      15. lower-fma.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
    3. Applied rewrites52.2%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
    4. Applied rewrites29.2%

      \[\leadsto \color{blue}{\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}} \]

    if 0.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 4.9999999999999997e303

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
      3. fp-cancel-sub-sign-invN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
      4. +-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
      5. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(U - U*\right) \cdot \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(U - U*\right) \cdot \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      7. distribute-lft-neg-inN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(U - U*\right)\right)\right) \cdot \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      8. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) \cdot \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      9. sub-negate-revN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(U* - U\right)} \cdot \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      10. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(U* - U\right) \cdot \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      11. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(U* - U\right) \cdot \color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      12. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(U* - U\right) \cdot \left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      13. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(U* - U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      14. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(U* - U\right) \cdot \color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      15. associate-*r*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\left(U* - U\right) \cdot \frac{\ell}{Om}\right) \cdot \left(\frac{\ell}{Om} \cdot n\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      16. lower-fma.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\left(U* - U\right) \cdot \frac{\ell}{Om}, \frac{\ell}{Om} \cdot n, t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
    3. Applied rewrites51.8%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\left(U* - U\right) \cdot \frac{\ell}{Om}, \frac{\ell}{Om} \cdot n, \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]

    if 4.9999999999999997e303 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < +inf.0

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
      3. fp-cancel-sub-sign-invN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
      4. +-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      7. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      8. sub-negate-revN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      9. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      10. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      11. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      12. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      13. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      14. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      15. lower-fma.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
    3. Applied rewrites52.2%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
    4. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
      2. *-commutativeN/A

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
      3. lower-*.f6452.2%

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
    5. Applied rewrites51.4%

      \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
    6. Applied rewrites53.2%

      \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
    7. Applied rewrites57.3%

      \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]

    if +inf.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
      3. fp-cancel-sub-sign-invN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
      4. +-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      7. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      8. sub-negate-revN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      9. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      10. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      11. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      12. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      13. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      14. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      15. lower-fma.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
    3. Applied rewrites52.2%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
    4. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
      2. *-commutativeN/A

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
      3. lower-*.f6452.2%

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
    5. Applied rewrites51.4%

      \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
    6. Applied rewrites53.2%

      \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
    7. Taylor expanded in t around 0

      \[\leadsto \sqrt{\color{blue}{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
    8. Step-by-step derivation
      1. lower-*.f64N/A

        \[\leadsto \sqrt{2 \cdot \color{blue}{\frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
      2. lower-/.f64N/A

        \[\leadsto \sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{\color{blue}{Om}}} \]
    9. Applied rewrites29.2%

      \[\leadsto \sqrt{\color{blue}{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
  3. Recombined 4 regimes into one program.
  4. Add Preprocessing

Alternative 6: 64.1% accurate, 0.3× speedup?

\[\begin{array}{l} t_1 := \left(U + U\right) \cdot n\\ t_2 := \frac{\ell}{Om} \cdot n\\ t_3 := \left(-2 \cdot \ell\right) \cdot \ell\\ t_4 := \left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\\ \mathbf{if}\;t\_4 \leq 0:\\ \;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), t\_2, t\_3\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}\\ \mathbf{elif}\;t\_4 \leq 5 \cdot 10^{+303}:\\ \;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot U*, t\_2, t\_3\right)}{Om} + t\right) \cdot t\_1}\\ \mathbf{elif}\;t\_4 \leq \infty:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right) \cdot t\_1}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}\\ \end{array} \]
(FPCore (n U t l Om U*)
  :precision binary64
  (let* ((t_1 (* (+ U U) n))
       (t_2 (* (/ l Om) n))
       (t_3 (* (* -2.0 l) l))
       (t_4
        (*
         (* (* 2.0 n) U)
         (-
          (- t (* 2.0 (/ (* l l) Om)))
          (* (* n (pow (/ l Om) 2.0)) (- U U*))))))
  (if (<= t_4 0.0)
    (*
     (sqrt (* (+ (/ (fma (* l (- U* U)) t_2 t_3) Om) t) (+ n n)))
     (sqrt U))
    (if (<= t_4 5e+303)
      (sqrt (* (+ (/ (fma (* l U*) t_2 t_3) Om) t) t_1))
      (if (<= t_4 INFINITY)
        (sqrt
         (*
          (fma (fma (* (- U* U) n) (/ l Om) (* -2.0 l)) (/ l Om) t)
          t_1))
        (sqrt
         (*
          2.0
          (/
           (* U (* l (* n (fma -2.0 l (/ (* l (* n (- U* U))) Om)))))
           Om))))))))
double code(double n, double U, double t, double l, double Om, double U_42_) {
	double t_1 = (U + U) * n;
	double t_2 = (l / Om) * n;
	double t_3 = (-2.0 * l) * l;
	double t_4 = ((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * pow((l / Om), 2.0)) * (U - U_42_)));
	double tmp;
	if (t_4 <= 0.0) {
		tmp = sqrt((((fma((l * (U_42_ - U)), t_2, t_3) / Om) + t) * (n + n))) * sqrt(U);
	} else if (t_4 <= 5e+303) {
		tmp = sqrt((((fma((l * U_42_), t_2, t_3) / Om) + t) * t_1));
	} else if (t_4 <= ((double) INFINITY)) {
		tmp = sqrt((fma(fma(((U_42_ - U) * n), (l / Om), (-2.0 * l)), (l / Om), t) * t_1));
	} else {
		tmp = sqrt((2.0 * ((U * (l * (n * fma(-2.0, l, ((l * (n * (U_42_ - U))) / Om))))) / Om)));
	}
	return tmp;
}
function code(n, U, t, l, Om, U_42_)
	t_1 = Float64(Float64(U + U) * n)
	t_2 = Float64(Float64(l / Om) * n)
	t_3 = Float64(Float64(-2.0 * l) * l)
	t_4 = Float64(Float64(Float64(2.0 * n) * U) * Float64(Float64(t - Float64(2.0 * Float64(Float64(l * l) / Om))) - Float64(Float64(n * (Float64(l / Om) ^ 2.0)) * Float64(U - U_42_))))
	tmp = 0.0
	if (t_4 <= 0.0)
		tmp = Float64(sqrt(Float64(Float64(Float64(fma(Float64(l * Float64(U_42_ - U)), t_2, t_3) / Om) + t) * Float64(n + n))) * sqrt(U));
	elseif (t_4 <= 5e+303)
		tmp = sqrt(Float64(Float64(Float64(fma(Float64(l * U_42_), t_2, t_3) / Om) + t) * t_1));
	elseif (t_4 <= Inf)
		tmp = sqrt(Float64(fma(fma(Float64(Float64(U_42_ - U) * n), Float64(l / Om), Float64(-2.0 * l)), Float64(l / Om), t) * t_1));
	else
		tmp = sqrt(Float64(2.0 * Float64(Float64(U * Float64(l * Float64(n * fma(-2.0, l, Float64(Float64(l * Float64(n * Float64(U_42_ - U))) / Om))))) / Om)));
	end
	return tmp
end
code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[(N[(U + U), $MachinePrecision] * n), $MachinePrecision]}, Block[{t$95$2 = N[(N[(l / Om), $MachinePrecision] * n), $MachinePrecision]}, Block[{t$95$3 = N[(N[(-2.0 * l), $MachinePrecision] * l), $MachinePrecision]}, Block[{t$95$4 = N[(N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision] * N[(N[(t - N[(2.0 * N[(N[(l * l), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(N[(n * N[Power[N[(l / Om), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$4, 0.0], N[(N[Sqrt[N[(N[(N[(N[(N[(l * N[(U$42$ - U), $MachinePrecision]), $MachinePrecision] * t$95$2 + t$95$3), $MachinePrecision] / Om), $MachinePrecision] + t), $MachinePrecision] * N[(n + n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] * N[Sqrt[U], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$4, 5e+303], N[Sqrt[N[(N[(N[(N[(N[(l * U$42$), $MachinePrecision] * t$95$2 + t$95$3), $MachinePrecision] / Om), $MachinePrecision] + t), $MachinePrecision] * t$95$1), $MachinePrecision]], $MachinePrecision], If[LessEqual[t$95$4, Infinity], N[Sqrt[N[(N[(N[(N[(N[(U$42$ - U), $MachinePrecision] * n), $MachinePrecision] * N[(l / Om), $MachinePrecision] + N[(-2.0 * l), $MachinePrecision]), $MachinePrecision] * N[(l / Om), $MachinePrecision] + t), $MachinePrecision] * t$95$1), $MachinePrecision]], $MachinePrecision], N[Sqrt[N[(2.0 * N[(N[(U * N[(l * N[(n * N[(-2.0 * l + N[(N[(l * N[(n * N[(U$42$ - U), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]]]]]]]
\begin{array}{l}
t_1 := \left(U + U\right) \cdot n\\
t_2 := \frac{\ell}{Om} \cdot n\\
t_3 := \left(-2 \cdot \ell\right) \cdot \ell\\
t_4 := \left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\\
\mathbf{if}\;t\_4 \leq 0:\\
\;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), t\_2, t\_3\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}\\

\mathbf{elif}\;t\_4 \leq 5 \cdot 10^{+303}:\\
\;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot U*, t\_2, t\_3\right)}{Om} + t\right) \cdot t\_1}\\

\mathbf{elif}\;t\_4 \leq \infty:\\
\;\;\;\;\sqrt{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right) \cdot t\_1}\\

\mathbf{else}:\\
\;\;\;\;\sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}\\


\end{array}
Derivation
  1. Split input into 4 regimes
  2. if (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 0.0

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
      3. fp-cancel-sub-sign-invN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
      4. +-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      7. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      8. sub-negate-revN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      9. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      10. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      11. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      12. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      13. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      14. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      15. lower-fma.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
    3. Applied rewrites52.2%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
    4. Applied rewrites29.2%

      \[\leadsto \color{blue}{\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}} \]

    if 0.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 4.9999999999999997e303

    1. Initial program 50.5%

      \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
    2. Step-by-step derivation
      1. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
      2. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
      3. fp-cancel-sub-sign-invN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
      4. +-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
      5. distribute-lft-neg-outN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      6. distribute-rgt-neg-inN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      7. lift--.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      8. sub-negate-revN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      9. lift-*.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      10. *-commutativeN/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      11. lift-pow.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      12. unpow2N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      13. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      14. associate-*l*N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
      15. lower-fma.f64N/A

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
    3. Applied rewrites52.2%

      \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
    4. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
      2. *-commutativeN/A

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
      3. lower-*.f6452.2%

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
    5. Applied rewrites51.4%

      \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
    6. Taylor expanded in U around 0

      \[\leadsto \sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \color{blue}{U*}, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
    7. Step-by-step derivation
      1. Applied rewrites51.9%

        \[\leadsto \sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \color{blue}{U*}, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]

      if 4.9999999999999997e303 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < +inf.0

      1. Initial program 50.5%

        \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
      2. Step-by-step derivation
        1. lift--.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
        2. lift-*.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
        3. fp-cancel-sub-sign-invN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
        4. +-commutativeN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
        5. distribute-lft-neg-outN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        6. distribute-rgt-neg-inN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        7. lift--.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        8. sub-negate-revN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        9. lift-*.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        10. *-commutativeN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        11. lift-pow.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        12. unpow2N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        13. associate-*l*N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        14. associate-*l*N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        15. lower-fma.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
      3. Applied rewrites52.2%

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
      4. Step-by-step derivation
        1. lift-*.f64N/A

          \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
        2. *-commutativeN/A

          \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
        3. lower-*.f6452.2%

          \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
      5. Applied rewrites51.4%

        \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
      6. Applied rewrites53.2%

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
      7. Applied rewrites57.3%

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]

      if +inf.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))

      1. Initial program 50.5%

        \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
      2. Step-by-step derivation
        1. lift--.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
        2. lift-*.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
        3. fp-cancel-sub-sign-invN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
        4. +-commutativeN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
        5. distribute-lft-neg-outN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        6. distribute-rgt-neg-inN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        7. lift--.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        8. sub-negate-revN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        9. lift-*.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        10. *-commutativeN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        11. lift-pow.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        12. unpow2N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        13. associate-*l*N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        14. associate-*l*N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        15. lower-fma.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
      3. Applied rewrites52.2%

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
      4. Step-by-step derivation
        1. lift-*.f64N/A

          \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
        2. *-commutativeN/A

          \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
        3. lower-*.f6452.2%

          \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
      5. Applied rewrites51.4%

        \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
      6. Applied rewrites53.2%

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
      7. Taylor expanded in t around 0

        \[\leadsto \sqrt{\color{blue}{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
      8. Step-by-step derivation
        1. lower-*.f64N/A

          \[\leadsto \sqrt{2 \cdot \color{blue}{\frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
        2. lower-/.f64N/A

          \[\leadsto \sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{\color{blue}{Om}}} \]
      9. Applied rewrites29.2%

        \[\leadsto \sqrt{\color{blue}{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
    8. Recombined 4 regimes into one program.
    9. Add Preprocessing

    Alternative 7: 63.9% accurate, 0.3× speedup?

    \[\begin{array}{l} t_1 := \mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right)\\ t_2 := \left(U + U\right) \cdot n\\ t_3 := \left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\\ \mathbf{if}\;t\_3 \leq 0:\\ \;\;\;\;\sqrt{t\_1 \cdot \left(n + n\right)} \cdot \sqrt{U}\\ \mathbf{elif}\;t\_3 \leq 5 \cdot 10^{+303}:\\ \;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot t\_2}\\ \mathbf{elif}\;t\_3 \leq \infty:\\ \;\;\;\;\sqrt{t\_1 \cdot t\_2}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}\\ \end{array} \]
    (FPCore (n U t l Om U*)
      :precision binary64
      (let* ((t_1 (fma (fma (* (- U* U) n) (/ l Om) (* -2.0 l)) (/ l Om) t))
           (t_2 (* (+ U U) n))
           (t_3
            (*
             (* (* 2.0 n) U)
             (-
              (- t (* 2.0 (/ (* l l) Om)))
              (* (* n (pow (/ l Om) 2.0)) (- U U*))))))
      (if (<= t_3 0.0)
        (* (sqrt (* t_1 (+ n n))) (sqrt U))
        (if (<= t_3 5e+303)
          (sqrt
           (*
            (+ (/ (fma (* l U*) (* (/ l Om) n) (* (* -2.0 l) l)) Om) t)
            t_2))
          (if (<= t_3 INFINITY)
            (sqrt (* t_1 t_2))
            (sqrt
             (*
              2.0
              (/
               (* U (* l (* n (fma -2.0 l (/ (* l (* n (- U* U))) Om)))))
               Om))))))))
    double code(double n, double U, double t, double l, double Om, double U_42_) {
    	double t_1 = fma(fma(((U_42_ - U) * n), (l / Om), (-2.0 * l)), (l / Om), t);
    	double t_2 = (U + U) * n;
    	double t_3 = ((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * pow((l / Om), 2.0)) * (U - U_42_)));
    	double tmp;
    	if (t_3 <= 0.0) {
    		tmp = sqrt((t_1 * (n + n))) * sqrt(U);
    	} else if (t_3 <= 5e+303) {
    		tmp = sqrt((((fma((l * U_42_), ((l / Om) * n), ((-2.0 * l) * l)) / Om) + t) * t_2));
    	} else if (t_3 <= ((double) INFINITY)) {
    		tmp = sqrt((t_1 * t_2));
    	} else {
    		tmp = sqrt((2.0 * ((U * (l * (n * fma(-2.0, l, ((l * (n * (U_42_ - U))) / Om))))) / Om)));
    	}
    	return tmp;
    }
    
    function code(n, U, t, l, Om, U_42_)
    	t_1 = fma(fma(Float64(Float64(U_42_ - U) * n), Float64(l / Om), Float64(-2.0 * l)), Float64(l / Om), t)
    	t_2 = Float64(Float64(U + U) * n)
    	t_3 = Float64(Float64(Float64(2.0 * n) * U) * Float64(Float64(t - Float64(2.0 * Float64(Float64(l * l) / Om))) - Float64(Float64(n * (Float64(l / Om) ^ 2.0)) * Float64(U - U_42_))))
    	tmp = 0.0
    	if (t_3 <= 0.0)
    		tmp = Float64(sqrt(Float64(t_1 * Float64(n + n))) * sqrt(U));
    	elseif (t_3 <= 5e+303)
    		tmp = sqrt(Float64(Float64(Float64(fma(Float64(l * U_42_), Float64(Float64(l / Om) * n), Float64(Float64(-2.0 * l) * l)) / Om) + t) * t_2));
    	elseif (t_3 <= Inf)
    		tmp = sqrt(Float64(t_1 * t_2));
    	else
    		tmp = sqrt(Float64(2.0 * Float64(Float64(U * Float64(l * Float64(n * fma(-2.0, l, Float64(Float64(l * Float64(n * Float64(U_42_ - U))) / Om))))) / Om)));
    	end
    	return tmp
    end
    
    code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[(N[(N[(N[(U$42$ - U), $MachinePrecision] * n), $MachinePrecision] * N[(l / Om), $MachinePrecision] + N[(-2.0 * l), $MachinePrecision]), $MachinePrecision] * N[(l / Om), $MachinePrecision] + t), $MachinePrecision]}, Block[{t$95$2 = N[(N[(U + U), $MachinePrecision] * n), $MachinePrecision]}, Block[{t$95$3 = N[(N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision] * N[(N[(t - N[(2.0 * N[(N[(l * l), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(N[(n * N[Power[N[(l / Om), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$3, 0.0], N[(N[Sqrt[N[(t$95$1 * N[(n + n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] * N[Sqrt[U], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$3, 5e+303], N[Sqrt[N[(N[(N[(N[(N[(l * U$42$), $MachinePrecision] * N[(N[(l / Om), $MachinePrecision] * n), $MachinePrecision] + N[(N[(-2.0 * l), $MachinePrecision] * l), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision] + t), $MachinePrecision] * t$95$2), $MachinePrecision]], $MachinePrecision], If[LessEqual[t$95$3, Infinity], N[Sqrt[N[(t$95$1 * t$95$2), $MachinePrecision]], $MachinePrecision], N[Sqrt[N[(2.0 * N[(N[(U * N[(l * N[(n * N[(-2.0 * l + N[(N[(l * N[(n * N[(U$42$ - U), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]]]]]]
    
    \begin{array}{l}
    t_1 := \mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right)\\
    t_2 := \left(U + U\right) \cdot n\\
    t_3 := \left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\\
    \mathbf{if}\;t\_3 \leq 0:\\
    \;\;\;\;\sqrt{t\_1 \cdot \left(n + n\right)} \cdot \sqrt{U}\\
    
    \mathbf{elif}\;t\_3 \leq 5 \cdot 10^{+303}:\\
    \;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot t\_2}\\
    
    \mathbf{elif}\;t\_3 \leq \infty:\\
    \;\;\;\;\sqrt{t\_1 \cdot t\_2}\\
    
    \mathbf{else}:\\
    \;\;\;\;\sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}\\
    
    
    \end{array}
    
    Derivation
    1. Split input into 4 regimes
    2. if (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 0.0

      1. Initial program 50.5%

        \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
      2. Step-by-step derivation
        1. lift--.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
        2. lift-*.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
        3. fp-cancel-sub-sign-invN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
        4. +-commutativeN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
        5. distribute-lft-neg-outN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        6. distribute-rgt-neg-inN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        7. lift--.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        8. sub-negate-revN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        9. lift-*.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        10. *-commutativeN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        11. lift-pow.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        12. unpow2N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        13. associate-*l*N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        14. associate-*l*N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        15. lower-fma.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
      3. Applied rewrites52.2%

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
      4. Step-by-step derivation
        1. lift-*.f64N/A

          \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
        2. *-commutativeN/A

          \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
        3. lower-*.f6452.2%

          \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
      5. Applied rewrites51.4%

        \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
      6. Applied rewrites53.2%

        \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
      7. Applied rewrites32.1%

        \[\leadsto \color{blue}{\sqrt{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right) \cdot \left(n + n\right)} \cdot \sqrt{U}} \]

      if 0.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 4.9999999999999997e303

      1. Initial program 50.5%

        \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
      2. Step-by-step derivation
        1. lift--.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
        2. lift-*.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
        3. fp-cancel-sub-sign-invN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
        4. +-commutativeN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
        5. distribute-lft-neg-outN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        6. distribute-rgt-neg-inN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        7. lift--.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        8. sub-negate-revN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        9. lift-*.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        10. *-commutativeN/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        11. lift-pow.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        12. unpow2N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        13. associate-*l*N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        14. associate-*l*N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
        15. lower-fma.f64N/A

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
      3. Applied rewrites52.2%

        \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
      4. Step-by-step derivation
        1. lift-*.f64N/A

          \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
        2. *-commutativeN/A

          \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
        3. lower-*.f6452.2%

          \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
      5. Applied rewrites51.4%

        \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
      6. Taylor expanded in U around 0

        \[\leadsto \sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \color{blue}{U*}, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
      7. Step-by-step derivation
        1. Applied rewrites51.9%

          \[\leadsto \sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \color{blue}{U*}, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]

        if 4.9999999999999997e303 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < +inf.0

        1. Initial program 50.5%

          \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
        2. Step-by-step derivation
          1. lift--.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
          2. lift-*.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
          3. fp-cancel-sub-sign-invN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
          4. +-commutativeN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
          5. distribute-lft-neg-outN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          6. distribute-rgt-neg-inN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          7. lift--.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          8. sub-negate-revN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          9. lift-*.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          10. *-commutativeN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          11. lift-pow.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          12. unpow2N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          13. associate-*l*N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          14. associate-*l*N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          15. lower-fma.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
        3. Applied rewrites52.2%

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
        4. Step-by-step derivation
          1. lift-*.f64N/A

            \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
          2. *-commutativeN/A

            \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
          3. lower-*.f6452.2%

            \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
        5. Applied rewrites51.4%

          \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
        6. Applied rewrites53.2%

          \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
        7. Applied rewrites57.3%

          \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]

        if +inf.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))

        1. Initial program 50.5%

          \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
        2. Step-by-step derivation
          1. lift--.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
          2. lift-*.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
          3. fp-cancel-sub-sign-invN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
          4. +-commutativeN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
          5. distribute-lft-neg-outN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          6. distribute-rgt-neg-inN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          7. lift--.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          8. sub-negate-revN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          9. lift-*.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          10. *-commutativeN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          11. lift-pow.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          12. unpow2N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          13. associate-*l*N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          14. associate-*l*N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          15. lower-fma.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
        3. Applied rewrites52.2%

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
        4. Step-by-step derivation
          1. lift-*.f64N/A

            \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
          2. *-commutativeN/A

            \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
          3. lower-*.f6452.2%

            \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
        5. Applied rewrites51.4%

          \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
        6. Applied rewrites53.2%

          \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
        7. Taylor expanded in t around 0

          \[\leadsto \sqrt{\color{blue}{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
        8. Step-by-step derivation
          1. lower-*.f64N/A

            \[\leadsto \sqrt{2 \cdot \color{blue}{\frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
          2. lower-/.f64N/A

            \[\leadsto \sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{\color{blue}{Om}}} \]
        9. Applied rewrites29.2%

          \[\leadsto \sqrt{\color{blue}{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
      8. Recombined 4 regimes into one program.
      9. Add Preprocessing

      Alternative 8: 63.9% accurate, 0.3× speedup?

      \[\begin{array}{l} t_1 := \left(U + U\right) \cdot n\\ t_2 := \left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\\ \mathbf{if}\;t\_2 \leq 0:\\ \;\;\;\;\sqrt{U + U} \cdot \sqrt{n \cdot \left(t + \frac{\ell \cdot \mathsf{fma}\left(U* \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right)}{Om}\right)}\\ \mathbf{elif}\;t\_2 \leq 5 \cdot 10^{+303}:\\ \;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot t\_1}\\ \mathbf{elif}\;t\_2 \leq \infty:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right) \cdot t\_1}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}\\ \end{array} \]
      (FPCore (n U t l Om U*)
        :precision binary64
        (let* ((t_1 (* (+ U U) n))
             (t_2
              (*
               (* (* 2.0 n) U)
               (-
                (- t (* 2.0 (/ (* l l) Om)))
                (* (* n (pow (/ l Om) 2.0)) (- U U*))))))
        (if (<= t_2 0.0)
          (*
           (sqrt (+ U U))
           (sqrt
            (* n (+ t (/ (* l (fma (* U* n) (/ l Om) (* -2.0 l))) Om)))))
          (if (<= t_2 5e+303)
            (sqrt
             (*
              (+ (/ (fma (* l U*) (* (/ l Om) n) (* (* -2.0 l) l)) Om) t)
              t_1))
            (if (<= t_2 INFINITY)
              (sqrt
               (*
                (fma (fma (* (- U* U) n) (/ l Om) (* -2.0 l)) (/ l Om) t)
                t_1))
              (sqrt
               (*
                2.0
                (/
                 (* U (* l (* n (fma -2.0 l (/ (* l (* n (- U* U))) Om)))))
                 Om))))))))
      double code(double n, double U, double t, double l, double Om, double U_42_) {
      	double t_1 = (U + U) * n;
      	double t_2 = ((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * pow((l / Om), 2.0)) * (U - U_42_)));
      	double tmp;
      	if (t_2 <= 0.0) {
      		tmp = sqrt((U + U)) * sqrt((n * (t + ((l * fma((U_42_ * n), (l / Om), (-2.0 * l))) / Om))));
      	} else if (t_2 <= 5e+303) {
      		tmp = sqrt((((fma((l * U_42_), ((l / Om) * n), ((-2.0 * l) * l)) / Om) + t) * t_1));
      	} else if (t_2 <= ((double) INFINITY)) {
      		tmp = sqrt((fma(fma(((U_42_ - U) * n), (l / Om), (-2.0 * l)), (l / Om), t) * t_1));
      	} else {
      		tmp = sqrt((2.0 * ((U * (l * (n * fma(-2.0, l, ((l * (n * (U_42_ - U))) / Om))))) / Om)));
      	}
      	return tmp;
      }
      
      function code(n, U, t, l, Om, U_42_)
      	t_1 = Float64(Float64(U + U) * n)
      	t_2 = Float64(Float64(Float64(2.0 * n) * U) * Float64(Float64(t - Float64(2.0 * Float64(Float64(l * l) / Om))) - Float64(Float64(n * (Float64(l / Om) ^ 2.0)) * Float64(U - U_42_))))
      	tmp = 0.0
      	if (t_2 <= 0.0)
      		tmp = Float64(sqrt(Float64(U + U)) * sqrt(Float64(n * Float64(t + Float64(Float64(l * fma(Float64(U_42_ * n), Float64(l / Om), Float64(-2.0 * l))) / Om)))));
      	elseif (t_2 <= 5e+303)
      		tmp = sqrt(Float64(Float64(Float64(fma(Float64(l * U_42_), Float64(Float64(l / Om) * n), Float64(Float64(-2.0 * l) * l)) / Om) + t) * t_1));
      	elseif (t_2 <= Inf)
      		tmp = sqrt(Float64(fma(fma(Float64(Float64(U_42_ - U) * n), Float64(l / Om), Float64(-2.0 * l)), Float64(l / Om), t) * t_1));
      	else
      		tmp = sqrt(Float64(2.0 * Float64(Float64(U * Float64(l * Float64(n * fma(-2.0, l, Float64(Float64(l * Float64(n * Float64(U_42_ - U))) / Om))))) / Om)));
      	end
      	return tmp
      end
      
      code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[(N[(U + U), $MachinePrecision] * n), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision] * N[(N[(t - N[(2.0 * N[(N[(l * l), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(N[(n * N[Power[N[(l / Om), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, 0.0], N[(N[Sqrt[N[(U + U), $MachinePrecision]], $MachinePrecision] * N[Sqrt[N[(n * N[(t + N[(N[(l * N[(N[(U$42$ * n), $MachinePrecision] * N[(l / Om), $MachinePrecision] + N[(-2.0 * l), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$2, 5e+303], N[Sqrt[N[(N[(N[(N[(N[(l * U$42$), $MachinePrecision] * N[(N[(l / Om), $MachinePrecision] * n), $MachinePrecision] + N[(N[(-2.0 * l), $MachinePrecision] * l), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision] + t), $MachinePrecision] * t$95$1), $MachinePrecision]], $MachinePrecision], If[LessEqual[t$95$2, Infinity], N[Sqrt[N[(N[(N[(N[(N[(U$42$ - U), $MachinePrecision] * n), $MachinePrecision] * N[(l / Om), $MachinePrecision] + N[(-2.0 * l), $MachinePrecision]), $MachinePrecision] * N[(l / Om), $MachinePrecision] + t), $MachinePrecision] * t$95$1), $MachinePrecision]], $MachinePrecision], N[Sqrt[N[(2.0 * N[(N[(U * N[(l * N[(n * N[(-2.0 * l + N[(N[(l * N[(n * N[(U$42$ - U), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]]]]]
      
      \begin{array}{l}
      t_1 := \left(U + U\right) \cdot n\\
      t_2 := \left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\\
      \mathbf{if}\;t\_2 \leq 0:\\
      \;\;\;\;\sqrt{U + U} \cdot \sqrt{n \cdot \left(t + \frac{\ell \cdot \mathsf{fma}\left(U* \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right)}{Om}\right)}\\
      
      \mathbf{elif}\;t\_2 \leq 5 \cdot 10^{+303}:\\
      \;\;\;\;\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot t\_1}\\
      
      \mathbf{elif}\;t\_2 \leq \infty:\\
      \;\;\;\;\sqrt{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right) \cdot t\_1}\\
      
      \mathbf{else}:\\
      \;\;\;\;\sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}\\
      
      
      \end{array}
      
      Derivation
      1. Split input into 4 regimes
      2. if (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 0.0

        1. Initial program 50.5%

          \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
        2. Step-by-step derivation
          1. lift--.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
          2. lift-*.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
          3. fp-cancel-sub-sign-invN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
          4. +-commutativeN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
          5. distribute-lft-neg-outN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          6. distribute-rgt-neg-inN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          7. lift--.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          8. sub-negate-revN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          9. lift-*.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          10. *-commutativeN/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          11. lift-pow.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          12. unpow2N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          13. associate-*l*N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          14. associate-*l*N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
          15. lower-fma.f64N/A

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
        3. Applied rewrites52.2%

          \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
        4. Step-by-step derivation
          1. lift-*.f64N/A

            \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
          2. *-commutativeN/A

            \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
          3. lower-*.f6452.2%

            \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
        5. Applied rewrites51.4%

          \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
        6. Taylor expanded in U around 0

          \[\leadsto \sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \color{blue}{U*}, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
        7. Step-by-step derivation
          1. Applied rewrites51.9%

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

              \[\leadsto \color{blue}{\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
            2. lift-*.f64N/A

              \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
            3. *-commutativeN/A

              \[\leadsto \sqrt{\color{blue}{\left(\left(U + U\right) \cdot n\right) \cdot \left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right)}} \]
            4. lift-*.f64N/A

              \[\leadsto \sqrt{\color{blue}{\left(\left(U + U\right) \cdot n\right)} \cdot \left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right)} \]
            5. associate-*l*N/A

              \[\leadsto \sqrt{\color{blue}{\left(U + U\right) \cdot \left(n \cdot \left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right)\right)}} \]
            6. sqrt-prodN/A

              \[\leadsto \color{blue}{\sqrt{U + U} \cdot \sqrt{n \cdot \left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right)}} \]
            7. lower-unsound-*.f64N/A

              \[\leadsto \color{blue}{\sqrt{U + U} \cdot \sqrt{n \cdot \left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right)}} \]
            8. lower-unsound-sqrt.f64N/A

              \[\leadsto \color{blue}{\sqrt{U + U}} \cdot \sqrt{n \cdot \left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right)} \]
            9. lower-unsound-sqrt.f64N/A

              \[\leadsto \sqrt{U + U} \cdot \color{blue}{\sqrt{n \cdot \left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right)}} \]
            10. lower-*.f6429.5%

              \[\leadsto \sqrt{U + U} \cdot \sqrt{\color{blue}{n \cdot \left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right)}} \]
          3. Applied rewrites30.5%

            \[\leadsto \color{blue}{\sqrt{U + U} \cdot \sqrt{n \cdot \left(t + \frac{\ell \cdot \mathsf{fma}\left(U* \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right)}{Om}\right)}} \]

          if 0.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 4.9999999999999997e303

          1. Initial program 50.5%

            \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
          2. Step-by-step derivation
            1. lift--.f64N/A

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
            2. lift-*.f64N/A

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
            3. fp-cancel-sub-sign-invN/A

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
            4. +-commutativeN/A

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
            5. distribute-lft-neg-outN/A

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
            6. distribute-rgt-neg-inN/A

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
            7. lift--.f64N/A

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
            8. sub-negate-revN/A

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
            9. lift-*.f64N/A

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
            10. *-commutativeN/A

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
            11. lift-pow.f64N/A

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
            12. unpow2N/A

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
            13. associate-*l*N/A

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
            14. associate-*l*N/A

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
            15. lower-fma.f64N/A

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
          3. Applied rewrites52.2%

            \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
          4. Step-by-step derivation
            1. lift-*.f64N/A

              \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
            2. *-commutativeN/A

              \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
            3. lower-*.f6452.2%

              \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
          5. Applied rewrites51.4%

            \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
          6. Taylor expanded in U around 0

            \[\leadsto \sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \color{blue}{U*}, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
          7. Step-by-step derivation
            1. Applied rewrites51.9%

              \[\leadsto \sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \color{blue}{U*}, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]

            if 4.9999999999999997e303 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < +inf.0

            1. Initial program 50.5%

              \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
            2. Step-by-step derivation
              1. lift--.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
              2. lift-*.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
              3. fp-cancel-sub-sign-invN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
              4. +-commutativeN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
              5. distribute-lft-neg-outN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              6. distribute-rgt-neg-inN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              7. lift--.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              8. sub-negate-revN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              9. lift-*.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              10. *-commutativeN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              11. lift-pow.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              12. unpow2N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              13. associate-*l*N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              14. associate-*l*N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              15. lower-fma.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
            3. Applied rewrites52.2%

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
            4. Step-by-step derivation
              1. lift-*.f64N/A

                \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
              2. *-commutativeN/A

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
              3. lower-*.f6452.2%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
            5. Applied rewrites51.4%

              \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
            6. Applied rewrites53.2%

              \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
            7. Applied rewrites57.3%

              \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]

            if +inf.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))

            1. Initial program 50.5%

              \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
            2. Step-by-step derivation
              1. lift--.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
              2. lift-*.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
              3. fp-cancel-sub-sign-invN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
              4. +-commutativeN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
              5. distribute-lft-neg-outN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              6. distribute-rgt-neg-inN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              7. lift--.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              8. sub-negate-revN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              9. lift-*.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              10. *-commutativeN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              11. lift-pow.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              12. unpow2N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              13. associate-*l*N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              14. associate-*l*N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              15. lower-fma.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
            3. Applied rewrites52.2%

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
            4. Step-by-step derivation
              1. lift-*.f64N/A

                \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
              2. *-commutativeN/A

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
              3. lower-*.f6452.2%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
            5. Applied rewrites51.4%

              \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
            6. Applied rewrites53.2%

              \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
            7. Taylor expanded in t around 0

              \[\leadsto \sqrt{\color{blue}{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
            8. Step-by-step derivation
              1. lower-*.f64N/A

                \[\leadsto \sqrt{2 \cdot \color{blue}{\frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
              2. lower-/.f64N/A

                \[\leadsto \sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{\color{blue}{Om}}} \]
            9. Applied rewrites29.2%

              \[\leadsto \sqrt{\color{blue}{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
          8. Recombined 4 regimes into one program.
          9. Add Preprocessing

          Alternative 9: 63.4% accurate, 0.4× speedup?

          \[\begin{array}{l} t_1 := \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}\\ \mathbf{if}\;t\_1 \leq 0:\\ \;\;\;\;\sqrt{U + U} \cdot \sqrt{n \cdot \left(t + \frac{\ell \cdot \mathsf{fma}\left(U* \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right)}{Om}\right)}\\ \mathbf{elif}\;t\_1 \leq \infty:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}\\ \end{array} \]
          (FPCore (n U t l Om U*)
            :precision binary64
            (let* ((t_1
                  (sqrt
                   (*
                    (* (* 2.0 n) U)
                    (-
                     (- t (* 2.0 (/ (* l l) Om)))
                     (* (* n (pow (/ l Om) 2.0)) (- U U*)))))))
            (if (<= t_1 0.0)
              (*
               (sqrt (+ U U))
               (sqrt
                (* n (+ t (/ (* l (fma (* U* n) (/ l Om) (* -2.0 l))) Om)))))
              (if (<= t_1 INFINITY)
                (sqrt
                 (*
                  (fma (fma (* (- U* U) n) (/ l Om) (* -2.0 l)) (/ l Om) t)
                  (* (+ U U) n)))
                (sqrt
                 (*
                  2.0
                  (/
                   (* U (* l (* n (fma -2.0 l (/ (* l (* n (- U* U))) Om)))))
                   Om)))))))
          double code(double n, double U, double t, double l, double Om, double U_42_) {
          	double t_1 = sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * pow((l / Om), 2.0)) * (U - U_42_)))));
          	double tmp;
          	if (t_1 <= 0.0) {
          		tmp = sqrt((U + U)) * sqrt((n * (t + ((l * fma((U_42_ * n), (l / Om), (-2.0 * l))) / Om))));
          	} else if (t_1 <= ((double) INFINITY)) {
          		tmp = sqrt((fma(fma(((U_42_ - U) * n), (l / Om), (-2.0 * l)), (l / Om), t) * ((U + U) * n)));
          	} else {
          		tmp = sqrt((2.0 * ((U * (l * (n * fma(-2.0, l, ((l * (n * (U_42_ - U))) / Om))))) / Om)));
          	}
          	return tmp;
          }
          
          function code(n, U, t, l, Om, U_42_)
          	t_1 = sqrt(Float64(Float64(Float64(2.0 * n) * U) * Float64(Float64(t - Float64(2.0 * Float64(Float64(l * l) / Om))) - Float64(Float64(n * (Float64(l / Om) ^ 2.0)) * Float64(U - U_42_)))))
          	tmp = 0.0
          	if (t_1 <= 0.0)
          		tmp = Float64(sqrt(Float64(U + U)) * sqrt(Float64(n * Float64(t + Float64(Float64(l * fma(Float64(U_42_ * n), Float64(l / Om), Float64(-2.0 * l))) / Om)))));
          	elseif (t_1 <= Inf)
          		tmp = sqrt(Float64(fma(fma(Float64(Float64(U_42_ - U) * n), Float64(l / Om), Float64(-2.0 * l)), Float64(l / Om), t) * Float64(Float64(U + U) * n)));
          	else
          		tmp = sqrt(Float64(2.0 * Float64(Float64(U * Float64(l * Float64(n * fma(-2.0, l, Float64(Float64(l * Float64(n * Float64(U_42_ - U))) / Om))))) / Om)));
          	end
          	return tmp
          end
          
          code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[Sqrt[N[(N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision] * N[(N[(t - N[(2.0 * N[(N[(l * l), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(N[(n * N[Power[N[(l / Om), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, If[LessEqual[t$95$1, 0.0], N[(N[Sqrt[N[(U + U), $MachinePrecision]], $MachinePrecision] * N[Sqrt[N[(n * N[(t + N[(N[(l * N[(N[(U$42$ * n), $MachinePrecision] * N[(l / Om), $MachinePrecision] + N[(-2.0 * l), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$1, Infinity], N[Sqrt[N[(N[(N[(N[(N[(U$42$ - U), $MachinePrecision] * n), $MachinePrecision] * N[(l / Om), $MachinePrecision] + N[(-2.0 * l), $MachinePrecision]), $MachinePrecision] * N[(l / Om), $MachinePrecision] + t), $MachinePrecision] * N[(N[(U + U), $MachinePrecision] * n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], N[Sqrt[N[(2.0 * N[(N[(U * N[(l * N[(n * N[(-2.0 * l + N[(N[(l * N[(n * N[(U$42$ - U), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]]]
          
          \begin{array}{l}
          t_1 := \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}\\
          \mathbf{if}\;t\_1 \leq 0:\\
          \;\;\;\;\sqrt{U + U} \cdot \sqrt{n \cdot \left(t + \frac{\ell \cdot \mathsf{fma}\left(U* \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right)}{Om}\right)}\\
          
          \mathbf{elif}\;t\_1 \leq \infty:\\
          \;\;\;\;\sqrt{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\
          
          \mathbf{else}:\\
          \;\;\;\;\sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}\\
          
          
          \end{array}
          
          Derivation
          1. Split input into 3 regimes
          2. if (sqrt.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))) < 0.0

            1. Initial program 50.5%

              \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
            2. Step-by-step derivation
              1. lift--.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
              2. lift-*.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
              3. fp-cancel-sub-sign-invN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
              4. +-commutativeN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
              5. distribute-lft-neg-outN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              6. distribute-rgt-neg-inN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              7. lift--.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              8. sub-negate-revN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              9. lift-*.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              10. *-commutativeN/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              11. lift-pow.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              12. unpow2N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              13. associate-*l*N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              14. associate-*l*N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
              15. lower-fma.f64N/A

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
            3. Applied rewrites52.2%

              \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
            4. Step-by-step derivation
              1. lift-*.f64N/A

                \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
              2. *-commutativeN/A

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
              3. lower-*.f6452.2%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
            5. Applied rewrites51.4%

              \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
            6. Taylor expanded in U around 0

              \[\leadsto \sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot \color{blue}{U*}, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
            7. Step-by-step derivation
              1. Applied rewrites51.9%

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

                  \[\leadsto \color{blue}{\sqrt{\left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
                3. *-commutativeN/A

                  \[\leadsto \sqrt{\color{blue}{\left(\left(U + U\right) \cdot n\right) \cdot \left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right)}} \]
                4. lift-*.f64N/A

                  \[\leadsto \sqrt{\color{blue}{\left(\left(U + U\right) \cdot n\right)} \cdot \left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right)} \]
                5. associate-*l*N/A

                  \[\leadsto \sqrt{\color{blue}{\left(U + U\right) \cdot \left(n \cdot \left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right)\right)}} \]
                6. sqrt-prodN/A

                  \[\leadsto \color{blue}{\sqrt{U + U} \cdot \sqrt{n \cdot \left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right)}} \]
                7. lower-unsound-*.f64N/A

                  \[\leadsto \color{blue}{\sqrt{U + U} \cdot \sqrt{n \cdot \left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right)}} \]
                8. lower-unsound-sqrt.f64N/A

                  \[\leadsto \color{blue}{\sqrt{U + U}} \cdot \sqrt{n \cdot \left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right)} \]
                9. lower-unsound-sqrt.f64N/A

                  \[\leadsto \sqrt{U + U} \cdot \color{blue}{\sqrt{n \cdot \left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right)}} \]
                10. lower-*.f6429.5%

                  \[\leadsto \sqrt{U + U} \cdot \sqrt{\color{blue}{n \cdot \left(\frac{\mathsf{fma}\left(\ell \cdot U*, \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right)}} \]
              3. Applied rewrites30.5%

                \[\leadsto \color{blue}{\sqrt{U + U} \cdot \sqrt{n \cdot \left(t + \frac{\ell \cdot \mathsf{fma}\left(U* \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right)}{Om}\right)}} \]

              if 0.0 < (sqrt.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))) < +inf.0

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Step-by-step derivation
                1. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
                3. fp-cancel-sub-sign-invN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
                4. +-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
                5. distribute-lft-neg-outN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                6. distribute-rgt-neg-inN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                7. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                8. sub-negate-revN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                9. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                11. lift-pow.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                12. unpow2N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                13. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                14. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                15. lower-fma.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
              3. Applied rewrites52.2%

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
              4. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
                2. *-commutativeN/A

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
                3. lower-*.f6452.2%

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
              5. Applied rewrites51.4%

                \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
              6. Applied rewrites53.2%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
              7. Applied rewrites57.3%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]

              if +inf.0 < (sqrt.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))))

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Step-by-step derivation
                1. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
                3. fp-cancel-sub-sign-invN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
                4. +-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
                5. distribute-lft-neg-outN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                6. distribute-rgt-neg-inN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                7. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                8. sub-negate-revN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                9. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                11. lift-pow.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                12. unpow2N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                13. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                14. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                15. lower-fma.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
              3. Applied rewrites52.2%

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
              4. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
                2. *-commutativeN/A

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
                3. lower-*.f6452.2%

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
              5. Applied rewrites51.4%

                \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
              6. Applied rewrites53.2%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
              7. Taylor expanded in t around 0

                \[\leadsto \sqrt{\color{blue}{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
              8. Step-by-step derivation
                1. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
                2. lower-/.f64N/A

                  \[\leadsto \sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{\color{blue}{Om}}} \]
              9. Applied rewrites29.2%

                \[\leadsto \sqrt{\color{blue}{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
            8. Recombined 3 regimes into one program.
            9. Add Preprocessing

            Alternative 10: 63.2% accurate, 0.4× speedup?

            \[\begin{array}{l} t_1 := \left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\\ \mathbf{if}\;t\_1 \leq 0:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)}\\ \mathbf{elif}\;t\_1 \leq \infty:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}\\ \end{array} \]
            (FPCore (n U t l Om U*)
              :precision binary64
              (let* ((t_1
                    (*
                     (* (* 2.0 n) U)
                     (-
                      (- t (* 2.0 (/ (* l l) Om)))
                      (* (* n (pow (/ l Om) 2.0)) (- U U*))))))
              (if (<= t_1 0.0)
                (sqrt (fma (* n l) (* (* (/ U Om) l) -4.0) (* (* (+ n n) t) U)))
                (if (<= t_1 INFINITY)
                  (sqrt
                   (*
                    (fma (fma (* (- U* U) n) (/ l Om) (* -2.0 l)) (/ l Om) t)
                    (* (+ U U) n)))
                  (sqrt
                   (*
                    2.0
                    (/
                     (* U (* l (* n (fma -2.0 l (/ (* l (* n (- U* U))) Om)))))
                     Om)))))))
            double code(double n, double U, double t, double l, double Om, double U_42_) {
            	double t_1 = ((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * pow((l / Om), 2.0)) * (U - U_42_)));
            	double tmp;
            	if (t_1 <= 0.0) {
            		tmp = sqrt(fma((n * l), (((U / Om) * l) * -4.0), (((n + n) * t) * U)));
            	} else if (t_1 <= ((double) INFINITY)) {
            		tmp = sqrt((fma(fma(((U_42_ - U) * n), (l / Om), (-2.0 * l)), (l / Om), t) * ((U + U) * n)));
            	} else {
            		tmp = sqrt((2.0 * ((U * (l * (n * fma(-2.0, l, ((l * (n * (U_42_ - U))) / Om))))) / Om)));
            	}
            	return tmp;
            }
            
            function code(n, U, t, l, Om, U_42_)
            	t_1 = Float64(Float64(Float64(2.0 * n) * U) * Float64(Float64(t - Float64(2.0 * Float64(Float64(l * l) / Om))) - Float64(Float64(n * (Float64(l / Om) ^ 2.0)) * Float64(U - U_42_))))
            	tmp = 0.0
            	if (t_1 <= 0.0)
            		tmp = sqrt(fma(Float64(n * l), Float64(Float64(Float64(U / Om) * l) * -4.0), Float64(Float64(Float64(n + n) * t) * U)));
            	elseif (t_1 <= Inf)
            		tmp = sqrt(Float64(fma(fma(Float64(Float64(U_42_ - U) * n), Float64(l / Om), Float64(-2.0 * l)), Float64(l / Om), t) * Float64(Float64(U + U) * n)));
            	else
            		tmp = sqrt(Float64(2.0 * Float64(Float64(U * Float64(l * Float64(n * fma(-2.0, l, Float64(Float64(l * Float64(n * Float64(U_42_ - U))) / Om))))) / Om)));
            	end
            	return tmp
            end
            
            code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[(N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision] * N[(N[(t - N[(2.0 * N[(N[(l * l), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(N[(n * N[Power[N[(l / Om), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$1, 0.0], N[Sqrt[N[(N[(n * l), $MachinePrecision] * N[(N[(N[(U / Om), $MachinePrecision] * l), $MachinePrecision] * -4.0), $MachinePrecision] + N[(N[(N[(n + n), $MachinePrecision] * t), $MachinePrecision] * U), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], If[LessEqual[t$95$1, Infinity], N[Sqrt[N[(N[(N[(N[(N[(U$42$ - U), $MachinePrecision] * n), $MachinePrecision] * N[(l / Om), $MachinePrecision] + N[(-2.0 * l), $MachinePrecision]), $MachinePrecision] * N[(l / Om), $MachinePrecision] + t), $MachinePrecision] * N[(N[(U + U), $MachinePrecision] * n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], N[Sqrt[N[(2.0 * N[(N[(U * N[(l * N[(n * N[(-2.0 * l + N[(N[(l * N[(n * N[(U$42$ - U), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]]]
            
            \begin{array}{l}
            t_1 := \left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\\
            \mathbf{if}\;t\_1 \leq 0:\\
            \;\;\;\;\sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)}\\
            
            \mathbf{elif}\;t\_1 \leq \infty:\\
            \;\;\;\;\sqrt{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\
            
            \mathbf{else}:\\
            \;\;\;\;\sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}\\
            
            
            \end{array}
            
            Derivation
            1. Split input into 3 regimes
            2. if (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 0.0

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in Om around inf

                \[\leadsto \sqrt{\color{blue}{-4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om} + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-fma.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \color{blue}{\frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lower-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-pow.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                6. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                7. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. lower-*.f6442.3%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              4. Applied rewrites42.3%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)}} \]
              5. Step-by-step derivation
                1. lift-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{\left({\ell}^{2} \cdot n\right) \cdot U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. associate-/l*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                6. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                7. lift-pow.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. pow2N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot \ell\right) \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                9. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot \ell\right) \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(n \cdot \left(\ell \cdot \ell\right)\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                11. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(n \cdot \left(\ell \cdot \ell\right)\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                12. associate-*r*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                13. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot n\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                14. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot n\right) \cdot \ell\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                15. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                16. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                17. lower-/.f6445.2%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              6. Applied rewrites45.2%

                \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              7. Step-by-step derivation
                1. lift-fma.f64N/A

                  \[\leadsto \sqrt{-4 \cdot \left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) + \color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) \cdot -4 + \color{blue}{2} \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                3. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) \cdot -4 + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                4. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) \cdot -4 + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                5. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(n \cdot \ell\right) \cdot \left(\ell \cdot \frac{U}{Om}\right)\right) \cdot -4 + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                6. associate-*l*N/A

                  \[\leadsto \sqrt{\left(n \cdot \ell\right) \cdot \left(\left(\ell \cdot \frac{U}{Om}\right) \cdot -4\right) + \color{blue}{2} \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                7. lower-fma.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \color{blue}{\left(\ell \cdot \frac{U}{Om}\right) \cdot -4}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\ell \cdot \frac{U}{Om}\right) \cdot \color{blue}{-4}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                9. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                10. lower-*.f6447.4%

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                11. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                12. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                13. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(\left(n \cdot t\right) \cdot U\right)\right)} \]
                14. associate-*r*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(2 \cdot \left(n \cdot t\right)\right) \cdot U\right)} \]
                15. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(2 \cdot \left(n \cdot t\right)\right) \cdot U\right)} \]
                16. associate-*l*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(2 \cdot n\right) \cdot t\right) \cdot U\right)} \]
                17. count-2-revN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
                18. lift-+.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
                19. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
                20. lift-*.f6447.4%

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
              8. Applied rewrites47.4%

                \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \color{blue}{\left(\frac{U}{Om} \cdot \ell\right) \cdot -4}, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]

              if 0.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < +inf.0

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Step-by-step derivation
                1. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
                3. fp-cancel-sub-sign-invN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
                4. +-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
                5. distribute-lft-neg-outN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                6. distribute-rgt-neg-inN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                7. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                8. sub-negate-revN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                9. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                11. lift-pow.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                12. unpow2N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                13. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                14. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                15. lower-fma.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
              3. Applied rewrites52.2%

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
              4. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
                2. *-commutativeN/A

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
                3. lower-*.f6452.2%

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
              5. Applied rewrites51.4%

                \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
              6. Applied rewrites53.2%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
              7. Applied rewrites57.3%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\left(U* - U\right) \cdot n, \frac{\ell}{Om}, -2 \cdot \ell\right), \frac{\ell}{Om}, t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]

              if +inf.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Step-by-step derivation
                1. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
                3. fp-cancel-sub-sign-invN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
                4. +-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
                5. distribute-lft-neg-outN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                6. distribute-rgt-neg-inN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                7. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                8. sub-negate-revN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                9. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                11. lift-pow.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                12. unpow2N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                13. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                14. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                15. lower-fma.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
              3. Applied rewrites52.2%

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
              4. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
                2. *-commutativeN/A

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
                3. lower-*.f6452.2%

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
              5. Applied rewrites51.4%

                \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
              6. Applied rewrites53.2%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
              7. Taylor expanded in t around 0

                \[\leadsto \sqrt{\color{blue}{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
              8. Step-by-step derivation
                1. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
                2. lower-/.f64N/A

                  \[\leadsto \sqrt{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \left(-2 \cdot \ell + \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{\color{blue}{Om}}} \]
              9. Applied rewrites29.2%

                \[\leadsto \sqrt{\color{blue}{2 \cdot \frac{U \cdot \left(\ell \cdot \left(n \cdot \mathsf{fma}\left(-2, \ell, \frac{\ell \cdot \left(n \cdot \left(U* - U\right)\right)}{Om}\right)\right)\right)}{Om}}} \]
            3. Recombined 3 regimes into one program.
            4. Add Preprocessing

            Alternative 11: 57.6% accurate, 1.4× speedup?

            \[\begin{array}{l} t_1 := \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \frac{U* \cdot \left(\ell \cdot n\right)}{Om}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\ \mathbf{if}\;n \leq -4.8 \cdot 10^{-18}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;n \leq 1.6 \cdot 10^{-99}:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)}\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \]
            (FPCore (n U t l Om U*)
              :precision binary64
              (let* ((t_1
                    (sqrt
                     (*
                      (fma (/ 1.0 Om) (* l (/ (* U* (* l n)) Om)) t)
                      (* (+ U U) n)))))
              (if (<= n -4.8e-18)
                t_1
                (if (<= n 1.6e-99)
                  (sqrt (fma (* n l) (* (* (/ U Om) l) -4.0) (* (* (+ n n) t) U)))
                  t_1))))
            double code(double n, double U, double t, double l, double Om, double U_42_) {
            	double t_1 = sqrt((fma((1.0 / Om), (l * ((U_42_ * (l * n)) / Om)), t) * ((U + U) * n)));
            	double tmp;
            	if (n <= -4.8e-18) {
            		tmp = t_1;
            	} else if (n <= 1.6e-99) {
            		tmp = sqrt(fma((n * l), (((U / Om) * l) * -4.0), (((n + n) * t) * U)));
            	} else {
            		tmp = t_1;
            	}
            	return tmp;
            }
            
            function code(n, U, t, l, Om, U_42_)
            	t_1 = sqrt(Float64(fma(Float64(1.0 / Om), Float64(l * Float64(Float64(U_42_ * Float64(l * n)) / Om)), t) * Float64(Float64(U + U) * n)))
            	tmp = 0.0
            	if (n <= -4.8e-18)
            		tmp = t_1;
            	elseif (n <= 1.6e-99)
            		tmp = sqrt(fma(Float64(n * l), Float64(Float64(Float64(U / Om) * l) * -4.0), Float64(Float64(Float64(n + n) * t) * U)));
            	else
            		tmp = t_1;
            	end
            	return tmp
            end
            
            code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[Sqrt[N[(N[(N[(1.0 / Om), $MachinePrecision] * N[(l * N[(N[(U$42$ * N[(l * n), $MachinePrecision]), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision] + t), $MachinePrecision] * N[(N[(U + U), $MachinePrecision] * n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, If[LessEqual[n, -4.8e-18], t$95$1, If[LessEqual[n, 1.6e-99], N[Sqrt[N[(N[(n * l), $MachinePrecision] * N[(N[(N[(U / Om), $MachinePrecision] * l), $MachinePrecision] * -4.0), $MachinePrecision] + N[(N[(N[(n + n), $MachinePrecision] * t), $MachinePrecision] * U), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], t$95$1]]]
            
            \begin{array}{l}
            t_1 := \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \frac{U* \cdot \left(\ell \cdot n\right)}{Om}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\
            \mathbf{if}\;n \leq -4.8 \cdot 10^{-18}:\\
            \;\;\;\;t\_1\\
            
            \mathbf{elif}\;n \leq 1.6 \cdot 10^{-99}:\\
            \;\;\;\;\sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)}\\
            
            \mathbf{else}:\\
            \;\;\;\;t\_1\\
            
            
            \end{array}
            
            Derivation
            1. Split input into 2 regimes
            2. if n < -4.7999999999999999e-18 or 1.6e-99 < n

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Step-by-step derivation
                1. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
                3. fp-cancel-sub-sign-invN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
                4. +-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
                5. distribute-lft-neg-outN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                6. distribute-rgt-neg-inN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                7. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                8. sub-negate-revN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                9. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                11. lift-pow.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                12. unpow2N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                13. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                14. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                15. lower-fma.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
              3. Applied rewrites52.2%

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
              4. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
                2. *-commutativeN/A

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
                3. lower-*.f6452.2%

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
              5. Applied rewrites51.4%

                \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
              6. Applied rewrites53.2%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
              7. Taylor expanded in U* around inf

                \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \color{blue}{\frac{U* \cdot \left(\ell \cdot n\right)}{Om}}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
              8. Step-by-step derivation
                1. lower-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \frac{U* \cdot \left(\ell \cdot n\right)}{\color{blue}{Om}}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
                2. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \frac{U* \cdot \left(\ell \cdot n\right)}{Om}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
                3. lower-*.f6450.9%

                  \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \frac{U* \cdot \left(\ell \cdot n\right)}{Om}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
              9. Applied rewrites50.9%

                \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \color{blue}{\frac{U* \cdot \left(\ell \cdot n\right)}{Om}}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]

              if -4.7999999999999999e-18 < n < 1.6e-99

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in Om around inf

                \[\leadsto \sqrt{\color{blue}{-4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om} + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-fma.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \color{blue}{\frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lower-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-pow.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                6. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                7. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. lower-*.f6442.3%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              4. Applied rewrites42.3%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)}} \]
              5. Step-by-step derivation
                1. lift-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{\left({\ell}^{2} \cdot n\right) \cdot U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. associate-/l*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                6. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                7. lift-pow.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. pow2N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot \ell\right) \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                9. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot \ell\right) \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(n \cdot \left(\ell \cdot \ell\right)\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                11. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(n \cdot \left(\ell \cdot \ell\right)\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                12. associate-*r*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                13. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot n\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                14. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot n\right) \cdot \ell\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                15. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                16. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                17. lower-/.f6445.2%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              6. Applied rewrites45.2%

                \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              7. Step-by-step derivation
                1. lift-fma.f64N/A

                  \[\leadsto \sqrt{-4 \cdot \left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) + \color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) \cdot -4 + \color{blue}{2} \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                3. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) \cdot -4 + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                4. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) \cdot -4 + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                5. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(n \cdot \ell\right) \cdot \left(\ell \cdot \frac{U}{Om}\right)\right) \cdot -4 + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                6. associate-*l*N/A

                  \[\leadsto \sqrt{\left(n \cdot \ell\right) \cdot \left(\left(\ell \cdot \frac{U}{Om}\right) \cdot -4\right) + \color{blue}{2} \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                7. lower-fma.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \color{blue}{\left(\ell \cdot \frac{U}{Om}\right) \cdot -4}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\ell \cdot \frac{U}{Om}\right) \cdot \color{blue}{-4}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                9. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                10. lower-*.f6447.4%

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                11. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                12. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                13. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(\left(n \cdot t\right) \cdot U\right)\right)} \]
                14. associate-*r*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(2 \cdot \left(n \cdot t\right)\right) \cdot U\right)} \]
                15. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(2 \cdot \left(n \cdot t\right)\right) \cdot U\right)} \]
                16. associate-*l*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(2 \cdot n\right) \cdot t\right) \cdot U\right)} \]
                17. count-2-revN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
                18. lift-+.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
                19. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
                20. lift-*.f6447.4%

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
              8. Applied rewrites47.4%

                \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \color{blue}{\left(\frac{U}{Om} \cdot \ell\right) \cdot -4}, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
            3. Recombined 2 regimes into one program.
            4. Add Preprocessing

            Alternative 12: 56.9% accurate, 0.4× speedup?

            \[\begin{array}{l} t_1 := \left(\left(n + n\right) \cdot t\right) \cdot U\\ t_2 := \left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\\ \mathbf{if}\;t\_2 \leq 0:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, t\_1\right)}\\ \mathbf{elif}\;t\_2 \leq 5 \cdot 10^{+303}:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \left(-2 \cdot \ell\right), t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{\left|\mathsf{fma}\left(-4 \cdot \frac{U}{Om}, \left(n \cdot \ell\right) \cdot \ell, t\_1\right)\right|}\\ \end{array} \]
            (FPCore (n U t l Om U*)
              :precision binary64
              (let* ((t_1 (* (* (+ n n) t) U))
                   (t_2
                    (*
                     (* (* 2.0 n) U)
                     (-
                      (- t (* 2.0 (/ (* l l) Om)))
                      (* (* n (pow (/ l Om) 2.0)) (- U U*))))))
              (if (<= t_2 0.0)
                (sqrt (fma (* n l) (* (* (/ U Om) l) -4.0) t_1))
                (if (<= t_2 5e+303)
                  (sqrt (* (fma (/ 1.0 Om) (* l (* -2.0 l)) t) (* (+ U U) n)))
                  (sqrt (fabs (fma (* -4.0 (/ U Om)) (* (* n l) l) t_1)))))))
            double code(double n, double U, double t, double l, double Om, double U_42_) {
            	double t_1 = ((n + n) * t) * U;
            	double t_2 = ((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * pow((l / Om), 2.0)) * (U - U_42_)));
            	double tmp;
            	if (t_2 <= 0.0) {
            		tmp = sqrt(fma((n * l), (((U / Om) * l) * -4.0), t_1));
            	} else if (t_2 <= 5e+303) {
            		tmp = sqrt((fma((1.0 / Om), (l * (-2.0 * l)), t) * ((U + U) * n)));
            	} else {
            		tmp = sqrt(fabs(fma((-4.0 * (U / Om)), ((n * l) * l), t_1)));
            	}
            	return tmp;
            }
            
            function code(n, U, t, l, Om, U_42_)
            	t_1 = Float64(Float64(Float64(n + n) * t) * U)
            	t_2 = Float64(Float64(Float64(2.0 * n) * U) * Float64(Float64(t - Float64(2.0 * Float64(Float64(l * l) / Om))) - Float64(Float64(n * (Float64(l / Om) ^ 2.0)) * Float64(U - U_42_))))
            	tmp = 0.0
            	if (t_2 <= 0.0)
            		tmp = sqrt(fma(Float64(n * l), Float64(Float64(Float64(U / Om) * l) * -4.0), t_1));
            	elseif (t_2 <= 5e+303)
            		tmp = sqrt(Float64(fma(Float64(1.0 / Om), Float64(l * Float64(-2.0 * l)), t) * Float64(Float64(U + U) * n)));
            	else
            		tmp = sqrt(abs(fma(Float64(-4.0 * Float64(U / Om)), Float64(Float64(n * l) * l), t_1)));
            	end
            	return tmp
            end
            
            code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[(N[(N[(n + n), $MachinePrecision] * t), $MachinePrecision] * U), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision] * N[(N[(t - N[(2.0 * N[(N[(l * l), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(N[(n * N[Power[N[(l / Om), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, 0.0], N[Sqrt[N[(N[(n * l), $MachinePrecision] * N[(N[(N[(U / Om), $MachinePrecision] * l), $MachinePrecision] * -4.0), $MachinePrecision] + t$95$1), $MachinePrecision]], $MachinePrecision], If[LessEqual[t$95$2, 5e+303], N[Sqrt[N[(N[(N[(1.0 / Om), $MachinePrecision] * N[(l * N[(-2.0 * l), $MachinePrecision]), $MachinePrecision] + t), $MachinePrecision] * N[(N[(U + U), $MachinePrecision] * n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], N[Sqrt[N[Abs[N[(N[(-4.0 * N[(U / Om), $MachinePrecision]), $MachinePrecision] * N[(N[(n * l), $MachinePrecision] * l), $MachinePrecision] + t$95$1), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]]]]]
            
            \begin{array}{l}
            t_1 := \left(\left(n + n\right) \cdot t\right) \cdot U\\
            t_2 := \left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\\
            \mathbf{if}\;t\_2 \leq 0:\\
            \;\;\;\;\sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, t\_1\right)}\\
            
            \mathbf{elif}\;t\_2 \leq 5 \cdot 10^{+303}:\\
            \;\;\;\;\sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \left(-2 \cdot \ell\right), t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\
            
            \mathbf{else}:\\
            \;\;\;\;\sqrt{\left|\mathsf{fma}\left(-4 \cdot \frac{U}{Om}, \left(n \cdot \ell\right) \cdot \ell, t\_1\right)\right|}\\
            
            
            \end{array}
            
            Derivation
            1. Split input into 3 regimes
            2. if (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 0.0

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in Om around inf

                \[\leadsto \sqrt{\color{blue}{-4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om} + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-fma.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \color{blue}{\frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lower-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-pow.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                6. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                7. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. lower-*.f6442.3%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              4. Applied rewrites42.3%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)}} \]
              5. Step-by-step derivation
                1. lift-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{\left({\ell}^{2} \cdot n\right) \cdot U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. associate-/l*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                6. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                7. lift-pow.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. pow2N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot \ell\right) \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                9. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot \ell\right) \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(n \cdot \left(\ell \cdot \ell\right)\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                11. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(n \cdot \left(\ell \cdot \ell\right)\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                12. associate-*r*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                13. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot n\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                14. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot n\right) \cdot \ell\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                15. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                16. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                17. lower-/.f6445.2%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              6. Applied rewrites45.2%

                \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              7. Step-by-step derivation
                1. lift-fma.f64N/A

                  \[\leadsto \sqrt{-4 \cdot \left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) + \color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) \cdot -4 + \color{blue}{2} \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                3. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) \cdot -4 + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                4. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) \cdot -4 + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                5. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(n \cdot \ell\right) \cdot \left(\ell \cdot \frac{U}{Om}\right)\right) \cdot -4 + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                6. associate-*l*N/A

                  \[\leadsto \sqrt{\left(n \cdot \ell\right) \cdot \left(\left(\ell \cdot \frac{U}{Om}\right) \cdot -4\right) + \color{blue}{2} \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                7. lower-fma.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \color{blue}{\left(\ell \cdot \frac{U}{Om}\right) \cdot -4}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\ell \cdot \frac{U}{Om}\right) \cdot \color{blue}{-4}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                9. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                10. lower-*.f6447.4%

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                11. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                12. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                13. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(\left(n \cdot t\right) \cdot U\right)\right)} \]
                14. associate-*r*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(2 \cdot \left(n \cdot t\right)\right) \cdot U\right)} \]
                15. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(2 \cdot \left(n \cdot t\right)\right) \cdot U\right)} \]
                16. associate-*l*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(2 \cdot n\right) \cdot t\right) \cdot U\right)} \]
                17. count-2-revN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
                18. lift-+.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
                19. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
                20. lift-*.f6447.4%

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
              8. Applied rewrites47.4%

                \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \color{blue}{\left(\frac{U}{Om} \cdot \ell\right) \cdot -4}, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]

              if 0.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 4.9999999999999997e303

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Step-by-step derivation
                1. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
                3. fp-cancel-sub-sign-invN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
                4. +-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
                5. distribute-lft-neg-outN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                6. distribute-rgt-neg-inN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                7. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                8. sub-negate-revN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                9. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                11. lift-pow.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                12. unpow2N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                13. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                14. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                15. lower-fma.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
              3. Applied rewrites52.2%

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
              4. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
                2. *-commutativeN/A

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
                3. lower-*.f6452.2%

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
              5. Applied rewrites51.4%

                \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
              6. Applied rewrites53.2%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
              7. Taylor expanded in n around 0

                \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \color{blue}{\left(-2 \cdot \ell\right)}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
              8. Step-by-step derivation
                1. lower-*.f6443.7%

                  \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \left(-2 \cdot \color{blue}{\ell}\right), t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
              9. Applied rewrites43.7%

                \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \color{blue}{\left(-2 \cdot \ell\right)}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]

              if 4.9999999999999997e303 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in Om around inf

                \[\leadsto \sqrt{\color{blue}{-4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om} + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-fma.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \color{blue}{\frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lower-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-pow.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                6. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                7. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. lower-*.f6442.3%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              4. Applied rewrites42.3%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)}} \]
              5. Step-by-step derivation
                1. lift-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{\left({\ell}^{2} \cdot n\right) \cdot U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. associate-/l*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                6. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                7. lift-pow.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. pow2N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot \ell\right) \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                9. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot \ell\right) \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(n \cdot \left(\ell \cdot \ell\right)\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                11. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(n \cdot \left(\ell \cdot \ell\right)\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                12. associate-*r*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                13. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot n\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                14. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot n\right) \cdot \ell\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                15. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                16. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                17. lower-/.f6445.2%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              6. Applied rewrites45.2%

                \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              7. Step-by-step derivation
                1. rem-square-sqrtN/A

                  \[\leadsto \sqrt{\color{blue}{\sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \cdot \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)}}} \]
                2. lift-sqrt.f64N/A

                  \[\leadsto \sqrt{\color{blue}{\sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)}} \cdot \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)}} \]
                3. lift-sqrt.f64N/A

                  \[\leadsto \sqrt{\sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \cdot \color{blue}{\sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)}}} \]
              8. Applied rewrites51.1%

                \[\leadsto \sqrt{\color{blue}{\left|\mathsf{fma}\left(-4 \cdot \frac{U}{Om}, \left(n \cdot \ell\right) \cdot \ell, \left(\left(n + n\right) \cdot t\right) \cdot U\right)\right|}} \]
            3. Recombined 3 regimes into one program.
            4. Add Preprocessing

            Alternative 13: 55.2% accurate, 1.5× speedup?

            \[\begin{array}{l} t_1 := \sqrt{\left|\mathsf{fma}\left(-4 \cdot U, n \cdot \left(\frac{\ell}{Om} \cdot \ell\right), \left(\left(t + t\right) \cdot U\right) \cdot n\right)\right|}\\ \mathbf{if}\;n \leq -2.8 \cdot 10^{-79}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;n \leq 1.15 \cdot 10^{-61}:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(-4, \frac{\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)}\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \]
            (FPCore (n U t l Om U*)
              :precision binary64
              (let* ((t_1
                    (sqrt
                     (fabs
                      (fma
                       (* -4.0 U)
                       (* n (* (/ l Om) l))
                       (* (* (+ t t) U) n))))))
              (if (<= n -2.8e-79)
                t_1
                (if (<= n 1.15e-61)
                  (sqrt
                   (fma -4.0 (/ (* (* (* n l) l) U) Om) (* 2.0 (* U (* n t)))))
                  t_1))))
            double code(double n, double U, double t, double l, double Om, double U_42_) {
            	double t_1 = sqrt(fabs(fma((-4.0 * U), (n * ((l / Om) * l)), (((t + t) * U) * n))));
            	double tmp;
            	if (n <= -2.8e-79) {
            		tmp = t_1;
            	} else if (n <= 1.15e-61) {
            		tmp = sqrt(fma(-4.0, ((((n * l) * l) * U) / Om), (2.0 * (U * (n * t)))));
            	} else {
            		tmp = t_1;
            	}
            	return tmp;
            }
            
            function code(n, U, t, l, Om, U_42_)
            	t_1 = sqrt(abs(fma(Float64(-4.0 * U), Float64(n * Float64(Float64(l / Om) * l)), Float64(Float64(Float64(t + t) * U) * n))))
            	tmp = 0.0
            	if (n <= -2.8e-79)
            		tmp = t_1;
            	elseif (n <= 1.15e-61)
            		tmp = sqrt(fma(-4.0, Float64(Float64(Float64(Float64(n * l) * l) * U) / Om), Float64(2.0 * Float64(U * Float64(n * t)))));
            	else
            		tmp = t_1;
            	end
            	return tmp
            end
            
            code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[Sqrt[N[Abs[N[(N[(-4.0 * U), $MachinePrecision] * N[(n * N[(N[(l / Om), $MachinePrecision] * l), $MachinePrecision]), $MachinePrecision] + N[(N[(N[(t + t), $MachinePrecision] * U), $MachinePrecision] * n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]}, If[LessEqual[n, -2.8e-79], t$95$1, If[LessEqual[n, 1.15e-61], N[Sqrt[N[(-4.0 * N[(N[(N[(N[(n * l), $MachinePrecision] * l), $MachinePrecision] * U), $MachinePrecision] / Om), $MachinePrecision] + N[(2.0 * N[(U * N[(n * t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], t$95$1]]]
            
            \begin{array}{l}
            t_1 := \sqrt{\left|\mathsf{fma}\left(-4 \cdot U, n \cdot \left(\frac{\ell}{Om} \cdot \ell\right), \left(\left(t + t\right) \cdot U\right) \cdot n\right)\right|}\\
            \mathbf{if}\;n \leq -2.8 \cdot 10^{-79}:\\
            \;\;\;\;t\_1\\
            
            \mathbf{elif}\;n \leq 1.15 \cdot 10^{-61}:\\
            \;\;\;\;\sqrt{\mathsf{fma}\left(-4, \frac{\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)}\\
            
            \mathbf{else}:\\
            \;\;\;\;t\_1\\
            
            
            \end{array}
            
            Derivation
            1. Split input into 2 regimes
            2. if n < -2.8000000000000001e-79 or 1.15e-61 < n

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in Om around inf

                \[\leadsto \sqrt{\color{blue}{-4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om} + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-fma.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \color{blue}{\frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lower-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-pow.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                6. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                7. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. lower-*.f6442.3%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              4. Applied rewrites42.3%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)}} \]
              5. Applied rewrites53.0%

                \[\leadsto \sqrt{\color{blue}{\left|\mathsf{fma}\left(-4 \cdot U, n \cdot \left(\frac{\ell}{Om} \cdot \ell\right), \left(\left(t + t\right) \cdot U\right) \cdot n\right)\right|}} \]

              if -2.8000000000000001e-79 < n < 1.15e-61

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in Om around inf

                \[\leadsto \sqrt{\color{blue}{-4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om} + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-fma.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \color{blue}{\frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lower-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-pow.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                6. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                7. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. lower-*.f6442.3%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              4. Applied rewrites42.3%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)}} \]
              5. Step-by-step derivation
                1. lift-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{\left({\ell}^{2} \cdot n\right) \cdot U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. associate-/l*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                6. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                7. lift-pow.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. pow2N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot \ell\right) \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                9. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot \ell\right) \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(n \cdot \left(\ell \cdot \ell\right)\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                11. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(n \cdot \left(\ell \cdot \ell\right)\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                12. associate-*r*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                13. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot n\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                14. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot n\right) \cdot \ell\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                15. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                16. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                17. lower-/.f6445.2%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              6. Applied rewrites45.2%

                \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              7. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lift-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. associate-*r/N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot U}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. lower-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot U}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-*.f6445.9%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              8. Applied rewrites45.9%

                \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot U}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
            3. Recombined 2 regimes into one program.
            4. Add Preprocessing

            Alternative 14: 53.0% accurate, 0.4× speedup?

            \[\begin{array}{l} t_1 := \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}\\ \mathbf{if}\;t\_1 \leq 10^{-148}:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(\left(t + t\right) \cdot U, n, \left(-4 \cdot U\right) \cdot \left(n \cdot \left(\frac{\ell}{Om} \cdot \ell\right)\right)\right)}\\ \mathbf{elif}\;t\_1 \leq 10^{+152}:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \left(-2 \cdot \ell\right), t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)}\\ \end{array} \]
            (FPCore (n U t l Om U*)
              :precision binary64
              (let* ((t_1
                    (sqrt
                     (*
                      (* (* 2.0 n) U)
                      (-
                       (- t (* 2.0 (/ (* l l) Om)))
                       (* (* n (pow (/ l Om) 2.0)) (- U U*)))))))
              (if (<= t_1 1e-148)
                (sqrt (fma (* (+ t t) U) n (* (* -4.0 U) (* n (* (/ l Om) l)))))
                (if (<= t_1 1e+152)
                  (sqrt (* (fma (/ 1.0 Om) (* l (* -2.0 l)) t) (* (+ U U) n)))
                  (sqrt
                   (fma (* n l) (* (* (/ U Om) l) -4.0) (* (* (+ n n) t) U)))))))
            double code(double n, double U, double t, double l, double Om, double U_42_) {
            	double t_1 = sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * pow((l / Om), 2.0)) * (U - U_42_)))));
            	double tmp;
            	if (t_1 <= 1e-148) {
            		tmp = sqrt(fma(((t + t) * U), n, ((-4.0 * U) * (n * ((l / Om) * l)))));
            	} else if (t_1 <= 1e+152) {
            		tmp = sqrt((fma((1.0 / Om), (l * (-2.0 * l)), t) * ((U + U) * n)));
            	} else {
            		tmp = sqrt(fma((n * l), (((U / Om) * l) * -4.0), (((n + n) * t) * U)));
            	}
            	return tmp;
            }
            
            function code(n, U, t, l, Om, U_42_)
            	t_1 = sqrt(Float64(Float64(Float64(2.0 * n) * U) * Float64(Float64(t - Float64(2.0 * Float64(Float64(l * l) / Om))) - Float64(Float64(n * (Float64(l / Om) ^ 2.0)) * Float64(U - U_42_)))))
            	tmp = 0.0
            	if (t_1 <= 1e-148)
            		tmp = sqrt(fma(Float64(Float64(t + t) * U), n, Float64(Float64(-4.0 * U) * Float64(n * Float64(Float64(l / Om) * l)))));
            	elseif (t_1 <= 1e+152)
            		tmp = sqrt(Float64(fma(Float64(1.0 / Om), Float64(l * Float64(-2.0 * l)), t) * Float64(Float64(U + U) * n)));
            	else
            		tmp = sqrt(fma(Float64(n * l), Float64(Float64(Float64(U / Om) * l) * -4.0), Float64(Float64(Float64(n + n) * t) * U)));
            	end
            	return tmp
            end
            
            code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[Sqrt[N[(N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision] * N[(N[(t - N[(2.0 * N[(N[(l * l), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(N[(n * N[Power[N[(l / Om), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, If[LessEqual[t$95$1, 1e-148], N[Sqrt[N[(N[(N[(t + t), $MachinePrecision] * U), $MachinePrecision] * n + N[(N[(-4.0 * U), $MachinePrecision] * N[(n * N[(N[(l / Om), $MachinePrecision] * l), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], If[LessEqual[t$95$1, 1e+152], N[Sqrt[N[(N[(N[(1.0 / Om), $MachinePrecision] * N[(l * N[(-2.0 * l), $MachinePrecision]), $MachinePrecision] + t), $MachinePrecision] * N[(N[(U + U), $MachinePrecision] * n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], N[Sqrt[N[(N[(n * l), $MachinePrecision] * N[(N[(N[(U / Om), $MachinePrecision] * l), $MachinePrecision] * -4.0), $MachinePrecision] + N[(N[(N[(n + n), $MachinePrecision] * t), $MachinePrecision] * U), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]]]
            
            \begin{array}{l}
            t_1 := \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}\\
            \mathbf{if}\;t\_1 \leq 10^{-148}:\\
            \;\;\;\;\sqrt{\mathsf{fma}\left(\left(t + t\right) \cdot U, n, \left(-4 \cdot U\right) \cdot \left(n \cdot \left(\frac{\ell}{Om} \cdot \ell\right)\right)\right)}\\
            
            \mathbf{elif}\;t\_1 \leq 10^{+152}:\\
            \;\;\;\;\sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \left(-2 \cdot \ell\right), t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\
            
            \mathbf{else}:\\
            \;\;\;\;\sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)}\\
            
            
            \end{array}
            
            Derivation
            1. Split input into 3 regimes
            2. if (sqrt.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))) < 9.9999999999999994e-149

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in Om around inf

                \[\leadsto \sqrt{\color{blue}{-4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om} + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-fma.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \color{blue}{\frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lower-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-pow.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                6. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                7. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. lower-*.f6442.3%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              4. Applied rewrites42.3%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)}} \]
              5. Step-by-step derivation
                1. lift-fma.f64N/A

                  \[\leadsto \sqrt{-4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om} + \color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. +-commutativeN/A

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \left(n \cdot t\right)\right) + \color{blue}{-4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}}} \]
                3. lift-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \left(n \cdot t\right)\right) + \color{blue}{-4} \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}} \]
                4. lift-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \left(n \cdot t\right)\right) + -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}} \]
                5. associate-*r*N/A

                  \[\leadsto \sqrt{\left(2 \cdot U\right) \cdot \left(n \cdot t\right) + \color{blue}{-4} \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}} \]
                6. count-2N/A

                  \[\leadsto \sqrt{\left(U + U\right) \cdot \left(n \cdot t\right) + -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}} \]
                7. lift-+.f64N/A

                  \[\leadsto \sqrt{\left(U + U\right) \cdot \left(n \cdot t\right) + -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}} \]
                8. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U + U\right) \cdot \left(n \cdot t\right) + -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}} \]
                9. *-commutativeN/A

                  \[\leadsto \sqrt{\left(U + U\right) \cdot \left(t \cdot n\right) + -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}} \]
                10. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(U + U\right) \cdot t\right) \cdot n + \color{blue}{-4} \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}} \]
                11. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(U + U\right) \cdot t\right) \cdot n + -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}} \]
                12. lower-fma.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(\left(U + U\right) \cdot t, \color{blue}{n}, -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}\right)} \]
                13. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(\left(U + U\right) \cdot t, n, -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}\right)} \]
                14. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(t \cdot \left(U + U\right), n, -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}\right)} \]
                15. lift-+.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(t \cdot \left(U + U\right), n, -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}\right)} \]
                16. count-2N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(t \cdot \left(2 \cdot U\right), n, -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}\right)} \]
                17. associate-*r*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(\left(t \cdot 2\right) \cdot U, n, -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}\right)} \]
                18. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(\left(2 \cdot t\right) \cdot U, n, -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}\right)} \]
                19. count-2N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(\left(t + t\right) \cdot U, n, -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}\right)} \]
                20. lift-+.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(\left(t + t\right) \cdot U, n, -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}\right)} \]
                21. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(\left(t + t\right) \cdot U, n, -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}\right)} \]
                22. lift-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(\left(t + t\right) \cdot U, n, -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}\right)} \]
                23. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(\left(t + t\right) \cdot U, n, -4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}\right)} \]
                24. associate-/l*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(\left(t + t\right) \cdot U, n, -4 \cdot \left(U \cdot \frac{{\ell}^{2} \cdot n}{Om}\right)\right)} \]
              6. Applied rewrites47.2%

                \[\leadsto \sqrt{\mathsf{fma}\left(\left(t + t\right) \cdot U, \color{blue}{n}, \left(-4 \cdot U\right) \cdot \left(n \cdot \left(\frac{\ell}{Om} \cdot \ell\right)\right)\right)} \]

              if 9.9999999999999994e-149 < (sqrt.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))) < 1e152

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Step-by-step derivation
                1. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
                3. fp-cancel-sub-sign-invN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
                4. +-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
                5. distribute-lft-neg-outN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                6. distribute-rgt-neg-inN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                7. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                8. sub-negate-revN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                9. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                11. lift-pow.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                12. unpow2N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                13. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                14. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                15. lower-fma.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
              3. Applied rewrites52.2%

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
              4. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
                2. *-commutativeN/A

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
                3. lower-*.f6452.2%

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
              5. Applied rewrites51.4%

                \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
              6. Applied rewrites53.2%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
              7. Taylor expanded in n around 0

                \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \color{blue}{\left(-2 \cdot \ell\right)}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
              8. Step-by-step derivation
                1. lower-*.f6443.7%

                  \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \left(-2 \cdot \color{blue}{\ell}\right), t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
              9. Applied rewrites43.7%

                \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \color{blue}{\left(-2 \cdot \ell\right)}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]

              if 1e152 < (sqrt.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))))

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in Om around inf

                \[\leadsto \sqrt{\color{blue}{-4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om} + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-fma.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \color{blue}{\frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lower-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-pow.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                6. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                7. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. lower-*.f6442.3%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              4. Applied rewrites42.3%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)}} \]
              5. Step-by-step derivation
                1. lift-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{\left({\ell}^{2} \cdot n\right) \cdot U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. associate-/l*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                6. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                7. lift-pow.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. pow2N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot \ell\right) \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                9. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot \ell\right) \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(n \cdot \left(\ell \cdot \ell\right)\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                11. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(n \cdot \left(\ell \cdot \ell\right)\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                12. associate-*r*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                13. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot n\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                14. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot n\right) \cdot \ell\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                15. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                16. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                17. lower-/.f6445.2%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              6. Applied rewrites45.2%

                \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              7. Step-by-step derivation
                1. lift-fma.f64N/A

                  \[\leadsto \sqrt{-4 \cdot \left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) + \color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) \cdot -4 + \color{blue}{2} \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                3. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) \cdot -4 + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                4. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) \cdot -4 + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                5. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(n \cdot \ell\right) \cdot \left(\ell \cdot \frac{U}{Om}\right)\right) \cdot -4 + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                6. associate-*l*N/A

                  \[\leadsto \sqrt{\left(n \cdot \ell\right) \cdot \left(\left(\ell \cdot \frac{U}{Om}\right) \cdot -4\right) + \color{blue}{2} \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                7. lower-fma.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \color{blue}{\left(\ell \cdot \frac{U}{Om}\right) \cdot -4}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\ell \cdot \frac{U}{Om}\right) \cdot \color{blue}{-4}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                9. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                10. lower-*.f6447.4%

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                11. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                12. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                13. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(\left(n \cdot t\right) \cdot U\right)\right)} \]
                14. associate-*r*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(2 \cdot \left(n \cdot t\right)\right) \cdot U\right)} \]
                15. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(2 \cdot \left(n \cdot t\right)\right) \cdot U\right)} \]
                16. associate-*l*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(2 \cdot n\right) \cdot t\right) \cdot U\right)} \]
                17. count-2-revN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
                18. lift-+.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
                19. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
                20. lift-*.f6447.4%

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
              8. Applied rewrites47.4%

                \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \color{blue}{\left(\frac{U}{Om} \cdot \ell\right) \cdot -4}, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
            3. Recombined 3 regimes into one program.
            4. Add Preprocessing

            Alternative 15: 52.9% accurate, 0.4× speedup?

            \[\begin{array}{l} t_1 := \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}\\ t_2 := \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)}\\ \mathbf{if}\;t\_1 \leq 0:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;t\_1 \leq 10^{+152}:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \left(-2 \cdot \ell\right), t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\ \mathbf{else}:\\ \;\;\;\;t\_2\\ \end{array} \]
            (FPCore (n U t l Om U*)
              :precision binary64
              (let* ((t_1
                    (sqrt
                     (*
                      (* (* 2.0 n) U)
                      (-
                       (- t (* 2.0 (/ (* l l) Om)))
                       (* (* n (pow (/ l Om) 2.0)) (- U U*))))))
                   (t_2
                    (sqrt
                     (fma (* n l) (* (* (/ U Om) l) -4.0) (* (* (+ n n) t) U)))))
              (if (<= t_1 0.0)
                t_2
                (if (<= t_1 1e+152)
                  (sqrt (* (fma (/ 1.0 Om) (* l (* -2.0 l)) t) (* (+ U U) n)))
                  t_2))))
            double code(double n, double U, double t, double l, double Om, double U_42_) {
            	double t_1 = sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * pow((l / Om), 2.0)) * (U - U_42_)))));
            	double t_2 = sqrt(fma((n * l), (((U / Om) * l) * -4.0), (((n + n) * t) * U)));
            	double tmp;
            	if (t_1 <= 0.0) {
            		tmp = t_2;
            	} else if (t_1 <= 1e+152) {
            		tmp = sqrt((fma((1.0 / Om), (l * (-2.0 * l)), t) * ((U + U) * n)));
            	} else {
            		tmp = t_2;
            	}
            	return tmp;
            }
            
            function code(n, U, t, l, Om, U_42_)
            	t_1 = sqrt(Float64(Float64(Float64(2.0 * n) * U) * Float64(Float64(t - Float64(2.0 * Float64(Float64(l * l) / Om))) - Float64(Float64(n * (Float64(l / Om) ^ 2.0)) * Float64(U - U_42_)))))
            	t_2 = sqrt(fma(Float64(n * l), Float64(Float64(Float64(U / Om) * l) * -4.0), Float64(Float64(Float64(n + n) * t) * U)))
            	tmp = 0.0
            	if (t_1 <= 0.0)
            		tmp = t_2;
            	elseif (t_1 <= 1e+152)
            		tmp = sqrt(Float64(fma(Float64(1.0 / Om), Float64(l * Float64(-2.0 * l)), t) * Float64(Float64(U + U) * n)));
            	else
            		tmp = t_2;
            	end
            	return tmp
            end
            
            code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[Sqrt[N[(N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision] * N[(N[(t - N[(2.0 * N[(N[(l * l), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(N[(n * N[Power[N[(l / Om), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$2 = N[Sqrt[N[(N[(n * l), $MachinePrecision] * N[(N[(N[(U / Om), $MachinePrecision] * l), $MachinePrecision] * -4.0), $MachinePrecision] + N[(N[(N[(n + n), $MachinePrecision] * t), $MachinePrecision] * U), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, If[LessEqual[t$95$1, 0.0], t$95$2, If[LessEqual[t$95$1, 1e+152], N[Sqrt[N[(N[(N[(1.0 / Om), $MachinePrecision] * N[(l * N[(-2.0 * l), $MachinePrecision]), $MachinePrecision] + t), $MachinePrecision] * N[(N[(U + U), $MachinePrecision] * n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], t$95$2]]]]
            
            \begin{array}{l}
            t_1 := \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}\\
            t_2 := \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)}\\
            \mathbf{if}\;t\_1 \leq 0:\\
            \;\;\;\;t\_2\\
            
            \mathbf{elif}\;t\_1 \leq 10^{+152}:\\
            \;\;\;\;\sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \left(-2 \cdot \ell\right), t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\
            
            \mathbf{else}:\\
            \;\;\;\;t\_2\\
            
            
            \end{array}
            
            Derivation
            1. Split input into 2 regimes
            2. if (sqrt.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))) < 0.0 or 1e152 < (sqrt.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))))

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in Om around inf

                \[\leadsto \sqrt{\color{blue}{-4 \cdot \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om} + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-fma.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \color{blue}{\frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lower-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-pow.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                6. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                7. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. lower-*.f6442.3%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              4. Applied rewrites42.3%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)}} \]
              5. Step-by-step derivation
                1. lift-/.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{U \cdot \left({\ell}^{2} \cdot n\right)}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                3. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \frac{\left({\ell}^{2} \cdot n\right) \cdot U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                4. associate-/l*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                5. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                6. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                7. lift-pow.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left({\ell}^{2} \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. pow2N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot \ell\right) \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                9. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot \ell\right) \cdot n\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(n \cdot \left(\ell \cdot \ell\right)\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                11. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(n \cdot \left(\ell \cdot \ell\right)\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                12. associate-*r*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                13. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot n\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                14. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(\ell \cdot n\right) \cdot \ell\right) \cdot \frac{\color{blue}{U}}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                15. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                16. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                17. lower-/.f6445.2%

                  \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{\color{blue}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              6. Applied rewrites45.2%

                \[\leadsto \sqrt{\mathsf{fma}\left(-4, \left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \color{blue}{\frac{U}{Om}}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
              7. Step-by-step derivation
                1. lift-fma.f64N/A

                  \[\leadsto \sqrt{-4 \cdot \left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) + \color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) \cdot -4 + \color{blue}{2} \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                3. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) \cdot -4 + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                4. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(\left(n \cdot \ell\right) \cdot \ell\right) \cdot \frac{U}{Om}\right) \cdot -4 + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                5. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(n \cdot \ell\right) \cdot \left(\ell \cdot \frac{U}{Om}\right)\right) \cdot -4 + 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                6. associate-*l*N/A

                  \[\leadsto \sqrt{\left(n \cdot \ell\right) \cdot \left(\left(\ell \cdot \frac{U}{Om}\right) \cdot -4\right) + \color{blue}{2} \cdot \left(U \cdot \left(n \cdot t\right)\right)} \]
                7. lower-fma.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \color{blue}{\left(\ell \cdot \frac{U}{Om}\right) \cdot -4}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                8. lower-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\ell \cdot \frac{U}{Om}\right) \cdot \color{blue}{-4}, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                9. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                10. lower-*.f6447.4%

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                11. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                12. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(U \cdot \left(n \cdot t\right)\right)\right)} \]
                13. *-commutativeN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, 2 \cdot \left(\left(n \cdot t\right) \cdot U\right)\right)} \]
                14. associate-*r*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(2 \cdot \left(n \cdot t\right)\right) \cdot U\right)} \]
                15. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(2 \cdot \left(n \cdot t\right)\right) \cdot U\right)} \]
                16. associate-*l*N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(2 \cdot n\right) \cdot t\right) \cdot U\right)} \]
                17. count-2-revN/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
                18. lift-+.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
                19. lift-*.f64N/A

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
                20. lift-*.f6447.4%

                  \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \left(\frac{U}{Om} \cdot \ell\right) \cdot -4, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]
              8. Applied rewrites47.4%

                \[\leadsto \sqrt{\mathsf{fma}\left(n \cdot \ell, \color{blue}{\left(\frac{U}{Om} \cdot \ell\right) \cdot -4}, \left(\left(n + n\right) \cdot t\right) \cdot U\right)} \]

              if 0.0 < (sqrt.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))) < 1e152

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Step-by-step derivation
                1. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
                3. fp-cancel-sub-sign-invN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
                4. +-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
                5. distribute-lft-neg-outN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                6. distribute-rgt-neg-inN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                7. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                8. sub-negate-revN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                9. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                11. lift-pow.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                12. unpow2N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                13. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                14. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                15. lower-fma.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
              3. Applied rewrites52.2%

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
              4. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
                2. *-commutativeN/A

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
                3. lower-*.f6452.2%

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
              5. Applied rewrites51.4%

                \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
              6. Applied rewrites53.2%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
              7. Taylor expanded in n around 0

                \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \color{blue}{\left(-2 \cdot \ell\right)}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
              8. Step-by-step derivation
                1. lower-*.f6443.7%

                  \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \left(-2 \cdot \color{blue}{\ell}\right), t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
              9. Applied rewrites43.7%

                \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \color{blue}{\left(-2 \cdot \ell\right)}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
            3. Recombined 2 regimes into one program.
            4. Add Preprocessing

            Alternative 16: 45.5% accurate, 1.9× speedup?

            \[\begin{array}{l} \mathbf{if}\;t \leq 3 \cdot 10^{+142}:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \left(-2 \cdot \ell\right), t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{t} \cdot \sqrt{U \cdot \left(n + n\right)}\\ \end{array} \]
            (FPCore (n U t l Om U*)
              :precision binary64
              (if (<= t 3e+142)
              (sqrt (* (fma (/ 1.0 Om) (* l (* -2.0 l)) t) (* (+ U U) n)))
              (* (sqrt t) (sqrt (* U (+ n n))))))
            double code(double n, double U, double t, double l, double Om, double U_42_) {
            	double tmp;
            	if (t <= 3e+142) {
            		tmp = sqrt((fma((1.0 / Om), (l * (-2.0 * l)), t) * ((U + U) * n)));
            	} else {
            		tmp = sqrt(t) * sqrt((U * (n + n)));
            	}
            	return tmp;
            }
            
            function code(n, U, t, l, Om, U_42_)
            	tmp = 0.0
            	if (t <= 3e+142)
            		tmp = sqrt(Float64(fma(Float64(1.0 / Om), Float64(l * Float64(-2.0 * l)), t) * Float64(Float64(U + U) * n)));
            	else
            		tmp = Float64(sqrt(t) * sqrt(Float64(U * Float64(n + n))));
            	end
            	return tmp
            end
            
            code[n_, U_, t_, l_, Om_, U$42$_] := If[LessEqual[t, 3e+142], N[Sqrt[N[(N[(N[(1.0 / Om), $MachinePrecision] * N[(l * N[(-2.0 * l), $MachinePrecision]), $MachinePrecision] + t), $MachinePrecision] * N[(N[(U + U), $MachinePrecision] * n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], N[(N[Sqrt[t], $MachinePrecision] * N[Sqrt[N[(U * N[(n + n), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]
            
            \begin{array}{l}
            \mathbf{if}\;t \leq 3 \cdot 10^{+142}:\\
            \;\;\;\;\sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \left(-2 \cdot \ell\right), t\right) \cdot \left(\left(U + U\right) \cdot n\right)}\\
            
            \mathbf{else}:\\
            \;\;\;\;\sqrt{t} \cdot \sqrt{U \cdot \left(n + n\right)}\\
            
            
            \end{array}
            
            Derivation
            1. Split input into 2 regimes
            2. if t < 2.9999999999999997e142

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Step-by-step derivation
                1. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)}\right)} \]
                3. fp-cancel-sub-sign-invN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) + \left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right)\right)}} \]
                4. +-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)\right) \cdot \left(U - U*\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)}} \]
                5. distribute-lft-neg-outN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                6. distribute-rgt-neg-inN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\left(U - U*\right)\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                7. lift--.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(\mathsf{neg}\left(\color{blue}{\left(U - U*\right)}\right)\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                8. sub-negate-revN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \color{blue}{\left(U* - U\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                9. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left({\left(\frac{\ell}{Om}\right)}^{2} \cdot n\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                11. lift-pow.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{{\left(\frac{\ell}{Om}\right)}^{2}} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                12. unpow2N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(\color{blue}{\left(\frac{\ell}{Om} \cdot \frac{\ell}{Om}\right)} \cdot n\right) \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                13. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\left(\frac{\ell}{Om} \cdot \left(\frac{\ell}{Om} \cdot n\right)\right)} \cdot \left(U* - U\right) + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                14. associate-*l*N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\color{blue}{\frac{\ell}{Om} \cdot \left(\left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right)\right)} + \left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)\right)} \]
                15. lower-fma.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right)}} \]
              3. Applied rewrites52.2%

                \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
              4. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)}} \]
                2. *-commutativeN/A

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
                3. lower-*.f6452.2%

                  \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{\ell}{Om}, \left(\frac{\ell}{Om} \cdot n\right) \cdot \left(U* - U\right), \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
              5. Applied rewrites51.4%

                \[\leadsto \sqrt{\color{blue}{\left(\frac{\mathsf{fma}\left(\ell \cdot \left(U* - U\right), \frac{\ell}{Om} \cdot n, \left(-2 \cdot \ell\right) \cdot \ell\right)}{Om} + t\right) \cdot \left(\left(U + U\right) \cdot n\right)}} \]
              6. Applied rewrites53.2%

                \[\leadsto \sqrt{\color{blue}{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \mathsf{fma}\left(n \cdot \left(U* - U\right), \frac{\ell}{Om}, -2 \cdot \ell\right), t\right)} \cdot \left(\left(U + U\right) \cdot n\right)} \]
              7. Taylor expanded in n around 0

                \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \color{blue}{\left(-2 \cdot \ell\right)}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
              8. Step-by-step derivation
                1. lower-*.f6443.7%

                  \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \left(-2 \cdot \color{blue}{\ell}\right), t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]
              9. Applied rewrites43.7%

                \[\leadsto \sqrt{\mathsf{fma}\left(\frac{1}{Om}, \ell \cdot \color{blue}{\left(-2 \cdot \ell\right)}, t\right) \cdot \left(\left(U + U\right) \cdot n\right)} \]

              if 2.9999999999999997e142 < t

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Step-by-step derivation
                1. lift-sqrt.f64N/A

                  \[\leadsto \color{blue}{\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\color{blue}{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}} \]
                3. *-commutativeN/A

                  \[\leadsto \sqrt{\color{blue}{\left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right) \cdot \left(\left(2 \cdot n\right) \cdot U\right)}} \]
                4. sqrt-prodN/A

                  \[\leadsto \color{blue}{\sqrt{\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)} \cdot \sqrt{\left(2 \cdot n\right) \cdot U}} \]
                5. lower-unsound-*.f64N/A

                  \[\leadsto \color{blue}{\sqrt{\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)} \cdot \sqrt{\left(2 \cdot n\right) \cdot U}} \]
              3. Applied rewrites25.7%

                \[\leadsto \color{blue}{\sqrt{\mathsf{fma}\left(\left(U* - U\right) \cdot n, \ell \cdot \frac{\ell}{Om \cdot Om}, \mathsf{fma}\left(-2, \frac{\ell \cdot \ell}{Om}, t\right)\right)} \cdot \sqrt{U \cdot \left(n + n\right)}} \]
              4. Taylor expanded in l around 0

                \[\leadsto \color{blue}{\sqrt{t}} \cdot \sqrt{U \cdot \left(n + n\right)} \]
              5. Step-by-step derivation
                1. lower-sqrt.f6421.7%

                  \[\leadsto \sqrt{t} \cdot \sqrt{U \cdot \left(n + n\right)} \]
              6. Applied rewrites21.7%

                \[\leadsto \color{blue}{\sqrt{t}} \cdot \sqrt{U \cdot \left(n + n\right)} \]
            3. Recombined 2 regimes into one program.
            4. Add Preprocessing

            Alternative 17: 41.7% accurate, 0.4× speedup?

            \[\begin{array}{l} t_1 := \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}\\ t_2 := \left(\left(n + n\right) \cdot t\right) \cdot U\\ \mathbf{if}\;t\_1 \leq 5 \cdot 10^{-122}:\\ \;\;\;\;\sqrt{t\_2}\\ \mathbf{elif}\;t\_1 \leq 10^{+152}:\\ \;\;\;\;\sqrt{\left(U \cdot n\right) \cdot \left(t + t\right)}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{\left|t\_2\right|}\\ \end{array} \]
            (FPCore (n U t l Om U*)
              :precision binary64
              (let* ((t_1
                    (sqrt
                     (*
                      (* (* 2.0 n) U)
                      (-
                       (- t (* 2.0 (/ (* l l) Om)))
                       (* (* n (pow (/ l Om) 2.0)) (- U U*))))))
                   (t_2 (* (* (+ n n) t) U)))
              (if (<= t_1 5e-122)
                (sqrt t_2)
                (if (<= t_1 1e+152)
                  (sqrt (* (* U n) (+ t t)))
                  (sqrt (fabs t_2))))))
            double code(double n, double U, double t, double l, double Om, double U_42_) {
            	double t_1 = sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * pow((l / Om), 2.0)) * (U - U_42_)))));
            	double t_2 = ((n + n) * t) * U;
            	double tmp;
            	if (t_1 <= 5e-122) {
            		tmp = sqrt(t_2);
            	} else if (t_1 <= 1e+152) {
            		tmp = sqrt(((U * n) * (t + t)));
            	} else {
            		tmp = sqrt(fabs(t_2));
            	}
            	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(n, u, t, l, om, u_42)
            use fmin_fmax_functions
                real(8), intent (in) :: n
                real(8), intent (in) :: u
                real(8), intent (in) :: t
                real(8), intent (in) :: l
                real(8), intent (in) :: om
                real(8), intent (in) :: u_42
                real(8) :: t_1
                real(8) :: t_2
                real(8) :: tmp
                t_1 = sqrt((((2.0d0 * n) * u) * ((t - (2.0d0 * ((l * l) / om))) - ((n * ((l / om) ** 2.0d0)) * (u - u_42)))))
                t_2 = ((n + n) * t) * u
                if (t_1 <= 5d-122) then
                    tmp = sqrt(t_2)
                else if (t_1 <= 1d+152) then
                    tmp = sqrt(((u * n) * (t + t)))
                else
                    tmp = sqrt(abs(t_2))
                end if
                code = tmp
            end function
            
            public static double code(double n, double U, double t, double l, double Om, double U_42_) {
            	double t_1 = Math.sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * Math.pow((l / Om), 2.0)) * (U - U_42_)))));
            	double t_2 = ((n + n) * t) * U;
            	double tmp;
            	if (t_1 <= 5e-122) {
            		tmp = Math.sqrt(t_2);
            	} else if (t_1 <= 1e+152) {
            		tmp = Math.sqrt(((U * n) * (t + t)));
            	} else {
            		tmp = Math.sqrt(Math.abs(t_2));
            	}
            	return tmp;
            }
            
            def code(n, U, t, l, Om, U_42_):
            	t_1 = math.sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * math.pow((l / Om), 2.0)) * (U - U_42_)))))
            	t_2 = ((n + n) * t) * U
            	tmp = 0
            	if t_1 <= 5e-122:
            		tmp = math.sqrt(t_2)
            	elif t_1 <= 1e+152:
            		tmp = math.sqrt(((U * n) * (t + t)))
            	else:
            		tmp = math.sqrt(math.fabs(t_2))
            	return tmp
            
            function code(n, U, t, l, Om, U_42_)
            	t_1 = sqrt(Float64(Float64(Float64(2.0 * n) * U) * Float64(Float64(t - Float64(2.0 * Float64(Float64(l * l) / Om))) - Float64(Float64(n * (Float64(l / Om) ^ 2.0)) * Float64(U - U_42_)))))
            	t_2 = Float64(Float64(Float64(n + n) * t) * U)
            	tmp = 0.0
            	if (t_1 <= 5e-122)
            		tmp = sqrt(t_2);
            	elseif (t_1 <= 1e+152)
            		tmp = sqrt(Float64(Float64(U * n) * Float64(t + t)));
            	else
            		tmp = sqrt(abs(t_2));
            	end
            	return tmp
            end
            
            function tmp_2 = code(n, U, t, l, Om, U_42_)
            	t_1 = sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * ((l / Om) ^ 2.0)) * (U - U_42_)))));
            	t_2 = ((n + n) * t) * U;
            	tmp = 0.0;
            	if (t_1 <= 5e-122)
            		tmp = sqrt(t_2);
            	elseif (t_1 <= 1e+152)
            		tmp = sqrt(((U * n) * (t + t)));
            	else
            		tmp = sqrt(abs(t_2));
            	end
            	tmp_2 = tmp;
            end
            
            code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[Sqrt[N[(N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision] * N[(N[(t - N[(2.0 * N[(N[(l * l), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(N[(n * N[Power[N[(l / Om), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(n + n), $MachinePrecision] * t), $MachinePrecision] * U), $MachinePrecision]}, If[LessEqual[t$95$1, 5e-122], N[Sqrt[t$95$2], $MachinePrecision], If[LessEqual[t$95$1, 1e+152], N[Sqrt[N[(N[(U * n), $MachinePrecision] * N[(t + t), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], N[Sqrt[N[Abs[t$95$2], $MachinePrecision]], $MachinePrecision]]]]]
            
            \begin{array}{l}
            t_1 := \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}\\
            t_2 := \left(\left(n + n\right) \cdot t\right) \cdot U\\
            \mathbf{if}\;t\_1 \leq 5 \cdot 10^{-122}:\\
            \;\;\;\;\sqrt{t\_2}\\
            
            \mathbf{elif}\;t\_1 \leq 10^{+152}:\\
            \;\;\;\;\sqrt{\left(U \cdot n\right) \cdot \left(t + t\right)}\\
            
            \mathbf{else}:\\
            \;\;\;\;\sqrt{\left|t\_2\right|}\\
            
            
            \end{array}
            
            Derivation
            1. Split input into 3 regimes
            2. if (sqrt.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))) < 4.9999999999999999e-122

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in t around inf

                \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \color{blue}{\left(n \cdot t\right)}\right)} \]
                3. lower-*.f6435.9%

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \left(n \cdot \color{blue}{t}\right)\right)} \]
              4. Applied rewrites35.9%

                \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              5. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. count-2-revN/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U \cdot \left(n \cdot t\right)}} \]
                3. lift-*.f64N/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
                4. lift-*.f64N/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + U \cdot \left(n \cdot t\right)} \]
                5. associate-*r*N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
                6. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \color{blue}{\left(n \cdot t\right)}} \]
                7. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \left(n \cdot \color{blue}{t}\right)} \]
                8. associate-*r*N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \left(U \cdot n\right) \cdot \color{blue}{t}} \]
                9. distribute-lft-outN/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \left(\color{blue}{t} + t\right)} \]
                11. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \color{blue}{\left(t + t\right)}} \]
                12. *-commutativeN/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
                13. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
                14. lower-+.f6436.1%

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(t + \color{blue}{t}\right)} \]
              6. Applied rewrites36.1%

                \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
              7. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
                3. associate-*l*N/A

                  \[\leadsto \sqrt{U \cdot \color{blue}{\left(n \cdot \left(t + t\right)\right)}} \]
                4. *-commutativeN/A

                  \[\leadsto \sqrt{\left(n \cdot \left(t + t\right)\right) \cdot \color{blue}{U}} \]
                5. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(n \cdot \left(t + t\right)\right) \cdot \color{blue}{U}} \]
                6. lift-+.f64N/A

                  \[\leadsto \sqrt{\left(n \cdot \left(t + t\right)\right) \cdot U} \]
                7. count-2N/A

                  \[\leadsto \sqrt{\left(n \cdot \left(2 \cdot t\right)\right) \cdot U} \]
                8. associate-*r*N/A

                  \[\leadsto \sqrt{\left(\left(n \cdot 2\right) \cdot t\right) \cdot U} \]
                9. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
                10. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
                11. lower-*.f6435.9%

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
                12. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
                13. count-2-revN/A

                  \[\leadsto \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U} \]
                14. lower-+.f6435.9%

                  \[\leadsto \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U} \]
              8. Applied rewrites35.9%

                \[\leadsto \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot \color{blue}{U}} \]

              if 4.9999999999999999e-122 < (sqrt.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))) < 1e152

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in t around inf

                \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \color{blue}{\left(n \cdot t\right)}\right)} \]
                3. lower-*.f6435.9%

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \left(n \cdot \color{blue}{t}\right)\right)} \]
              4. Applied rewrites35.9%

                \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              5. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. count-2-revN/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U \cdot \left(n \cdot t\right)}} \]
                3. lift-*.f64N/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
                4. lift-*.f64N/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + U \cdot \left(n \cdot t\right)} \]
                5. associate-*r*N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
                6. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \color{blue}{\left(n \cdot t\right)}} \]
                7. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \left(n \cdot \color{blue}{t}\right)} \]
                8. associate-*r*N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \left(U \cdot n\right) \cdot \color{blue}{t}} \]
                9. distribute-lft-outN/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \left(\color{blue}{t} + t\right)} \]
                11. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \color{blue}{\left(t + t\right)}} \]
                12. *-commutativeN/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
                13. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
                14. lower-+.f6436.1%

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(t + \color{blue}{t}\right)} \]
              6. Applied rewrites36.1%

                \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]

              if 1e152 < (sqrt.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))))

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in t around inf

                \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \color{blue}{\left(n \cdot t\right)}\right)} \]
                3. lower-*.f6435.9%

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \left(n \cdot \color{blue}{t}\right)\right)} \]
              4. Applied rewrites35.9%

                \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              5. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. count-2-revN/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U \cdot \left(n \cdot t\right)}} \]
                3. lift-*.f64N/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
                4. lift-*.f64N/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + U \cdot \left(n \cdot t\right)} \]
                5. associate-*r*N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
                6. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \color{blue}{\left(n \cdot t\right)}} \]
                7. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \left(n \cdot \color{blue}{t}\right)} \]
                8. associate-*r*N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \left(U \cdot n\right) \cdot \color{blue}{t}} \]
                9. distribute-lft-outN/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \left(\color{blue}{t} + t\right)} \]
                11. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \color{blue}{\left(t + t\right)}} \]
                12. *-commutativeN/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
                13. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
                14. lower-+.f6436.1%

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(t + \color{blue}{t}\right)} \]
              6. Applied rewrites36.1%

                \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
              7. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
                3. associate-*l*N/A

                  \[\leadsto \sqrt{U \cdot \color{blue}{\left(n \cdot \left(t + t\right)\right)}} \]
                4. *-commutativeN/A

                  \[\leadsto \sqrt{\left(n \cdot \left(t + t\right)\right) \cdot \color{blue}{U}} \]
                5. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(n \cdot \left(t + t\right)\right) \cdot \color{blue}{U}} \]
                6. lift-+.f64N/A

                  \[\leadsto \sqrt{\left(n \cdot \left(t + t\right)\right) \cdot U} \]
                7. count-2N/A

                  \[\leadsto \sqrt{\left(n \cdot \left(2 \cdot t\right)\right) \cdot U} \]
                8. associate-*r*N/A

                  \[\leadsto \sqrt{\left(\left(n \cdot 2\right) \cdot t\right) \cdot U} \]
                9. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
                10. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
                11. lower-*.f6435.9%

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
                12. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
                13. count-2-revN/A

                  \[\leadsto \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U} \]
                14. lower-+.f6435.9%

                  \[\leadsto \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U} \]
              8. Applied rewrites35.9%

                \[\leadsto \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot \color{blue}{U}} \]
              9. Step-by-step derivation
                1. rem-square-sqrtN/A

                  \[\leadsto \sqrt{\color{blue}{\sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U} \cdot \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U}}} \]
                2. lift-sqrt.f64N/A

                  \[\leadsto \sqrt{\color{blue}{\sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U}} \cdot \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U}} \]
                3. lift-sqrt.f64N/A

                  \[\leadsto \sqrt{\sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U} \cdot \color{blue}{\sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U}}} \]
                4. sqr-abs-revN/A

                  \[\leadsto \sqrt{\color{blue}{\left|\sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U}\right| \cdot \left|\sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U}\right|}} \]
              10. Applied rewrites38.7%

                \[\leadsto \sqrt{\color{blue}{\left|\left(\left(n + n\right) \cdot t\right) \cdot U\right|}} \]
            3. Recombined 3 regimes into one program.
            4. Add Preprocessing

            Alternative 18: 40.5% accurate, 0.4× speedup?

            \[\begin{array}{l} t_1 := \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}\\ \mathbf{if}\;t\_1 \leq 5 \cdot 10^{-122}:\\ \;\;\;\;\sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U}\\ \mathbf{elif}\;t\_1 \leq 10^{+148}:\\ \;\;\;\;\sqrt{\left(U \cdot n\right) \cdot \left(t + t\right)}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{\left|\left(\left(U + U\right) \cdot t\right) \cdot n\right|}\\ \end{array} \]
            (FPCore (n U t l Om U*)
              :precision binary64
              (let* ((t_1
                    (sqrt
                     (*
                      (* (* 2.0 n) U)
                      (-
                       (- t (* 2.0 (/ (* l l) Om)))
                       (* (* n (pow (/ l Om) 2.0)) (- U U*)))))))
              (if (<= t_1 5e-122)
                (sqrt (* (* (+ n n) t) U))
                (if (<= t_1 1e+148)
                  (sqrt (* (* U n) (+ t t)))
                  (sqrt (fabs (* (* (+ U U) t) n)))))))
            double code(double n, double U, double t, double l, double Om, double U_42_) {
            	double t_1 = sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * pow((l / Om), 2.0)) * (U - U_42_)))));
            	double tmp;
            	if (t_1 <= 5e-122) {
            		tmp = sqrt((((n + n) * t) * U));
            	} else if (t_1 <= 1e+148) {
            		tmp = sqrt(((U * n) * (t + t)));
            	} else {
            		tmp = sqrt(fabs((((U + U) * t) * n)));
            	}
            	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(n, u, t, l, om, u_42)
            use fmin_fmax_functions
                real(8), intent (in) :: n
                real(8), intent (in) :: u
                real(8), intent (in) :: t
                real(8), intent (in) :: l
                real(8), intent (in) :: om
                real(8), intent (in) :: u_42
                real(8) :: t_1
                real(8) :: tmp
                t_1 = sqrt((((2.0d0 * n) * u) * ((t - (2.0d0 * ((l * l) / om))) - ((n * ((l / om) ** 2.0d0)) * (u - u_42)))))
                if (t_1 <= 5d-122) then
                    tmp = sqrt((((n + n) * t) * u))
                else if (t_1 <= 1d+148) then
                    tmp = sqrt(((u * n) * (t + t)))
                else
                    tmp = sqrt(abs((((u + u) * t) * n)))
                end if
                code = tmp
            end function
            
            public static double code(double n, double U, double t, double l, double Om, double U_42_) {
            	double t_1 = Math.sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * Math.pow((l / Om), 2.0)) * (U - U_42_)))));
            	double tmp;
            	if (t_1 <= 5e-122) {
            		tmp = Math.sqrt((((n + n) * t) * U));
            	} else if (t_1 <= 1e+148) {
            		tmp = Math.sqrt(((U * n) * (t + t)));
            	} else {
            		tmp = Math.sqrt(Math.abs((((U + U) * t) * n)));
            	}
            	return tmp;
            }
            
            def code(n, U, t, l, Om, U_42_):
            	t_1 = math.sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * math.pow((l / Om), 2.0)) * (U - U_42_)))))
            	tmp = 0
            	if t_1 <= 5e-122:
            		tmp = math.sqrt((((n + n) * t) * U))
            	elif t_1 <= 1e+148:
            		tmp = math.sqrt(((U * n) * (t + t)))
            	else:
            		tmp = math.sqrt(math.fabs((((U + U) * t) * n)))
            	return tmp
            
            function code(n, U, t, l, Om, U_42_)
            	t_1 = sqrt(Float64(Float64(Float64(2.0 * n) * U) * Float64(Float64(t - Float64(2.0 * Float64(Float64(l * l) / Om))) - Float64(Float64(n * (Float64(l / Om) ^ 2.0)) * Float64(U - U_42_)))))
            	tmp = 0.0
            	if (t_1 <= 5e-122)
            		tmp = sqrt(Float64(Float64(Float64(n + n) * t) * U));
            	elseif (t_1 <= 1e+148)
            		tmp = sqrt(Float64(Float64(U * n) * Float64(t + t)));
            	else
            		tmp = sqrt(abs(Float64(Float64(Float64(U + U) * t) * n)));
            	end
            	return tmp
            end
            
            function tmp_2 = code(n, U, t, l, Om, U_42_)
            	t_1 = sqrt((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * ((l / Om) ^ 2.0)) * (U - U_42_)))));
            	tmp = 0.0;
            	if (t_1 <= 5e-122)
            		tmp = sqrt((((n + n) * t) * U));
            	elseif (t_1 <= 1e+148)
            		tmp = sqrt(((U * n) * (t + t)));
            	else
            		tmp = sqrt(abs((((U + U) * t) * n)));
            	end
            	tmp_2 = tmp;
            end
            
            code[n_, U_, t_, l_, Om_, U$42$_] := Block[{t$95$1 = N[Sqrt[N[(N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision] * N[(N[(t - N[(2.0 * N[(N[(l * l), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(N[(n * N[Power[N[(l / Om), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, If[LessEqual[t$95$1, 5e-122], N[Sqrt[N[(N[(N[(n + n), $MachinePrecision] * t), $MachinePrecision] * U), $MachinePrecision]], $MachinePrecision], If[LessEqual[t$95$1, 1e+148], N[Sqrt[N[(N[(U * n), $MachinePrecision] * N[(t + t), $MachinePrecision]), $MachinePrecision]], $MachinePrecision], N[Sqrt[N[Abs[N[(N[(N[(U + U), $MachinePrecision] * t), $MachinePrecision] * n), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]]]]
            
            \begin{array}{l}
            t_1 := \sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)}\\
            \mathbf{if}\;t\_1 \leq 5 \cdot 10^{-122}:\\
            \;\;\;\;\sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U}\\
            
            \mathbf{elif}\;t\_1 \leq 10^{+148}:\\
            \;\;\;\;\sqrt{\left(U \cdot n\right) \cdot \left(t + t\right)}\\
            
            \mathbf{else}:\\
            \;\;\;\;\sqrt{\left|\left(\left(U + U\right) \cdot t\right) \cdot n\right|}\\
            
            
            \end{array}
            
            Derivation
            1. Split input into 3 regimes
            2. if (sqrt.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))) < 4.9999999999999999e-122

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in t around inf

                \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \color{blue}{\left(n \cdot t\right)}\right)} \]
                3. lower-*.f6435.9%

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \left(n \cdot \color{blue}{t}\right)\right)} \]
              4. Applied rewrites35.9%

                \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              5. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. count-2-revN/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U \cdot \left(n \cdot t\right)}} \]
                3. lift-*.f64N/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
                4. lift-*.f64N/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + U \cdot \left(n \cdot t\right)} \]
                5. associate-*r*N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
                6. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \color{blue}{\left(n \cdot t\right)}} \]
                7. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \left(n \cdot \color{blue}{t}\right)} \]
                8. associate-*r*N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \left(U \cdot n\right) \cdot \color{blue}{t}} \]
                9. distribute-lft-outN/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \left(\color{blue}{t} + t\right)} \]
                11. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \color{blue}{\left(t + t\right)}} \]
                12. *-commutativeN/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
                13. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
                14. lower-+.f6436.1%

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(t + \color{blue}{t}\right)} \]
              6. Applied rewrites36.1%

                \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
              7. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
                3. associate-*l*N/A

                  \[\leadsto \sqrt{U \cdot \color{blue}{\left(n \cdot \left(t + t\right)\right)}} \]
                4. *-commutativeN/A

                  \[\leadsto \sqrt{\left(n \cdot \left(t + t\right)\right) \cdot \color{blue}{U}} \]
                5. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(n \cdot \left(t + t\right)\right) \cdot \color{blue}{U}} \]
                6. lift-+.f64N/A

                  \[\leadsto \sqrt{\left(n \cdot \left(t + t\right)\right) \cdot U} \]
                7. count-2N/A

                  \[\leadsto \sqrt{\left(n \cdot \left(2 \cdot t\right)\right) \cdot U} \]
                8. associate-*r*N/A

                  \[\leadsto \sqrt{\left(\left(n \cdot 2\right) \cdot t\right) \cdot U} \]
                9. *-commutativeN/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
                10. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
                11. lower-*.f6435.9%

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
                12. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(2 \cdot n\right) \cdot t\right) \cdot U} \]
                13. count-2-revN/A

                  \[\leadsto \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U} \]
                14. lower-+.f6435.9%

                  \[\leadsto \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot U} \]
              8. Applied rewrites35.9%

                \[\leadsto \sqrt{\left(\left(n + n\right) \cdot t\right) \cdot \color{blue}{U}} \]

              if 4.9999999999999999e-122 < (sqrt.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))) < 1e148

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in t around inf

                \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \color{blue}{\left(n \cdot t\right)}\right)} \]
                3. lower-*.f6435.9%

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \left(n \cdot \color{blue}{t}\right)\right)} \]
              4. Applied rewrites35.9%

                \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              5. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. count-2-revN/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U \cdot \left(n \cdot t\right)}} \]
                3. lift-*.f64N/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
                4. lift-*.f64N/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + U \cdot \left(n \cdot t\right)} \]
                5. associate-*r*N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
                6. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \color{blue}{\left(n \cdot t\right)}} \]
                7. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \left(n \cdot \color{blue}{t}\right)} \]
                8. associate-*r*N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \left(U \cdot n\right) \cdot \color{blue}{t}} \]
                9. distribute-lft-outN/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \left(\color{blue}{t} + t\right)} \]
                11. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \color{blue}{\left(t + t\right)}} \]
                12. *-commutativeN/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
                13. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
                14. lower-+.f6436.1%

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(t + \color{blue}{t}\right)} \]
              6. Applied rewrites36.1%

                \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]

              if 1e148 < (sqrt.f64 (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))))

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in t around inf

                \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \color{blue}{\left(n \cdot t\right)}\right)} \]
                3. lower-*.f6435.9%

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \left(n \cdot \color{blue}{t}\right)\right)} \]
              4. Applied rewrites35.9%

                \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              5. Step-by-step derivation
                1. rem-square-sqrtN/A

                  \[\leadsto \sqrt{\color{blue}{\sqrt{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \cdot \sqrt{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}}} \]
                2. lift-sqrt.f64N/A

                  \[\leadsto \sqrt{\color{blue}{\sqrt{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \cdot \sqrt{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
                3. lift-sqrt.f64N/A

                  \[\leadsto \sqrt{\sqrt{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)} \cdot \color{blue}{\sqrt{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}}} \]
              6. Applied rewrites37.6%

                \[\leadsto \sqrt{\color{blue}{\left|\left(\left(U + U\right) \cdot t\right) \cdot n\right|}} \]
            3. Recombined 3 regimes into one program.
            4. Add Preprocessing

            Alternative 19: 38.5% accurate, 0.8× speedup?

            \[\begin{array}{l} \mathbf{if}\;\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right) \leq 0:\\ \;\;\;\;\sqrt{\left(\left(U + U\right) \cdot t\right) \cdot n}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{\left(U \cdot n\right) \cdot \left(t + t\right)}\\ \end{array} \]
            (FPCore (n U t l Om U*)
              :precision binary64
              (if (<=
                 (*
                  (* (* 2.0 n) U)
                  (-
                   (- t (* 2.0 (/ (* l l) Om)))
                   (* (* n (pow (/ l Om) 2.0)) (- U U*))))
                 0.0)
              (sqrt (* (* (+ U U) t) n))
              (sqrt (* (* U n) (+ t t)))))
            double code(double n, double U, double t, double l, double Om, double U_42_) {
            	double tmp;
            	if ((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * pow((l / Om), 2.0)) * (U - U_42_)))) <= 0.0) {
            		tmp = sqrt((((U + U) * t) * n));
            	} else {
            		tmp = sqrt(((U * n) * (t + t)));
            	}
            	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(n, u, t, l, om, u_42)
            use fmin_fmax_functions
                real(8), intent (in) :: n
                real(8), intent (in) :: u
                real(8), intent (in) :: t
                real(8), intent (in) :: l
                real(8), intent (in) :: om
                real(8), intent (in) :: u_42
                real(8) :: tmp
                if ((((2.0d0 * n) * u) * ((t - (2.0d0 * ((l * l) / om))) - ((n * ((l / om) ** 2.0d0)) * (u - u_42)))) <= 0.0d0) then
                    tmp = sqrt((((u + u) * t) * n))
                else
                    tmp = sqrt(((u * n) * (t + t)))
                end if
                code = tmp
            end function
            
            public static double code(double n, double U, double t, double l, double Om, double U_42_) {
            	double tmp;
            	if ((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * Math.pow((l / Om), 2.0)) * (U - U_42_)))) <= 0.0) {
            		tmp = Math.sqrt((((U + U) * t) * n));
            	} else {
            		tmp = Math.sqrt(((U * n) * (t + t)));
            	}
            	return tmp;
            }
            
            def code(n, U, t, l, Om, U_42_):
            	tmp = 0
            	if (((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * math.pow((l / Om), 2.0)) * (U - U_42_)))) <= 0.0:
            		tmp = math.sqrt((((U + U) * t) * n))
            	else:
            		tmp = math.sqrt(((U * n) * (t + t)))
            	return tmp
            
            function code(n, U, t, l, Om, U_42_)
            	tmp = 0.0
            	if (Float64(Float64(Float64(2.0 * n) * U) * Float64(Float64(t - Float64(2.0 * Float64(Float64(l * l) / Om))) - Float64(Float64(n * (Float64(l / Om) ^ 2.0)) * Float64(U - U_42_)))) <= 0.0)
            		tmp = sqrt(Float64(Float64(Float64(U + U) * t) * n));
            	else
            		tmp = sqrt(Float64(Float64(U * n) * Float64(t + t)));
            	end
            	return tmp
            end
            
            function tmp_2 = code(n, U, t, l, Om, U_42_)
            	tmp = 0.0;
            	if ((((2.0 * n) * U) * ((t - (2.0 * ((l * l) / Om))) - ((n * ((l / Om) ^ 2.0)) * (U - U_42_)))) <= 0.0)
            		tmp = sqrt((((U + U) * t) * n));
            	else
            		tmp = sqrt(((U * n) * (t + t)));
            	end
            	tmp_2 = tmp;
            end
            
            code[n_, U_, t_, l_, Om_, U$42$_] := If[LessEqual[N[(N[(N[(2.0 * n), $MachinePrecision] * U), $MachinePrecision] * N[(N[(t - N[(2.0 * N[(N[(l * l), $MachinePrecision] / Om), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(N[(n * N[Power[N[(l / Om), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(U - U$42$), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 0.0], N[Sqrt[N[(N[(N[(U + U), $MachinePrecision] * t), $MachinePrecision] * n), $MachinePrecision]], $MachinePrecision], N[Sqrt[N[(N[(U * n), $MachinePrecision] * N[(t + t), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]
            
            \begin{array}{l}
            \mathbf{if}\;\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right) \leq 0:\\
            \;\;\;\;\sqrt{\left(\left(U + U\right) \cdot t\right) \cdot n}\\
            
            \mathbf{else}:\\
            \;\;\;\;\sqrt{\left(U \cdot n\right) \cdot \left(t + t\right)}\\
            
            
            \end{array}
            
            Derivation
            1. Split input into 2 regimes
            2. if (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*)))) < 0.0

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in t around inf

                \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \color{blue}{\left(n \cdot t\right)}\right)} \]
                3. lower-*.f6435.9%

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \left(n \cdot \color{blue}{t}\right)\right)} \]
              4. Applied rewrites35.9%

                \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              5. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. lift-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \color{blue}{\left(n \cdot t\right)}\right)} \]
                3. associate-*l*N/A

                  \[\leadsto \sqrt{\left(2 \cdot U\right) \cdot \color{blue}{\left(n \cdot t\right)}} \]
                4. count-2-revN/A

                  \[\leadsto \sqrt{\left(U + U\right) \cdot \left(\color{blue}{n} \cdot t\right)} \]
                5. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U + U\right) \cdot \left(n \cdot \color{blue}{t}\right)} \]
                6. *-commutativeN/A

                  \[\leadsto \sqrt{\left(U + U\right) \cdot \left(t \cdot \color{blue}{n}\right)} \]
                7. associate-*r*N/A

                  \[\leadsto \sqrt{\left(\left(U + U\right) \cdot t\right) \cdot \color{blue}{n}} \]
                8. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(U + U\right) \cdot t\right) \cdot \color{blue}{n}} \]
                9. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(\left(U + U\right) \cdot t\right) \cdot n} \]
                10. lower-+.f6435.3%

                  \[\leadsto \sqrt{\left(\left(U + U\right) \cdot t\right) \cdot n} \]
              6. Applied rewrites35.3%

                \[\leadsto \sqrt{\left(\left(U + U\right) \cdot t\right) \cdot \color{blue}{n}} \]

              if 0.0 < (*.f64 (*.f64 (*.f64 #s(literal 2 binary64) n) U) (-.f64 (-.f64 t (*.f64 #s(literal 2 binary64) (/.f64 (*.f64 l l) Om))) (*.f64 (*.f64 n (pow.f64 (/.f64 l Om) #s(literal 2 binary64))) (-.f64 U U*))))

              1. Initial program 50.5%

                \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
              2. Taylor expanded in t around inf

                \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              3. Step-by-step derivation
                1. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. lower-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \color{blue}{\left(n \cdot t\right)}\right)} \]
                3. lower-*.f6435.9%

                  \[\leadsto \sqrt{2 \cdot \left(U \cdot \left(n \cdot \color{blue}{t}\right)\right)} \]
              4. Applied rewrites35.9%

                \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
              5. Step-by-step derivation
                1. lift-*.f64N/A

                  \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
                2. count-2-revN/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U \cdot \left(n \cdot t\right)}} \]
                3. lift-*.f64N/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
                4. lift-*.f64N/A

                  \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + U \cdot \left(n \cdot t\right)} \]
                5. associate-*r*N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
                6. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \color{blue}{\left(n \cdot t\right)}} \]
                7. lift-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \left(n \cdot \color{blue}{t}\right)} \]
                8. associate-*r*N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \left(U \cdot n\right) \cdot \color{blue}{t}} \]
                9. distribute-lft-outN/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
                10. *-commutativeN/A

                  \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \left(\color{blue}{t} + t\right)} \]
                11. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \color{blue}{\left(t + t\right)}} \]
                12. *-commutativeN/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
                13. lower-*.f64N/A

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
                14. lower-+.f6436.1%

                  \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(t + \color{blue}{t}\right)} \]
              6. Applied rewrites36.1%

                \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
            3. Recombined 2 regimes into one program.
            4. Add Preprocessing

            Alternative 20: 36.1% accurate, 4.9× speedup?

            \[\sqrt{\left(U \cdot n\right) \cdot \left(t + t\right)} \]
            (FPCore (n U t l Om U*)
              :precision binary64
              (sqrt (* (* U n) (+ t t))))
            double code(double n, double U, double t, double l, double Om, double U_42_) {
            	return sqrt(((U * n) * (t + t)));
            }
            
            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(n, u, t, l, om, u_42)
            use fmin_fmax_functions
                real(8), intent (in) :: n
                real(8), intent (in) :: u
                real(8), intent (in) :: t
                real(8), intent (in) :: l
                real(8), intent (in) :: om
                real(8), intent (in) :: u_42
                code = sqrt(((u * n) * (t + t)))
            end function
            
            public static double code(double n, double U, double t, double l, double Om, double U_42_) {
            	return Math.sqrt(((U * n) * (t + t)));
            }
            
            def code(n, U, t, l, Om, U_42_):
            	return math.sqrt(((U * n) * (t + t)))
            
            function code(n, U, t, l, Om, U_42_)
            	return sqrt(Float64(Float64(U * n) * Float64(t + t)))
            end
            
            function tmp = code(n, U, t, l, Om, U_42_)
            	tmp = sqrt(((U * n) * (t + t)));
            end
            
            code[n_, U_, t_, l_, Om_, U$42$_] := N[Sqrt[N[(N[(U * n), $MachinePrecision] * N[(t + t), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
            
            \sqrt{\left(U \cdot n\right) \cdot \left(t + t\right)}
            
            Derivation
            1. Initial program 50.5%

              \[\sqrt{\left(\left(2 \cdot n\right) \cdot U\right) \cdot \left(\left(t - 2 \cdot \frac{\ell \cdot \ell}{Om}\right) - \left(n \cdot {\left(\frac{\ell}{Om}\right)}^{2}\right) \cdot \left(U - U*\right)\right)} \]
            2. Taylor expanded in t around inf

              \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
            3. Step-by-step derivation
              1. lower-*.f64N/A

                \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
              2. lower-*.f64N/A

                \[\leadsto \sqrt{2 \cdot \left(U \cdot \color{blue}{\left(n \cdot t\right)}\right)} \]
              3. lower-*.f6435.9%

                \[\leadsto \sqrt{2 \cdot \left(U \cdot \left(n \cdot \color{blue}{t}\right)\right)} \]
            4. Applied rewrites35.9%

              \[\leadsto \sqrt{\color{blue}{2 \cdot \left(U \cdot \left(n \cdot t\right)\right)}} \]
            5. Step-by-step derivation
              1. lift-*.f64N/A

                \[\leadsto \sqrt{2 \cdot \color{blue}{\left(U \cdot \left(n \cdot t\right)\right)}} \]
              2. count-2-revN/A

                \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U \cdot \left(n \cdot t\right)}} \]
              3. lift-*.f64N/A

                \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
              4. lift-*.f64N/A

                \[\leadsto \sqrt{U \cdot \left(n \cdot t\right) + U \cdot \left(n \cdot t\right)} \]
              5. associate-*r*N/A

                \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \color{blue}{U} \cdot \left(n \cdot t\right)} \]
              6. lift-*.f64N/A

                \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \color{blue}{\left(n \cdot t\right)}} \]
              7. lift-*.f64N/A

                \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + U \cdot \left(n \cdot \color{blue}{t}\right)} \]
              8. associate-*r*N/A

                \[\leadsto \sqrt{\left(U \cdot n\right) \cdot t + \left(U \cdot n\right) \cdot \color{blue}{t}} \]
              9. distribute-lft-outN/A

                \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
              10. *-commutativeN/A

                \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \left(\color{blue}{t} + t\right)} \]
              11. lower-*.f64N/A

                \[\leadsto \sqrt{\left(n \cdot U\right) \cdot \color{blue}{\left(t + t\right)}} \]
              12. *-commutativeN/A

                \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
              13. lower-*.f64N/A

                \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(\color{blue}{t} + t\right)} \]
              14. lower-+.f6436.1%

                \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \left(t + \color{blue}{t}\right)} \]
            6. Applied rewrites36.1%

              \[\leadsto \sqrt{\left(U \cdot n\right) \cdot \color{blue}{\left(t + t\right)}} \]
            7. Add Preprocessing

            Reproduce

            ?
            herbie shell --seed 2025213 
            (FPCore (n U t l Om U*)
              :name "Toniolo and Linder, Equation (13)"
              :precision binary64
              (sqrt (* (* (* 2.0 n) U) (- (- t (* 2.0 (/ (* l l) Om))) (* (* n (pow (/ l Om) 2.0)) (- U U*))))))