Given's Rotation SVD example

Percentage Accurate: 78.9% → 99.7%
Time: 11.2s
Alternatives: 6
Speedup: 0.7×

Specification

?
\[10^{-150} < \left|x\right| \land \left|x\right| < 10^{+150}\]
\[\begin{array}{l} \\ \sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)} \end{array} \]
(FPCore (p x)
 :precision binary64
 (sqrt (* 0.5 (+ 1.0 (/ x (sqrt (+ (* (* 4.0 p) p) (* x x))))))))
double code(double p, double x) {
	return sqrt((0.5 * (1.0 + (x / sqrt((((4.0 * p) * p) + (x * x)))))));
}
real(8) function code(p, x)
    real(8), intent (in) :: p
    real(8), intent (in) :: x
    code = sqrt((0.5d0 * (1.0d0 + (x / sqrt((((4.0d0 * p) * p) + (x * x)))))))
end function
public static double code(double p, double x) {
	return Math.sqrt((0.5 * (1.0 + (x / Math.sqrt((((4.0 * p) * p) + (x * x)))))));
}
def code(p, x):
	return math.sqrt((0.5 * (1.0 + (x / math.sqrt((((4.0 * p) * p) + (x * x)))))))
function code(p, x)
	return sqrt(Float64(0.5 * Float64(1.0 + Float64(x / sqrt(Float64(Float64(Float64(4.0 * p) * p) + Float64(x * x)))))))
end
function tmp = code(p, x)
	tmp = sqrt((0.5 * (1.0 + (x / sqrt((((4.0 * p) * p) + (x * x)))))));
end
code[p_, x_] := N[Sqrt[N[(0.5 * N[(1.0 + N[(x / N[Sqrt[N[(N[(N[(4.0 * p), $MachinePrecision] * p), $MachinePrecision] + N[(x * x), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}

\\
\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)}
\end{array}

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

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

\[\begin{array}{l} \\ \sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)} \end{array} \]
(FPCore (p x)
 :precision binary64
 (sqrt (* 0.5 (+ 1.0 (/ x (sqrt (+ (* (* 4.0 p) p) (* x x))))))))
double code(double p, double x) {
	return sqrt((0.5 * (1.0 + (x / sqrt((((4.0 * p) * p) + (x * x)))))));
}
real(8) function code(p, x)
    real(8), intent (in) :: p
    real(8), intent (in) :: x
    code = sqrt((0.5d0 * (1.0d0 + (x / sqrt((((4.0d0 * p) * p) + (x * x)))))))
end function
public static double code(double p, double x) {
	return Math.sqrt((0.5 * (1.0 + (x / Math.sqrt((((4.0 * p) * p) + (x * x)))))));
}
def code(p, x):
	return math.sqrt((0.5 * (1.0 + (x / math.sqrt((((4.0 * p) * p) + (x * x)))))))
function code(p, x)
	return sqrt(Float64(0.5 * Float64(1.0 + Float64(x / sqrt(Float64(Float64(Float64(4.0 * p) * p) + Float64(x * x)))))))
end
function tmp = code(p, x)
	tmp = sqrt((0.5 * (1.0 + (x / sqrt((((4.0 * p) * p) + (x * x)))))));
end
code[p_, x_] := N[Sqrt[N[(0.5 * N[(1.0 + N[(x / N[Sqrt[N[(N[(N[(4.0 * p), $MachinePrecision] * p), $MachinePrecision] + N[(x * x), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}

\\
\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)}
\end{array}

Alternative 1: 99.7% accurate, 0.7× speedup?

\[\begin{array}{l} p_m = \left|p\right| \\ \begin{array}{l} t_0 := \frac{x}{\sqrt{p\_m \cdot \left(4 \cdot p\_m\right) + x \cdot x}}\\ \mathbf{if}\;t\_0 \leq -0.5:\\ \;\;\;\;0 - \frac{p\_m}{x}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{0.5 \cdot \left(t\_0 + 1\right)}\\ \end{array} \end{array} \]
p_m = (fabs.f64 p)
(FPCore (p_m x)
 :precision binary64
 (let* ((t_0 (/ x (sqrt (+ (* p_m (* 4.0 p_m)) (* x x))))))
   (if (<= t_0 -0.5) (- 0.0 (/ p_m x)) (sqrt (* 0.5 (+ t_0 1.0))))))
p_m = fabs(p);
double code(double p_m, double x) {
	double t_0 = x / sqrt(((p_m * (4.0 * p_m)) + (x * x)));
	double tmp;
	if (t_0 <= -0.5) {
		tmp = 0.0 - (p_m / x);
	} else {
		tmp = sqrt((0.5 * (t_0 + 1.0)));
	}
	return tmp;
}
p_m = abs(p)
real(8) function code(p_m, x)
    real(8), intent (in) :: p_m
    real(8), intent (in) :: x
    real(8) :: t_0
    real(8) :: tmp
    t_0 = x / sqrt(((p_m * (4.0d0 * p_m)) + (x * x)))
    if (t_0 <= (-0.5d0)) then
        tmp = 0.0d0 - (p_m / x)
    else
        tmp = sqrt((0.5d0 * (t_0 + 1.0d0)))
    end if
    code = tmp
end function
p_m = Math.abs(p);
public static double code(double p_m, double x) {
	double t_0 = x / Math.sqrt(((p_m * (4.0 * p_m)) + (x * x)));
	double tmp;
	if (t_0 <= -0.5) {
		tmp = 0.0 - (p_m / x);
	} else {
		tmp = Math.sqrt((0.5 * (t_0 + 1.0)));
	}
	return tmp;
}
p_m = math.fabs(p)
def code(p_m, x):
	t_0 = x / math.sqrt(((p_m * (4.0 * p_m)) + (x * x)))
	tmp = 0
	if t_0 <= -0.5:
		tmp = 0.0 - (p_m / x)
	else:
		tmp = math.sqrt((0.5 * (t_0 + 1.0)))
	return tmp
p_m = abs(p)
function code(p_m, x)
	t_0 = Float64(x / sqrt(Float64(Float64(p_m * Float64(4.0 * p_m)) + Float64(x * x))))
	tmp = 0.0
	if (t_0 <= -0.5)
		tmp = Float64(0.0 - Float64(p_m / x));
	else
		tmp = sqrt(Float64(0.5 * Float64(t_0 + 1.0)));
	end
	return tmp
end
p_m = abs(p);
function tmp_2 = code(p_m, x)
	t_0 = x / sqrt(((p_m * (4.0 * p_m)) + (x * x)));
	tmp = 0.0;
	if (t_0 <= -0.5)
		tmp = 0.0 - (p_m / x);
	else
		tmp = sqrt((0.5 * (t_0 + 1.0)));
	end
	tmp_2 = tmp;
end
p_m = N[Abs[p], $MachinePrecision]
code[p$95$m_, x_] := Block[{t$95$0 = N[(x / N[Sqrt[N[(N[(p$95$m * N[(4.0 * p$95$m), $MachinePrecision]), $MachinePrecision] + N[(x * x), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$0, -0.5], N[(0.0 - N[(p$95$m / x), $MachinePrecision]), $MachinePrecision], N[Sqrt[N[(0.5 * N[(t$95$0 + 1.0), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]]
\begin{array}{l}
p_m = \left|p\right|

\\
\begin{array}{l}
t_0 := \frac{x}{\sqrt{p\_m \cdot \left(4 \cdot p\_m\right) + x \cdot x}}\\
\mathbf{if}\;t\_0 \leq -0.5:\\
\;\;\;\;0 - \frac{p\_m}{x}\\

\mathbf{else}:\\
\;\;\;\;\sqrt{0.5 \cdot \left(t\_0 + 1\right)}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (/.f64 x (sqrt.f64 (+.f64 (*.f64 (*.f64 #s(literal 4 binary64) p) p) (*.f64 x x)))) < -0.5

    1. Initial program 12.7%

      \[\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)} \]
    2. Step-by-step derivation
      1. sqrt-lowering-sqrt.f64N/A

        \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
      2. distribute-rgt-inN/A

        \[\leadsto \mathsf{sqrt.f64}\left(\left(1 \cdot \frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
      3. metadata-evalN/A

        \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
      4. +-lowering-+.f64N/A

        \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right)\right) \]
      5. *-commutativeN/A

        \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{1}{2} \cdot \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
      6. associate-*r/N/A

        \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{\frac{1}{2} \cdot x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
      7. /-lowering-/.f64N/A

        \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\left(\frac{1}{2} \cdot x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
      8. *-lowering-*.f64N/A

        \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
      9. sqrt-lowering-sqrt.f64N/A

        \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\left(\left(4 \cdot p\right) \cdot p + x \cdot x\right)\right)\right)\right)\right) \]
      10. +-lowering-+.f64N/A

        \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(\left(4 \cdot p\right) \cdot p\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
      11. associate-*l*N/A

        \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(4 \cdot \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
      12. *-lowering-*.f64N/A

        \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
      13. *-lowering-*.f64N/A

        \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
      14. *-lowering-*.f6412.7%

        \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \mathsf{*.f64}\left(x, x\right)\right)\right)\right)\right)\right) \]
    3. Simplified12.7%

      \[\leadsto \color{blue}{\sqrt{0.5 + \frac{0.5 \cdot x}{\sqrt{4 \cdot \left(p \cdot p\right) + x \cdot x}}}} \]
    4. Add Preprocessing
    5. Taylor expanded in x around -inf

      \[\leadsto \color{blue}{-1 \cdot \frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{x}} \]
    6. Step-by-step derivation
      1. mul-1-negN/A

        \[\leadsto \mathsf{neg}\left(\frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{x}\right) \]
      2. distribute-neg-frac2N/A

        \[\leadsto \frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{\color{blue}{\mathsf{neg}\left(x\right)}} \]
      3. mul-1-negN/A

        \[\leadsto \frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{-1 \cdot \color{blue}{x}} \]
      4. /-lowering-/.f64N/A

        \[\leadsto \mathsf{/.f64}\left(\left(p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}\right), \color{blue}{\left(-1 \cdot x\right)}\right) \]
    7. Simplified42.3%

      \[\leadsto \color{blue}{\frac{p + \frac{0.125 \cdot \left(\left(\left(p \cdot p\right) \cdot \left(p \cdot p\right)\right) \cdot -12\right)}{x \cdot \left(x \cdot p\right)}}{0 - x}} \]
    8. Taylor expanded in p around 0

      \[\leadsto \mathsf{/.f64}\left(\color{blue}{p}, \mathsf{\_.f64}\left(0, x\right)\right) \]
    9. Step-by-step derivation
      1. Simplified62.6%

        \[\leadsto \frac{\color{blue}{p}}{0 - x} \]
      2. Step-by-step derivation
        1. sub0-negN/A

          \[\leadsto \mathsf{/.f64}\left(p, \left(\mathsf{neg}\left(x\right)\right)\right) \]
        2. neg-lowering-neg.f6462.6%

          \[\leadsto \mathsf{/.f64}\left(p, \mathsf{neg.f64}\left(x\right)\right) \]
      3. Applied egg-rr62.6%

        \[\leadsto \frac{p}{\color{blue}{-x}} \]

      if -0.5 < (/.f64 x (sqrt.f64 (+.f64 (*.f64 (*.f64 #s(literal 4 binary64) p) p) (*.f64 x x))))

      1. Initial program 100.0%

        \[\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)} \]
      2. Add Preprocessing
    10. Recombined 2 regimes into one program.
    11. Final simplification90.5%

      \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{x}{\sqrt{p \cdot \left(4 \cdot p\right) + x \cdot x}} \leq -0.5:\\ \;\;\;\;0 - \frac{p}{x}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{0.5 \cdot \left(\frac{x}{\sqrt{p \cdot \left(4 \cdot p\right) + x \cdot x}} + 1\right)}\\ \end{array} \]
    12. Add Preprocessing

    Alternative 2: 75.1% accurate, 1.6× speedup?

    \[\begin{array}{l} p_m = \left|p\right| \\ \begin{array}{l} \mathbf{if}\;x \leq -1.55 \cdot 10^{-86}:\\ \;\;\;\;0 - \frac{p\_m}{x}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{0.5 + \frac{x \cdot 0.5}{x + \left(p\_m \cdot p\_m\right) \cdot \left(\frac{\left(p\_m \cdot p\_m\right) \cdot -2}{x \cdot \left(x \cdot x\right)} + \frac{2}{x}\right)}}\\ \end{array} \end{array} \]
    p_m = (fabs.f64 p)
    (FPCore (p_m x)
     :precision binary64
     (if (<= x -1.55e-86)
       (- 0.0 (/ p_m x))
       (sqrt
        (+
         0.5
         (/
          (* x 0.5)
          (+
           x
           (*
            (* p_m p_m)
            (+ (/ (* (* p_m p_m) -2.0) (* x (* x x))) (/ 2.0 x)))))))))
    p_m = fabs(p);
    double code(double p_m, double x) {
    	double tmp;
    	if (x <= -1.55e-86) {
    		tmp = 0.0 - (p_m / x);
    	} else {
    		tmp = sqrt((0.5 + ((x * 0.5) / (x + ((p_m * p_m) * ((((p_m * p_m) * -2.0) / (x * (x * x))) + (2.0 / x)))))));
    	}
    	return tmp;
    }
    
    p_m = abs(p)
    real(8) function code(p_m, x)
        real(8), intent (in) :: p_m
        real(8), intent (in) :: x
        real(8) :: tmp
        if (x <= (-1.55d-86)) then
            tmp = 0.0d0 - (p_m / x)
        else
            tmp = sqrt((0.5d0 + ((x * 0.5d0) / (x + ((p_m * p_m) * ((((p_m * p_m) * (-2.0d0)) / (x * (x * x))) + (2.0d0 / x)))))))
        end if
        code = tmp
    end function
    
    p_m = Math.abs(p);
    public static double code(double p_m, double x) {
    	double tmp;
    	if (x <= -1.55e-86) {
    		tmp = 0.0 - (p_m / x);
    	} else {
    		tmp = Math.sqrt((0.5 + ((x * 0.5) / (x + ((p_m * p_m) * ((((p_m * p_m) * -2.0) / (x * (x * x))) + (2.0 / x)))))));
    	}
    	return tmp;
    }
    
    p_m = math.fabs(p)
    def code(p_m, x):
    	tmp = 0
    	if x <= -1.55e-86:
    		tmp = 0.0 - (p_m / x)
    	else:
    		tmp = math.sqrt((0.5 + ((x * 0.5) / (x + ((p_m * p_m) * ((((p_m * p_m) * -2.0) / (x * (x * x))) + (2.0 / x)))))))
    	return tmp
    
    p_m = abs(p)
    function code(p_m, x)
    	tmp = 0.0
    	if (x <= -1.55e-86)
    		tmp = Float64(0.0 - Float64(p_m / x));
    	else
    		tmp = sqrt(Float64(0.5 + Float64(Float64(x * 0.5) / Float64(x + Float64(Float64(p_m * p_m) * Float64(Float64(Float64(Float64(p_m * p_m) * -2.0) / Float64(x * Float64(x * x))) + Float64(2.0 / x)))))));
    	end
    	return tmp
    end
    
    p_m = abs(p);
    function tmp_2 = code(p_m, x)
    	tmp = 0.0;
    	if (x <= -1.55e-86)
    		tmp = 0.0 - (p_m / x);
    	else
    		tmp = sqrt((0.5 + ((x * 0.5) / (x + ((p_m * p_m) * ((((p_m * p_m) * -2.0) / (x * (x * x))) + (2.0 / x)))))));
    	end
    	tmp_2 = tmp;
    end
    
    p_m = N[Abs[p], $MachinePrecision]
    code[p$95$m_, x_] := If[LessEqual[x, -1.55e-86], N[(0.0 - N[(p$95$m / x), $MachinePrecision]), $MachinePrecision], N[Sqrt[N[(0.5 + N[(N[(x * 0.5), $MachinePrecision] / N[(x + N[(N[(p$95$m * p$95$m), $MachinePrecision] * N[(N[(N[(N[(p$95$m * p$95$m), $MachinePrecision] * -2.0), $MachinePrecision] / N[(x * N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(2.0 / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]
    
    \begin{array}{l}
    p_m = \left|p\right|
    
    \\
    \begin{array}{l}
    \mathbf{if}\;x \leq -1.55 \cdot 10^{-86}:\\
    \;\;\;\;0 - \frac{p\_m}{x}\\
    
    \mathbf{else}:\\
    \;\;\;\;\sqrt{0.5 + \frac{x \cdot 0.5}{x + \left(p\_m \cdot p\_m\right) \cdot \left(\frac{\left(p\_m \cdot p\_m\right) \cdot -2}{x \cdot \left(x \cdot x\right)} + \frac{2}{x}\right)}}\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 2 regimes
    2. if x < -1.54999999999999994e-86

      1. Initial program 50.3%

        \[\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)} \]
      2. Step-by-step derivation
        1. sqrt-lowering-sqrt.f64N/A

          \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
        2. distribute-rgt-inN/A

          \[\leadsto \mathsf{sqrt.f64}\left(\left(1 \cdot \frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
        3. metadata-evalN/A

          \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
        4. +-lowering-+.f64N/A

          \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right)\right) \]
        5. *-commutativeN/A

          \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{1}{2} \cdot \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
        6. associate-*r/N/A

          \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{\frac{1}{2} \cdot x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
        7. /-lowering-/.f64N/A

          \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\left(\frac{1}{2} \cdot x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
        8. *-lowering-*.f64N/A

          \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
        9. sqrt-lowering-sqrt.f64N/A

          \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\left(\left(4 \cdot p\right) \cdot p + x \cdot x\right)\right)\right)\right)\right) \]
        10. +-lowering-+.f64N/A

          \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(\left(4 \cdot p\right) \cdot p\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
        11. associate-*l*N/A

          \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(4 \cdot \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
        12. *-lowering-*.f64N/A

          \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
        13. *-lowering-*.f64N/A

          \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
        14. *-lowering-*.f6450.3%

          \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \mathsf{*.f64}\left(x, x\right)\right)\right)\right)\right)\right) \]
      3. Simplified50.3%

        \[\leadsto \color{blue}{\sqrt{0.5 + \frac{0.5 \cdot x}{\sqrt{4 \cdot \left(p \cdot p\right) + x \cdot x}}}} \]
      4. Add Preprocessing
      5. Taylor expanded in x around -inf

        \[\leadsto \color{blue}{-1 \cdot \frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{x}} \]
      6. Step-by-step derivation
        1. mul-1-negN/A

          \[\leadsto \mathsf{neg}\left(\frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{x}\right) \]
        2. distribute-neg-frac2N/A

          \[\leadsto \frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{\color{blue}{\mathsf{neg}\left(x\right)}} \]
        3. mul-1-negN/A

          \[\leadsto \frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{-1 \cdot \color{blue}{x}} \]
        4. /-lowering-/.f64N/A

          \[\leadsto \mathsf{/.f64}\left(\left(p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}\right), \color{blue}{\left(-1 \cdot x\right)}\right) \]
      7. Simplified30.8%

        \[\leadsto \color{blue}{\frac{p + \frac{0.125 \cdot \left(\left(\left(p \cdot p\right) \cdot \left(p \cdot p\right)\right) \cdot -12\right)}{x \cdot \left(x \cdot p\right)}}{0 - x}} \]
      8. Taylor expanded in p around 0

        \[\leadsto \mathsf{/.f64}\left(\color{blue}{p}, \mathsf{\_.f64}\left(0, x\right)\right) \]
      9. Step-by-step derivation
        1. Simplified39.3%

          \[\leadsto \frac{\color{blue}{p}}{0 - x} \]
        2. Step-by-step derivation
          1. sub0-negN/A

            \[\leadsto \mathsf{/.f64}\left(p, \left(\mathsf{neg}\left(x\right)\right)\right) \]
          2. neg-lowering-neg.f6439.3%

            \[\leadsto \mathsf{/.f64}\left(p, \mathsf{neg.f64}\left(x\right)\right) \]
        3. Applied egg-rr39.3%

          \[\leadsto \frac{p}{\color{blue}{-x}} \]

        if -1.54999999999999994e-86 < x

        1. Initial program 93.0%

          \[\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)} \]
        2. Step-by-step derivation
          1. sqrt-lowering-sqrt.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
          2. distribute-rgt-inN/A

            \[\leadsto \mathsf{sqrt.f64}\left(\left(1 \cdot \frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
          3. metadata-evalN/A

            \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
          4. +-lowering-+.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right)\right) \]
          5. *-commutativeN/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{1}{2} \cdot \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
          6. associate-*r/N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{\frac{1}{2} \cdot x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
          7. /-lowering-/.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\left(\frac{1}{2} \cdot x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
          8. *-lowering-*.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
          9. sqrt-lowering-sqrt.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\left(\left(4 \cdot p\right) \cdot p + x \cdot x\right)\right)\right)\right)\right) \]
          10. +-lowering-+.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(\left(4 \cdot p\right) \cdot p\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
          11. associate-*l*N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(4 \cdot \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
          12. *-lowering-*.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
          13. *-lowering-*.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
          14. *-lowering-*.f6493.0%

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \mathsf{*.f64}\left(x, x\right)\right)\right)\right)\right)\right) \]
        3. Simplified93.0%

          \[\leadsto \color{blue}{\sqrt{0.5 + \frac{0.5 \cdot x}{\sqrt{4 \cdot \left(p \cdot p\right) + x \cdot x}}}} \]
        4. Add Preprocessing
        5. Taylor expanded in p around 0

          \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \color{blue}{\left(x + {p}^{2} \cdot \left(-2 \cdot \frac{{p}^{2}}{{x}^{3}} + 2 \cdot \frac{1}{x}\right)\right)}\right)\right)\right) \]
        6. Step-by-step derivation
          1. +-lowering-+.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \left({p}^{2} \cdot \left(-2 \cdot \frac{{p}^{2}}{{x}^{3}} + 2 \cdot \frac{1}{x}\right)\right)\right)\right)\right)\right) \]
          2. *-lowering-*.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\left({p}^{2}\right), \left(-2 \cdot \frac{{p}^{2}}{{x}^{3}} + 2 \cdot \frac{1}{x}\right)\right)\right)\right)\right)\right) \]
          3. unpow2N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\left(p \cdot p\right), \left(-2 \cdot \frac{{p}^{2}}{{x}^{3}} + 2 \cdot \frac{1}{x}\right)\right)\right)\right)\right)\right) \]
          4. *-lowering-*.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), \left(-2 \cdot \frac{{p}^{2}}{{x}^{3}} + 2 \cdot \frac{1}{x}\right)\right)\right)\right)\right)\right) \]
          5. +-lowering-+.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), \mathsf{+.f64}\left(\left(-2 \cdot \frac{{p}^{2}}{{x}^{3}}\right), \left(2 \cdot \frac{1}{x}\right)\right)\right)\right)\right)\right)\right) \]
          6. associate-*r/N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), \mathsf{+.f64}\left(\left(\frac{-2 \cdot {p}^{2}}{{x}^{3}}\right), \left(2 \cdot \frac{1}{x}\right)\right)\right)\right)\right)\right)\right) \]
          7. /-lowering-/.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), \mathsf{+.f64}\left(\mathsf{/.f64}\left(\left(-2 \cdot {p}^{2}\right), \left({x}^{3}\right)\right), \left(2 \cdot \frac{1}{x}\right)\right)\right)\right)\right)\right)\right) \]
          8. *-commutativeN/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), \mathsf{+.f64}\left(\mathsf{/.f64}\left(\left({p}^{2} \cdot -2\right), \left({x}^{3}\right)\right), \left(2 \cdot \frac{1}{x}\right)\right)\right)\right)\right)\right)\right) \]
          9. *-lowering-*.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), \mathsf{+.f64}\left(\mathsf{/.f64}\left(\mathsf{*.f64}\left(\left({p}^{2}\right), -2\right), \left({x}^{3}\right)\right), \left(2 \cdot \frac{1}{x}\right)\right)\right)\right)\right)\right)\right) \]
          10. unpow2N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), \mathsf{+.f64}\left(\mathsf{/.f64}\left(\mathsf{*.f64}\left(\left(p \cdot p\right), -2\right), \left({x}^{3}\right)\right), \left(2 \cdot \frac{1}{x}\right)\right)\right)\right)\right)\right)\right) \]
          11. *-lowering-*.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), \mathsf{+.f64}\left(\mathsf{/.f64}\left(\mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), -2\right), \left({x}^{3}\right)\right), \left(2 \cdot \frac{1}{x}\right)\right)\right)\right)\right)\right)\right) \]
          12. cube-multN/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), \mathsf{+.f64}\left(\mathsf{/.f64}\left(\mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), -2\right), \left(x \cdot \left(x \cdot x\right)\right)\right), \left(2 \cdot \frac{1}{x}\right)\right)\right)\right)\right)\right)\right) \]
          13. unpow2N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), \mathsf{+.f64}\left(\mathsf{/.f64}\left(\mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), -2\right), \left(x \cdot {x}^{2}\right)\right), \left(2 \cdot \frac{1}{x}\right)\right)\right)\right)\right)\right)\right) \]
          14. *-lowering-*.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), \mathsf{+.f64}\left(\mathsf{/.f64}\left(\mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), -2\right), \mathsf{*.f64}\left(x, \left({x}^{2}\right)\right)\right), \left(2 \cdot \frac{1}{x}\right)\right)\right)\right)\right)\right)\right) \]
          15. unpow2N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), \mathsf{+.f64}\left(\mathsf{/.f64}\left(\mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), -2\right), \mathsf{*.f64}\left(x, \left(x \cdot x\right)\right)\right), \left(2 \cdot \frac{1}{x}\right)\right)\right)\right)\right)\right)\right) \]
          16. *-lowering-*.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), \mathsf{+.f64}\left(\mathsf{/.f64}\left(\mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), -2\right), \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(x, x\right)\right)\right), \left(2 \cdot \frac{1}{x}\right)\right)\right)\right)\right)\right)\right) \]
          17. associate-*r/N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), \mathsf{+.f64}\left(\mathsf{/.f64}\left(\mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), -2\right), \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(x, x\right)\right)\right), \left(\frac{2 \cdot 1}{x}\right)\right)\right)\right)\right)\right)\right) \]
          18. metadata-evalN/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), \mathsf{+.f64}\left(\mathsf{/.f64}\left(\mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), -2\right), \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(x, x\right)\right)\right), \left(\frac{2}{x}\right)\right)\right)\right)\right)\right)\right) \]
          19. /-lowering-/.f6484.4%

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(x, \mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), \mathsf{+.f64}\left(\mathsf{/.f64}\left(\mathsf{*.f64}\left(\mathsf{*.f64}\left(p, p\right), -2\right), \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(x, x\right)\right)\right), \mathsf{/.f64}\left(2, x\right)\right)\right)\right)\right)\right)\right) \]
        7. Simplified84.4%

          \[\leadsto \sqrt{0.5 + \frac{0.5 \cdot x}{\color{blue}{x + \left(p \cdot p\right) \cdot \left(\frac{\left(p \cdot p\right) \cdot -2}{x \cdot \left(x \cdot x\right)} + \frac{2}{x}\right)}}} \]
      10. Recombined 2 regimes into one program.
      11. Final simplification68.3%

        \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -1.55 \cdot 10^{-86}:\\ \;\;\;\;0 - \frac{p}{x}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{0.5 + \frac{x \cdot 0.5}{x + \left(p \cdot p\right) \cdot \left(\frac{\left(p \cdot p\right) \cdot -2}{x \cdot \left(x \cdot x\right)} + \frac{2}{x}\right)}}\\ \end{array} \]
      12. Add Preprocessing

      Alternative 3: 69.8% accurate, 1.7× speedup?

      \[\begin{array}{l} p_m = \left|p\right| \\ \begin{array}{l} \mathbf{if}\;p\_m \leq 2.9 \cdot 10^{-114}:\\ \;\;\;\;0 - \frac{p\_m}{x}\\ \mathbf{elif}\;p\_m \leq 2.95 \cdot 10^{-34}:\\ \;\;\;\;1\\ \mathbf{else}:\\ \;\;\;\;\sqrt{0.5 + \frac{x \cdot 0.5}{p\_m \cdot 2 + x \cdot \left(x \cdot \frac{0.25}{p\_m}\right)}}\\ \end{array} \end{array} \]
      p_m = (fabs.f64 p)
      (FPCore (p_m x)
       :precision binary64
       (if (<= p_m 2.9e-114)
         (- 0.0 (/ p_m x))
         (if (<= p_m 2.95e-34)
           1.0
           (sqrt (+ 0.5 (/ (* x 0.5) (+ (* p_m 2.0) (* x (* x (/ 0.25 p_m))))))))))
      p_m = fabs(p);
      double code(double p_m, double x) {
      	double tmp;
      	if (p_m <= 2.9e-114) {
      		tmp = 0.0 - (p_m / x);
      	} else if (p_m <= 2.95e-34) {
      		tmp = 1.0;
      	} else {
      		tmp = sqrt((0.5 + ((x * 0.5) / ((p_m * 2.0) + (x * (x * (0.25 / p_m)))))));
      	}
      	return tmp;
      }
      
      p_m = abs(p)
      real(8) function code(p_m, x)
          real(8), intent (in) :: p_m
          real(8), intent (in) :: x
          real(8) :: tmp
          if (p_m <= 2.9d-114) then
              tmp = 0.0d0 - (p_m / x)
          else if (p_m <= 2.95d-34) then
              tmp = 1.0d0
          else
              tmp = sqrt((0.5d0 + ((x * 0.5d0) / ((p_m * 2.0d0) + (x * (x * (0.25d0 / p_m)))))))
          end if
          code = tmp
      end function
      
      p_m = Math.abs(p);
      public static double code(double p_m, double x) {
      	double tmp;
      	if (p_m <= 2.9e-114) {
      		tmp = 0.0 - (p_m / x);
      	} else if (p_m <= 2.95e-34) {
      		tmp = 1.0;
      	} else {
      		tmp = Math.sqrt((0.5 + ((x * 0.5) / ((p_m * 2.0) + (x * (x * (0.25 / p_m)))))));
      	}
      	return tmp;
      }
      
      p_m = math.fabs(p)
      def code(p_m, x):
      	tmp = 0
      	if p_m <= 2.9e-114:
      		tmp = 0.0 - (p_m / x)
      	elif p_m <= 2.95e-34:
      		tmp = 1.0
      	else:
      		tmp = math.sqrt((0.5 + ((x * 0.5) / ((p_m * 2.0) + (x * (x * (0.25 / p_m)))))))
      	return tmp
      
      p_m = abs(p)
      function code(p_m, x)
      	tmp = 0.0
      	if (p_m <= 2.9e-114)
      		tmp = Float64(0.0 - Float64(p_m / x));
      	elseif (p_m <= 2.95e-34)
      		tmp = 1.0;
      	else
      		tmp = sqrt(Float64(0.5 + Float64(Float64(x * 0.5) / Float64(Float64(p_m * 2.0) + Float64(x * Float64(x * Float64(0.25 / p_m)))))));
      	end
      	return tmp
      end
      
      p_m = abs(p);
      function tmp_2 = code(p_m, x)
      	tmp = 0.0;
      	if (p_m <= 2.9e-114)
      		tmp = 0.0 - (p_m / x);
      	elseif (p_m <= 2.95e-34)
      		tmp = 1.0;
      	else
      		tmp = sqrt((0.5 + ((x * 0.5) / ((p_m * 2.0) + (x * (x * (0.25 / p_m)))))));
      	end
      	tmp_2 = tmp;
      end
      
      p_m = N[Abs[p], $MachinePrecision]
      code[p$95$m_, x_] := If[LessEqual[p$95$m, 2.9e-114], N[(0.0 - N[(p$95$m / x), $MachinePrecision]), $MachinePrecision], If[LessEqual[p$95$m, 2.95e-34], 1.0, N[Sqrt[N[(0.5 + N[(N[(x * 0.5), $MachinePrecision] / N[(N[(p$95$m * 2.0), $MachinePrecision] + N[(x * N[(x * N[(0.25 / p$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]]
      
      \begin{array}{l}
      p_m = \left|p\right|
      
      \\
      \begin{array}{l}
      \mathbf{if}\;p\_m \leq 2.9 \cdot 10^{-114}:\\
      \;\;\;\;0 - \frac{p\_m}{x}\\
      
      \mathbf{elif}\;p\_m \leq 2.95 \cdot 10^{-34}:\\
      \;\;\;\;1\\
      
      \mathbf{else}:\\
      \;\;\;\;\sqrt{0.5 + \frac{x \cdot 0.5}{p\_m \cdot 2 + x \cdot \left(x \cdot \frac{0.25}{p\_m}\right)}}\\
      
      
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 3 regimes
      2. if p < 2.89999999999999997e-114

        1. Initial program 72.4%

          \[\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)} \]
        2. Step-by-step derivation
          1. sqrt-lowering-sqrt.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
          2. distribute-rgt-inN/A

            \[\leadsto \mathsf{sqrt.f64}\left(\left(1 \cdot \frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
          3. metadata-evalN/A

            \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
          4. +-lowering-+.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right)\right) \]
          5. *-commutativeN/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{1}{2} \cdot \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
          6. associate-*r/N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{\frac{1}{2} \cdot x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
          7. /-lowering-/.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\left(\frac{1}{2} \cdot x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
          8. *-lowering-*.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
          9. sqrt-lowering-sqrt.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\left(\left(4 \cdot p\right) \cdot p + x \cdot x\right)\right)\right)\right)\right) \]
          10. +-lowering-+.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(\left(4 \cdot p\right) \cdot p\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
          11. associate-*l*N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(4 \cdot \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
          12. *-lowering-*.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
          13. *-lowering-*.f64N/A

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
          14. *-lowering-*.f6472.4%

            \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \mathsf{*.f64}\left(x, x\right)\right)\right)\right)\right)\right) \]
        3. Simplified72.4%

          \[\leadsto \color{blue}{\sqrt{0.5 + \frac{0.5 \cdot x}{\sqrt{4 \cdot \left(p \cdot p\right) + x \cdot x}}}} \]
        4. Add Preprocessing
        5. Taylor expanded in x around -inf

          \[\leadsto \color{blue}{-1 \cdot \frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{x}} \]
        6. Step-by-step derivation
          1. mul-1-negN/A

            \[\leadsto \mathsf{neg}\left(\frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{x}\right) \]
          2. distribute-neg-frac2N/A

            \[\leadsto \frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{\color{blue}{\mathsf{neg}\left(x\right)}} \]
          3. mul-1-negN/A

            \[\leadsto \frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{-1 \cdot \color{blue}{x}} \]
          4. /-lowering-/.f64N/A

            \[\leadsto \mathsf{/.f64}\left(\left(p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}\right), \color{blue}{\left(-1 \cdot x\right)}\right) \]
        7. Simplified11.7%

          \[\leadsto \color{blue}{\frac{p + \frac{0.125 \cdot \left(\left(\left(p \cdot p\right) \cdot \left(p \cdot p\right)\right) \cdot -12\right)}{x \cdot \left(x \cdot p\right)}}{0 - x}} \]
        8. Taylor expanded in p around 0

          \[\leadsto \mathsf{/.f64}\left(\color{blue}{p}, \mathsf{\_.f64}\left(0, x\right)\right) \]
        9. Step-by-step derivation
          1. Simplified20.1%

            \[\leadsto \frac{\color{blue}{p}}{0 - x} \]
          2. Step-by-step derivation
            1. sub0-negN/A

              \[\leadsto \mathsf{/.f64}\left(p, \left(\mathsf{neg}\left(x\right)\right)\right) \]
            2. neg-lowering-neg.f6420.1%

              \[\leadsto \mathsf{/.f64}\left(p, \mathsf{neg.f64}\left(x\right)\right) \]
          3. Applied egg-rr20.1%

            \[\leadsto \frac{p}{\color{blue}{-x}} \]

          if 2.89999999999999997e-114 < p < 2.9500000000000001e-34

          1. Initial program 72.7%

            \[\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)} \]
          2. Step-by-step derivation
            1. sqrt-lowering-sqrt.f64N/A

              \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
            2. distribute-rgt-inN/A

              \[\leadsto \mathsf{sqrt.f64}\left(\left(1 \cdot \frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
            3. metadata-evalN/A

              \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
            4. +-lowering-+.f64N/A

              \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right)\right) \]
            5. *-commutativeN/A

              \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{1}{2} \cdot \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
            6. associate-*r/N/A

              \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{\frac{1}{2} \cdot x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
            7. /-lowering-/.f64N/A

              \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\left(\frac{1}{2} \cdot x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
            8. *-lowering-*.f64N/A

              \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
            9. sqrt-lowering-sqrt.f64N/A

              \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\left(\left(4 \cdot p\right) \cdot p + x \cdot x\right)\right)\right)\right)\right) \]
            10. +-lowering-+.f64N/A

              \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(\left(4 \cdot p\right) \cdot p\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
            11. associate-*l*N/A

              \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(4 \cdot \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
            12. *-lowering-*.f64N/A

              \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
            13. *-lowering-*.f64N/A

              \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
            14. *-lowering-*.f6472.7%

              \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \mathsf{*.f64}\left(x, x\right)\right)\right)\right)\right)\right) \]
          3. Simplified72.7%

            \[\leadsto \color{blue}{\sqrt{0.5 + \frac{0.5 \cdot x}{\sqrt{4 \cdot \left(p \cdot p\right) + x \cdot x}}}} \]
          4. Add Preprocessing
          5. Taylor expanded in x around inf

            \[\leadsto \color{blue}{1} \]
          6. Step-by-step derivation
            1. Simplified57.9%

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

            if 2.9500000000000001e-34 < p

            1. Initial program 91.9%

              \[\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)} \]
            2. Step-by-step derivation
              1. sqrt-lowering-sqrt.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
              2. distribute-rgt-inN/A

                \[\leadsto \mathsf{sqrt.f64}\left(\left(1 \cdot \frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
              3. metadata-evalN/A

                \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
              4. +-lowering-+.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right)\right) \]
              5. *-commutativeN/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{1}{2} \cdot \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
              6. associate-*r/N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{\frac{1}{2} \cdot x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
              7. /-lowering-/.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\left(\frac{1}{2} \cdot x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
              8. *-lowering-*.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
              9. sqrt-lowering-sqrt.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\left(\left(4 \cdot p\right) \cdot p + x \cdot x\right)\right)\right)\right)\right) \]
              10. +-lowering-+.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(\left(4 \cdot p\right) \cdot p\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
              11. associate-*l*N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(4 \cdot \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
              12. *-lowering-*.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
              13. *-lowering-*.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
              14. *-lowering-*.f6491.9%

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \mathsf{*.f64}\left(x, x\right)\right)\right)\right)\right)\right) \]
            3. Simplified91.9%

              \[\leadsto \color{blue}{\sqrt{0.5 + \frac{0.5 \cdot x}{\sqrt{4 \cdot \left(p \cdot p\right) + x \cdot x}}}} \]
            4. Add Preprocessing
            5. Taylor expanded in x around 0

              \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \color{blue}{\left(\frac{1}{4} \cdot \frac{{x}^{2}}{p} + 2 \cdot p\right)}\right)\right)\right) \]
            6. Step-by-step derivation
              1. +-commutativeN/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(2 \cdot p + \frac{1}{4} \cdot \frac{{x}^{2}}{p}\right)\right)\right)\right) \]
              2. associate-*r/N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(2 \cdot p + \frac{\frac{1}{4} \cdot {x}^{2}}{p}\right)\right)\right)\right) \]
              3. associate-*l/N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(2 \cdot p + \frac{\frac{1}{4}}{p} \cdot {x}^{2}\right)\right)\right)\right) \]
              4. metadata-evalN/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(2 \cdot p + \frac{\frac{1}{4} \cdot 1}{p} \cdot {x}^{2}\right)\right)\right)\right) \]
              5. associate-*r/N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(2 \cdot p + \left(\frac{1}{4} \cdot \frac{1}{p}\right) \cdot {x}^{2}\right)\right)\right)\right) \]
              6. +-lowering-+.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\left(2 \cdot p\right), \left(\left(\frac{1}{4} \cdot \frac{1}{p}\right) \cdot {x}^{2}\right)\right)\right)\right)\right) \]
              7. *-commutativeN/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\left(p \cdot 2\right), \left(\left(\frac{1}{4} \cdot \frac{1}{p}\right) \cdot {x}^{2}\right)\right)\right)\right)\right) \]
              8. *-lowering-*.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \left(\left(\frac{1}{4} \cdot \frac{1}{p}\right) \cdot {x}^{2}\right)\right)\right)\right)\right) \]
              9. *-commutativeN/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \left({x}^{2} \cdot \left(\frac{1}{4} \cdot \frac{1}{p}\right)\right)\right)\right)\right)\right) \]
              10. unpow2N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \left(\left(x \cdot x\right) \cdot \left(\frac{1}{4} \cdot \frac{1}{p}\right)\right)\right)\right)\right)\right) \]
              11. associate-*l*N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \left(x \cdot \left(x \cdot \left(\frac{1}{4} \cdot \frac{1}{p}\right)\right)\right)\right)\right)\right)\right) \]
              12. associate-*r/N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \left(x \cdot \left(x \cdot \frac{\frac{1}{4} \cdot 1}{p}\right)\right)\right)\right)\right)\right) \]
              13. metadata-evalN/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \left(x \cdot \left(x \cdot \frac{\frac{1}{4}}{p}\right)\right)\right)\right)\right)\right) \]
              14. associate-*r/N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \left(x \cdot \frac{x \cdot \frac{1}{4}}{p}\right)\right)\right)\right)\right) \]
              15. *-commutativeN/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \left(x \cdot \frac{\frac{1}{4} \cdot x}{p}\right)\right)\right)\right)\right) \]
              16. associate-*r/N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \left(x \cdot \left(\frac{1}{4} \cdot \frac{x}{p}\right)\right)\right)\right)\right)\right) \]
              17. *-lowering-*.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \mathsf{*.f64}\left(x, \left(\frac{1}{4} \cdot \frac{x}{p}\right)\right)\right)\right)\right)\right) \]
              18. associate-*r/N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \mathsf{*.f64}\left(x, \left(\frac{\frac{1}{4} \cdot x}{p}\right)\right)\right)\right)\right)\right) \]
              19. *-commutativeN/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \mathsf{*.f64}\left(x, \left(\frac{x \cdot \frac{1}{4}}{p}\right)\right)\right)\right)\right)\right) \]
              20. associate-*r/N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \mathsf{*.f64}\left(x, \left(x \cdot \frac{\frac{1}{4}}{p}\right)\right)\right)\right)\right)\right) \]
              21. metadata-evalN/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \mathsf{*.f64}\left(x, \left(x \cdot \frac{\frac{1}{4} \cdot 1}{p}\right)\right)\right)\right)\right)\right) \]
              22. associate-*r/N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \mathsf{*.f64}\left(x, \left(x \cdot \left(\frac{1}{4} \cdot \frac{1}{p}\right)\right)\right)\right)\right)\right)\right) \]
              23. *-lowering-*.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(x, \left(\frac{1}{4} \cdot \frac{1}{p}\right)\right)\right)\right)\right)\right)\right) \]
              24. associate-*r/N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(x, \left(\frac{\frac{1}{4} \cdot 1}{p}\right)\right)\right)\right)\right)\right)\right) \]
              25. metadata-evalN/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(x, \left(\frac{\frac{1}{4}}{p}\right)\right)\right)\right)\right)\right)\right) \]
              26. /-lowering-/.f6481.7%

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(p, 2\right), \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(x, \mathsf{/.f64}\left(\frac{1}{4}, p\right)\right)\right)\right)\right)\right)\right) \]
            7. Simplified81.7%

              \[\leadsto \sqrt{0.5 + \frac{0.5 \cdot x}{\color{blue}{p \cdot 2 + x \cdot \left(x \cdot \frac{0.25}{p}\right)}}} \]
          7. Recombined 3 regimes into one program.
          8. Final simplification40.3%

            \[\leadsto \begin{array}{l} \mathbf{if}\;p \leq 2.9 \cdot 10^{-114}:\\ \;\;\;\;0 - \frac{p}{x}\\ \mathbf{elif}\;p \leq 2.95 \cdot 10^{-34}:\\ \;\;\;\;1\\ \mathbf{else}:\\ \;\;\;\;\sqrt{0.5 + \frac{x \cdot 0.5}{p \cdot 2 + x \cdot \left(x \cdot \frac{0.25}{p}\right)}}\\ \end{array} \]
          9. Add Preprocessing

          Alternative 4: 69.3% accurate, 1.9× speedup?

          \[\begin{array}{l} p_m = \left|p\right| \\ \begin{array}{l} \mathbf{if}\;p\_m \leq 4.4 \cdot 10^{-114}:\\ \;\;\;\;0 - \frac{p\_m}{x}\\ \mathbf{elif}\;p\_m \leq 1.05 \cdot 10^{-28}:\\ \;\;\;\;1\\ \mathbf{else}:\\ \;\;\;\;\sqrt{0.5}\\ \end{array} \end{array} \]
          p_m = (fabs.f64 p)
          (FPCore (p_m x)
           :precision binary64
           (if (<= p_m 4.4e-114)
             (- 0.0 (/ p_m x))
             (if (<= p_m 1.05e-28) 1.0 (sqrt 0.5))))
          p_m = fabs(p);
          double code(double p_m, double x) {
          	double tmp;
          	if (p_m <= 4.4e-114) {
          		tmp = 0.0 - (p_m / x);
          	} else if (p_m <= 1.05e-28) {
          		tmp = 1.0;
          	} else {
          		tmp = sqrt(0.5);
          	}
          	return tmp;
          }
          
          p_m = abs(p)
          real(8) function code(p_m, x)
              real(8), intent (in) :: p_m
              real(8), intent (in) :: x
              real(8) :: tmp
              if (p_m <= 4.4d-114) then
                  tmp = 0.0d0 - (p_m / x)
              else if (p_m <= 1.05d-28) then
                  tmp = 1.0d0
              else
                  tmp = sqrt(0.5d0)
              end if
              code = tmp
          end function
          
          p_m = Math.abs(p);
          public static double code(double p_m, double x) {
          	double tmp;
          	if (p_m <= 4.4e-114) {
          		tmp = 0.0 - (p_m / x);
          	} else if (p_m <= 1.05e-28) {
          		tmp = 1.0;
          	} else {
          		tmp = Math.sqrt(0.5);
          	}
          	return tmp;
          }
          
          p_m = math.fabs(p)
          def code(p_m, x):
          	tmp = 0
          	if p_m <= 4.4e-114:
          		tmp = 0.0 - (p_m / x)
          	elif p_m <= 1.05e-28:
          		tmp = 1.0
          	else:
          		tmp = math.sqrt(0.5)
          	return tmp
          
          p_m = abs(p)
          function code(p_m, x)
          	tmp = 0.0
          	if (p_m <= 4.4e-114)
          		tmp = Float64(0.0 - Float64(p_m / x));
          	elseif (p_m <= 1.05e-28)
          		tmp = 1.0;
          	else
          		tmp = sqrt(0.5);
          	end
          	return tmp
          end
          
          p_m = abs(p);
          function tmp_2 = code(p_m, x)
          	tmp = 0.0;
          	if (p_m <= 4.4e-114)
          		tmp = 0.0 - (p_m / x);
          	elseif (p_m <= 1.05e-28)
          		tmp = 1.0;
          	else
          		tmp = sqrt(0.5);
          	end
          	tmp_2 = tmp;
          end
          
          p_m = N[Abs[p], $MachinePrecision]
          code[p$95$m_, x_] := If[LessEqual[p$95$m, 4.4e-114], N[(0.0 - N[(p$95$m / x), $MachinePrecision]), $MachinePrecision], If[LessEqual[p$95$m, 1.05e-28], 1.0, N[Sqrt[0.5], $MachinePrecision]]]
          
          \begin{array}{l}
          p_m = \left|p\right|
          
          \\
          \begin{array}{l}
          \mathbf{if}\;p\_m \leq 4.4 \cdot 10^{-114}:\\
          \;\;\;\;0 - \frac{p\_m}{x}\\
          
          \mathbf{elif}\;p\_m \leq 1.05 \cdot 10^{-28}:\\
          \;\;\;\;1\\
          
          \mathbf{else}:\\
          \;\;\;\;\sqrt{0.5}\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 3 regimes
          2. if p < 4.40000000000000022e-114

            1. Initial program 72.4%

              \[\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)} \]
            2. Step-by-step derivation
              1. sqrt-lowering-sqrt.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
              2. distribute-rgt-inN/A

                \[\leadsto \mathsf{sqrt.f64}\left(\left(1 \cdot \frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
              3. metadata-evalN/A

                \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
              4. +-lowering-+.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right)\right) \]
              5. *-commutativeN/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{1}{2} \cdot \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
              6. associate-*r/N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{\frac{1}{2} \cdot x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
              7. /-lowering-/.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\left(\frac{1}{2} \cdot x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
              8. *-lowering-*.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
              9. sqrt-lowering-sqrt.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\left(\left(4 \cdot p\right) \cdot p + x \cdot x\right)\right)\right)\right)\right) \]
              10. +-lowering-+.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(\left(4 \cdot p\right) \cdot p\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
              11. associate-*l*N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(4 \cdot \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
              12. *-lowering-*.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
              13. *-lowering-*.f64N/A

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
              14. *-lowering-*.f6472.4%

                \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \mathsf{*.f64}\left(x, x\right)\right)\right)\right)\right)\right) \]
            3. Simplified72.4%

              \[\leadsto \color{blue}{\sqrt{0.5 + \frac{0.5 \cdot x}{\sqrt{4 \cdot \left(p \cdot p\right) + x \cdot x}}}} \]
            4. Add Preprocessing
            5. Taylor expanded in x around -inf

              \[\leadsto \color{blue}{-1 \cdot \frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{x}} \]
            6. Step-by-step derivation
              1. mul-1-negN/A

                \[\leadsto \mathsf{neg}\left(\frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{x}\right) \]
              2. distribute-neg-frac2N/A

                \[\leadsto \frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{\color{blue}{\mathsf{neg}\left(x\right)}} \]
              3. mul-1-negN/A

                \[\leadsto \frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{-1 \cdot \color{blue}{x}} \]
              4. /-lowering-/.f64N/A

                \[\leadsto \mathsf{/.f64}\left(\left(p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}\right), \color{blue}{\left(-1 \cdot x\right)}\right) \]
            7. Simplified11.7%

              \[\leadsto \color{blue}{\frac{p + \frac{0.125 \cdot \left(\left(\left(p \cdot p\right) \cdot \left(p \cdot p\right)\right) \cdot -12\right)}{x \cdot \left(x \cdot p\right)}}{0 - x}} \]
            8. Taylor expanded in p around 0

              \[\leadsto \mathsf{/.f64}\left(\color{blue}{p}, \mathsf{\_.f64}\left(0, x\right)\right) \]
            9. Step-by-step derivation
              1. Simplified20.1%

                \[\leadsto \frac{\color{blue}{p}}{0 - x} \]
              2. Step-by-step derivation
                1. sub0-negN/A

                  \[\leadsto \mathsf{/.f64}\left(p, \left(\mathsf{neg}\left(x\right)\right)\right) \]
                2. neg-lowering-neg.f6420.1%

                  \[\leadsto \mathsf{/.f64}\left(p, \mathsf{neg.f64}\left(x\right)\right) \]
              3. Applied egg-rr20.1%

                \[\leadsto \frac{p}{\color{blue}{-x}} \]

              if 4.40000000000000022e-114 < p < 1.05000000000000003e-28

              1. Initial program 72.7%

                \[\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)} \]
              2. Step-by-step derivation
                1. sqrt-lowering-sqrt.f64N/A

                  \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
                2. distribute-rgt-inN/A

                  \[\leadsto \mathsf{sqrt.f64}\left(\left(1 \cdot \frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
                3. metadata-evalN/A

                  \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
                4. +-lowering-+.f64N/A

                  \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right)\right) \]
                5. *-commutativeN/A

                  \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{1}{2} \cdot \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
                6. associate-*r/N/A

                  \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{\frac{1}{2} \cdot x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
                7. /-lowering-/.f64N/A

                  \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\left(\frac{1}{2} \cdot x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
                8. *-lowering-*.f64N/A

                  \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
                9. sqrt-lowering-sqrt.f64N/A

                  \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\left(\left(4 \cdot p\right) \cdot p + x \cdot x\right)\right)\right)\right)\right) \]
                10. +-lowering-+.f64N/A

                  \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(\left(4 \cdot p\right) \cdot p\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                11. associate-*l*N/A

                  \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(4 \cdot \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                12. *-lowering-*.f64N/A

                  \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                13. *-lowering-*.f64N/A

                  \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                14. *-lowering-*.f6472.7%

                  \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \mathsf{*.f64}\left(x, x\right)\right)\right)\right)\right)\right) \]
              3. Simplified72.7%

                \[\leadsto \color{blue}{\sqrt{0.5 + \frac{0.5 \cdot x}{\sqrt{4 \cdot \left(p \cdot p\right) + x \cdot x}}}} \]
              4. Add Preprocessing
              5. Taylor expanded in x around inf

                \[\leadsto \color{blue}{1} \]
              6. Step-by-step derivation
                1. Simplified57.9%

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

                if 1.05000000000000003e-28 < p

                1. Initial program 91.9%

                  \[\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)} \]
                2. Step-by-step derivation
                  1. sqrt-lowering-sqrt.f64N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
                  2. distribute-rgt-inN/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\left(1 \cdot \frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
                  3. metadata-evalN/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
                  4. +-lowering-+.f64N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right)\right) \]
                  5. *-commutativeN/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{1}{2} \cdot \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
                  6. associate-*r/N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{\frac{1}{2} \cdot x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
                  7. /-lowering-/.f64N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\left(\frac{1}{2} \cdot x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
                  8. *-lowering-*.f64N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
                  9. sqrt-lowering-sqrt.f64N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\left(\left(4 \cdot p\right) \cdot p + x \cdot x\right)\right)\right)\right)\right) \]
                  10. +-lowering-+.f64N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(\left(4 \cdot p\right) \cdot p\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                  11. associate-*l*N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(4 \cdot \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                  12. *-lowering-*.f64N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                  13. *-lowering-*.f64N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                  14. *-lowering-*.f6491.9%

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \mathsf{*.f64}\left(x, x\right)\right)\right)\right)\right)\right) \]
                3. Simplified91.9%

                  \[\leadsto \color{blue}{\sqrt{0.5 + \frac{0.5 \cdot x}{\sqrt{4 \cdot \left(p \cdot p\right) + x \cdot x}}}} \]
                4. Add Preprocessing
                5. Taylor expanded in x around 0

                  \[\leadsto \color{blue}{\sqrt{\frac{1}{2}}} \]
                6. Step-by-step derivation
                  1. sqrt-lowering-sqrt.f6481.0%

                    \[\leadsto \mathsf{sqrt.f64}\left(\frac{1}{2}\right) \]
                7. Simplified81.0%

                  \[\leadsto \color{blue}{\sqrt{0.5}} \]
              7. Recombined 3 regimes into one program.
              8. Final simplification40.1%

                \[\leadsto \begin{array}{l} \mathbf{if}\;p \leq 4.4 \cdot 10^{-114}:\\ \;\;\;\;0 - \frac{p}{x}\\ \mathbf{elif}\;p \leq 1.05 \cdot 10^{-28}:\\ \;\;\;\;1\\ \mathbf{else}:\\ \;\;\;\;\sqrt{0.5}\\ \end{array} \]
              9. Add Preprocessing

              Alternative 5: 55.2% accurate, 21.5× speedup?

              \[\begin{array}{l} p_m = \left|p\right| \\ \begin{array}{l} \mathbf{if}\;x \leq -5.2 \cdot 10^{-143}:\\ \;\;\;\;0 - \frac{p\_m}{x}\\ \mathbf{else}:\\ \;\;\;\;1\\ \end{array} \end{array} \]
              p_m = (fabs.f64 p)
              (FPCore (p_m x)
               :precision binary64
               (if (<= x -5.2e-143) (- 0.0 (/ p_m x)) 1.0))
              p_m = fabs(p);
              double code(double p_m, double x) {
              	double tmp;
              	if (x <= -5.2e-143) {
              		tmp = 0.0 - (p_m / x);
              	} else {
              		tmp = 1.0;
              	}
              	return tmp;
              }
              
              p_m = abs(p)
              real(8) function code(p_m, x)
                  real(8), intent (in) :: p_m
                  real(8), intent (in) :: x
                  real(8) :: tmp
                  if (x <= (-5.2d-143)) then
                      tmp = 0.0d0 - (p_m / x)
                  else
                      tmp = 1.0d0
                  end if
                  code = tmp
              end function
              
              p_m = Math.abs(p);
              public static double code(double p_m, double x) {
              	double tmp;
              	if (x <= -5.2e-143) {
              		tmp = 0.0 - (p_m / x);
              	} else {
              		tmp = 1.0;
              	}
              	return tmp;
              }
              
              p_m = math.fabs(p)
              def code(p_m, x):
              	tmp = 0
              	if x <= -5.2e-143:
              		tmp = 0.0 - (p_m / x)
              	else:
              		tmp = 1.0
              	return tmp
              
              p_m = abs(p)
              function code(p_m, x)
              	tmp = 0.0
              	if (x <= -5.2e-143)
              		tmp = Float64(0.0 - Float64(p_m / x));
              	else
              		tmp = 1.0;
              	end
              	return tmp
              end
              
              p_m = abs(p);
              function tmp_2 = code(p_m, x)
              	tmp = 0.0;
              	if (x <= -5.2e-143)
              		tmp = 0.0 - (p_m / x);
              	else
              		tmp = 1.0;
              	end
              	tmp_2 = tmp;
              end
              
              p_m = N[Abs[p], $MachinePrecision]
              code[p$95$m_, x_] := If[LessEqual[x, -5.2e-143], N[(0.0 - N[(p$95$m / x), $MachinePrecision]), $MachinePrecision], 1.0]
              
              \begin{array}{l}
              p_m = \left|p\right|
              
              \\
              \begin{array}{l}
              \mathbf{if}\;x \leq -5.2 \cdot 10^{-143}:\\
              \;\;\;\;0 - \frac{p\_m}{x}\\
              
              \mathbf{else}:\\
              \;\;\;\;1\\
              
              
              \end{array}
              \end{array}
              
              Derivation
              1. Split input into 2 regimes
              2. if x < -5.19999999999999974e-143

                1. Initial program 53.9%

                  \[\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)} \]
                2. Step-by-step derivation
                  1. sqrt-lowering-sqrt.f64N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
                  2. distribute-rgt-inN/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\left(1 \cdot \frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
                  3. metadata-evalN/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
                  4. +-lowering-+.f64N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right)\right) \]
                  5. *-commutativeN/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{1}{2} \cdot \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
                  6. associate-*r/N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{\frac{1}{2} \cdot x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
                  7. /-lowering-/.f64N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\left(\frac{1}{2} \cdot x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
                  8. *-lowering-*.f64N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
                  9. sqrt-lowering-sqrt.f64N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\left(\left(4 \cdot p\right) \cdot p + x \cdot x\right)\right)\right)\right)\right) \]
                  10. +-lowering-+.f64N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(\left(4 \cdot p\right) \cdot p\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                  11. associate-*l*N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(4 \cdot \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                  12. *-lowering-*.f64N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                  13. *-lowering-*.f64N/A

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                  14. *-lowering-*.f6453.9%

                    \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \mathsf{*.f64}\left(x, x\right)\right)\right)\right)\right)\right) \]
                3. Simplified53.9%

                  \[\leadsto \color{blue}{\sqrt{0.5 + \frac{0.5 \cdot x}{\sqrt{4 \cdot \left(p \cdot p\right) + x \cdot x}}}} \]
                4. Add Preprocessing
                5. Taylor expanded in x around -inf

                  \[\leadsto \color{blue}{-1 \cdot \frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{x}} \]
                6. Step-by-step derivation
                  1. mul-1-negN/A

                    \[\leadsto \mathsf{neg}\left(\frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{x}\right) \]
                  2. distribute-neg-frac2N/A

                    \[\leadsto \frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{\color{blue}{\mathsf{neg}\left(x\right)}} \]
                  3. mul-1-negN/A

                    \[\leadsto \frac{p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}}{-1 \cdot \color{blue}{x}} \]
                  4. /-lowering-/.f64N/A

                    \[\leadsto \mathsf{/.f64}\left(\left(p + \frac{1}{8} \cdot \frac{-16 \cdot {p}^{4} + 4 \cdot {p}^{4}}{p \cdot {x}^{2}}\right), \color{blue}{\left(-1 \cdot x\right)}\right) \]
                7. Simplified23.1%

                  \[\leadsto \color{blue}{\frac{p + \frac{0.125 \cdot \left(\left(\left(p \cdot p\right) \cdot \left(p \cdot p\right)\right) \cdot -12\right)}{x \cdot \left(x \cdot p\right)}}{0 - x}} \]
                8. Taylor expanded in p around 0

                  \[\leadsto \mathsf{/.f64}\left(\color{blue}{p}, \mathsf{\_.f64}\left(0, x\right)\right) \]
                9. Step-by-step derivation
                  1. Simplified34.7%

                    \[\leadsto \frac{\color{blue}{p}}{0 - x} \]
                  2. Step-by-step derivation
                    1. sub0-negN/A

                      \[\leadsto \mathsf{/.f64}\left(p, \left(\mathsf{neg}\left(x\right)\right)\right) \]
                    2. neg-lowering-neg.f6434.7%

                      \[\leadsto \mathsf{/.f64}\left(p, \mathsf{neg.f64}\left(x\right)\right) \]
                  3. Applied egg-rr34.7%

                    \[\leadsto \frac{p}{\color{blue}{-x}} \]

                  if -5.19999999999999974e-143 < x

                  1. Initial program 100.0%

                    \[\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)} \]
                  2. Step-by-step derivation
                    1. sqrt-lowering-sqrt.f64N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
                    2. distribute-rgt-inN/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\left(1 \cdot \frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
                    3. metadata-evalN/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
                    4. +-lowering-+.f64N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right)\right) \]
                    5. *-commutativeN/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{1}{2} \cdot \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
                    6. associate-*r/N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{\frac{1}{2} \cdot x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
                    7. /-lowering-/.f64N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\left(\frac{1}{2} \cdot x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
                    8. *-lowering-*.f64N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
                    9. sqrt-lowering-sqrt.f64N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\left(\left(4 \cdot p\right) \cdot p + x \cdot x\right)\right)\right)\right)\right) \]
                    10. +-lowering-+.f64N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(\left(4 \cdot p\right) \cdot p\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                    11. associate-*l*N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(4 \cdot \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                    12. *-lowering-*.f64N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                    13. *-lowering-*.f64N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                    14. *-lowering-*.f64100.0%

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \mathsf{*.f64}\left(x, x\right)\right)\right)\right)\right)\right) \]
                  3. Simplified100.0%

                    \[\leadsto \color{blue}{\sqrt{0.5 + \frac{0.5 \cdot x}{\sqrt{4 \cdot \left(p \cdot p\right) + x \cdot x}}}} \]
                  4. Add Preprocessing
                  5. Taylor expanded in x around inf

                    \[\leadsto \color{blue}{1} \]
                  6. Step-by-step derivation
                    1. Simplified62.1%

                      \[\leadsto \color{blue}{1} \]
                  7. Recombined 2 regimes into one program.
                  8. Final simplification48.9%

                    \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -5.2 \cdot 10^{-143}:\\ \;\;\;\;0 - \frac{p}{x}\\ \mathbf{else}:\\ \;\;\;\;1\\ \end{array} \]
                  9. Add Preprocessing

                  Alternative 6: 35.1% accurate, 215.0× speedup?

                  \[\begin{array}{l} p_m = \left|p\right| \\ 1 \end{array} \]
                  p_m = (fabs.f64 p)
                  (FPCore (p_m x) :precision binary64 1.0)
                  p_m = fabs(p);
                  double code(double p_m, double x) {
                  	return 1.0;
                  }
                  
                  p_m = abs(p)
                  real(8) function code(p_m, x)
                      real(8), intent (in) :: p_m
                      real(8), intent (in) :: x
                      code = 1.0d0
                  end function
                  
                  p_m = Math.abs(p);
                  public static double code(double p_m, double x) {
                  	return 1.0;
                  }
                  
                  p_m = math.fabs(p)
                  def code(p_m, x):
                  	return 1.0
                  
                  p_m = abs(p)
                  function code(p_m, x)
                  	return 1.0
                  end
                  
                  p_m = abs(p);
                  function tmp = code(p_m, x)
                  	tmp = 1.0;
                  end
                  
                  p_m = N[Abs[p], $MachinePrecision]
                  code[p$95$m_, x_] := 1.0
                  
                  \begin{array}{l}
                  p_m = \left|p\right|
                  
                  \\
                  1
                  \end{array}
                  
                  Derivation
                  1. Initial program 77.8%

                    \[\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)} \]
                  2. Step-by-step derivation
                    1. sqrt-lowering-sqrt.f64N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
                    2. distribute-rgt-inN/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\left(1 \cdot \frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
                    3. metadata-evalN/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\left(\frac{1}{2} + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right) \]
                    4. +-lowering-+.f64N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}} \cdot \frac{1}{2}\right)\right)\right) \]
                    5. *-commutativeN/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{1}{2} \cdot \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
                    6. associate-*r/N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \left(\frac{\frac{1}{2} \cdot x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)\right)\right) \]
                    7. /-lowering-/.f64N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\left(\frac{1}{2} \cdot x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
                    8. *-lowering-*.f64N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \left(\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}\right)\right)\right)\right) \]
                    9. sqrt-lowering-sqrt.f64N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\left(\left(4 \cdot p\right) \cdot p + x \cdot x\right)\right)\right)\right)\right) \]
                    10. +-lowering-+.f64N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(\left(4 \cdot p\right) \cdot p\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                    11. associate-*l*N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\left(4 \cdot \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                    12. *-lowering-*.f64N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \left(p \cdot p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                    13. *-lowering-*.f64N/A

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \left(x \cdot x\right)\right)\right)\right)\right)\right) \]
                    14. *-lowering-*.f6477.8%

                      \[\leadsto \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\frac{1}{2}, \mathsf{/.f64}\left(\mathsf{*.f64}\left(\frac{1}{2}, x\right), \mathsf{sqrt.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(4, \mathsf{*.f64}\left(p, p\right)\right), \mathsf{*.f64}\left(x, x\right)\right)\right)\right)\right)\right) \]
                  3. Simplified77.8%

                    \[\leadsto \color{blue}{\sqrt{0.5 + \frac{0.5 \cdot x}{\sqrt{4 \cdot \left(p \cdot p\right) + x \cdot x}}}} \]
                  4. Add Preprocessing
                  5. Taylor expanded in x around inf

                    \[\leadsto \color{blue}{1} \]
                  6. Step-by-step derivation
                    1. Simplified38.2%

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

                    Developer Target 1: 78.9% accurate, 0.7× speedup?

                    \[\begin{array}{l} \\ \sqrt{0.5 + \frac{\mathsf{copysign}\left(0.5, x\right)}{\mathsf{hypot}\left(1, \frac{2 \cdot p}{x}\right)}} \end{array} \]
                    (FPCore (p x)
                     :precision binary64
                     (sqrt (+ 0.5 (/ (copysign 0.5 x) (hypot 1.0 (/ (* 2.0 p) x))))))
                    double code(double p, double x) {
                    	return sqrt((0.5 + (copysign(0.5, x) / hypot(1.0, ((2.0 * p) / x)))));
                    }
                    
                    public static double code(double p, double x) {
                    	return Math.sqrt((0.5 + (Math.copySign(0.5, x) / Math.hypot(1.0, ((2.0 * p) / x)))));
                    }
                    
                    def code(p, x):
                    	return math.sqrt((0.5 + (math.copysign(0.5, x) / math.hypot(1.0, ((2.0 * p) / x)))))
                    
                    function code(p, x)
                    	return sqrt(Float64(0.5 + Float64(copysign(0.5, x) / hypot(1.0, Float64(Float64(2.0 * p) / x)))))
                    end
                    
                    function tmp = code(p, x)
                    	tmp = sqrt((0.5 + ((sign(x) * abs(0.5)) / hypot(1.0, ((2.0 * p) / x)))));
                    end
                    
                    code[p_, x_] := N[Sqrt[N[(0.5 + N[(N[With[{TMP1 = Abs[0.5], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision] / N[Sqrt[1.0 ^ 2 + N[(N[(2.0 * p), $MachinePrecision] / x), $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
                    
                    \begin{array}{l}
                    
                    \\
                    \sqrt{0.5 + \frac{\mathsf{copysign}\left(0.5, x\right)}{\mathsf{hypot}\left(1, \frac{2 \cdot p}{x}\right)}}
                    \end{array}
                    

                    Reproduce

                    ?
                    herbie shell --seed 2024155 
                    (FPCore (p x)
                      :name "Given's Rotation SVD example"
                      :precision binary64
                      :pre (and (< 1e-150 (fabs x)) (< (fabs x) 1e+150))
                    
                      :alt
                      (! :herbie-platform default (sqrt (+ 1/2 (/ (copysign 1/2 x) (hypot 1 (/ (* 2 p) x))))))
                    
                      (sqrt (* 0.5 (+ 1.0 (/ x (sqrt (+ (* (* 4.0 p) p) (* x x))))))))