math.sqrt on complex, imaginary part, im greater than 0 branch

Percentage Accurate: 40.7% → 76.4%
Time: 6.4s
Alternatives: 5
Speedup: 1.7×

Specification

?
\[im > 0\]
\[\begin{array}{l} \\ 0.5 \cdot \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)} \end{array} \]
(FPCore (re im)
 :precision binary64
 (* 0.5 (sqrt (* 2.0 (- (sqrt (+ (* re re) (* im im))) re)))))
double code(double re, double im) {
	return 0.5 * sqrt((2.0 * (sqrt(((re * re) + (im * im))) - re)));
}
real(8) function code(re, im)
    real(8), intent (in) :: re
    real(8), intent (in) :: im
    code = 0.5d0 * sqrt((2.0d0 * (sqrt(((re * re) + (im * im))) - re)))
end function
public static double code(double re, double im) {
	return 0.5 * Math.sqrt((2.0 * (Math.sqrt(((re * re) + (im * im))) - re)));
}
def code(re, im):
	return 0.5 * math.sqrt((2.0 * (math.sqrt(((re * re) + (im * im))) - re)))
function code(re, im)
	return Float64(0.5 * sqrt(Float64(2.0 * Float64(sqrt(Float64(Float64(re * re) + Float64(im * im))) - re))))
end
function tmp = code(re, im)
	tmp = 0.5 * sqrt((2.0 * (sqrt(((re * re) + (im * im))) - re)));
end
code[re_, im_] := N[(0.5 * N[Sqrt[N[(2.0 * N[(N[Sqrt[N[(N[(re * re), $MachinePrecision] + N[(im * im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] - re), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
0.5 \cdot \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\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 5 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: 40.7% accurate, 1.0× speedup?

\[\begin{array}{l} \\ 0.5 \cdot \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)} \end{array} \]
(FPCore (re im)
 :precision binary64
 (* 0.5 (sqrt (* 2.0 (- (sqrt (+ (* re re) (* im im))) re)))))
double code(double re, double im) {
	return 0.5 * sqrt((2.0 * (sqrt(((re * re) + (im * im))) - re)));
}
real(8) function code(re, im)
    real(8), intent (in) :: re
    real(8), intent (in) :: im
    code = 0.5d0 * sqrt((2.0d0 * (sqrt(((re * re) + (im * im))) - re)))
end function
public static double code(double re, double im) {
	return 0.5 * Math.sqrt((2.0 * (Math.sqrt(((re * re) + (im * im))) - re)));
}
def code(re, im):
	return 0.5 * math.sqrt((2.0 * (math.sqrt(((re * re) + (im * im))) - re)))
function code(re, im)
	return Float64(0.5 * sqrt(Float64(2.0 * Float64(sqrt(Float64(Float64(re * re) + Float64(im * im))) - re))))
end
function tmp = code(re, im)
	tmp = 0.5 * sqrt((2.0 * (sqrt(((re * re) + (im * im))) - re)));
end
code[re_, im_] := N[(0.5 * N[Sqrt[N[(2.0 * N[(N[Sqrt[N[(N[(re * re), $MachinePrecision] + N[(im * im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] - re), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
0.5 \cdot \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)}
\end{array}

Alternative 1: 76.4% accurate, 0.2× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)}\\ \mathbf{if}\;t\_0 \leq 0:\\ \;\;\;\;\frac{im \cdot 0.5}{\sqrt{re}}\\ \mathbf{elif}\;t\_0 \leq 10^{-82}:\\ \;\;\;\;0.5 \cdot \sqrt{-4 \cdot re}\\ \mathbf{elif}\;t\_0 \leq 4 \cdot 10^{+75}:\\ \;\;\;\;0.5 \cdot t\_0\\ \mathbf{else}:\\ \;\;\;\;0.5 \cdot \sqrt{2 \cdot \left(im - re\right)}\\ \end{array} \end{array} \]
(FPCore (re im)
 :precision binary64
 (let* ((t_0 (sqrt (* 2.0 (- (sqrt (+ (* re re) (* im im))) re)))))
   (if (<= t_0 0.0)
     (/ (* im 0.5) (sqrt re))
     (if (<= t_0 1e-82)
       (* 0.5 (sqrt (* -4.0 re)))
       (if (<= t_0 4e+75) (* 0.5 t_0) (* 0.5 (sqrt (* 2.0 (- im re)))))))))
double code(double re, double im) {
	double t_0 = sqrt((2.0 * (sqrt(((re * re) + (im * im))) - re)));
	double tmp;
	if (t_0 <= 0.0) {
		tmp = (im * 0.5) / sqrt(re);
	} else if (t_0 <= 1e-82) {
		tmp = 0.5 * sqrt((-4.0 * re));
	} else if (t_0 <= 4e+75) {
		tmp = 0.5 * t_0;
	} else {
		tmp = 0.5 * sqrt((2.0 * (im - re)));
	}
	return tmp;
}
real(8) function code(re, im)
    real(8), intent (in) :: re
    real(8), intent (in) :: im
    real(8) :: t_0
    real(8) :: tmp
    t_0 = sqrt((2.0d0 * (sqrt(((re * re) + (im * im))) - re)))
    if (t_0 <= 0.0d0) then
        tmp = (im * 0.5d0) / sqrt(re)
    else if (t_0 <= 1d-82) then
        tmp = 0.5d0 * sqrt(((-4.0d0) * re))
    else if (t_0 <= 4d+75) then
        tmp = 0.5d0 * t_0
    else
        tmp = 0.5d0 * sqrt((2.0d0 * (im - re)))
    end if
    code = tmp
end function
public static double code(double re, double im) {
	double t_0 = Math.sqrt((2.0 * (Math.sqrt(((re * re) + (im * im))) - re)));
	double tmp;
	if (t_0 <= 0.0) {
		tmp = (im * 0.5) / Math.sqrt(re);
	} else if (t_0 <= 1e-82) {
		tmp = 0.5 * Math.sqrt((-4.0 * re));
	} else if (t_0 <= 4e+75) {
		tmp = 0.5 * t_0;
	} else {
		tmp = 0.5 * Math.sqrt((2.0 * (im - re)));
	}
	return tmp;
}
def code(re, im):
	t_0 = math.sqrt((2.0 * (math.sqrt(((re * re) + (im * im))) - re)))
	tmp = 0
	if t_0 <= 0.0:
		tmp = (im * 0.5) / math.sqrt(re)
	elif t_0 <= 1e-82:
		tmp = 0.5 * math.sqrt((-4.0 * re))
	elif t_0 <= 4e+75:
		tmp = 0.5 * t_0
	else:
		tmp = 0.5 * math.sqrt((2.0 * (im - re)))
	return tmp
function code(re, im)
	t_0 = sqrt(Float64(2.0 * Float64(sqrt(Float64(Float64(re * re) + Float64(im * im))) - re)))
	tmp = 0.0
	if (t_0 <= 0.0)
		tmp = Float64(Float64(im * 0.5) / sqrt(re));
	elseif (t_0 <= 1e-82)
		tmp = Float64(0.5 * sqrt(Float64(-4.0 * re)));
	elseif (t_0 <= 4e+75)
		tmp = Float64(0.5 * t_0);
	else
		tmp = Float64(0.5 * sqrt(Float64(2.0 * Float64(im - re))));
	end
	return tmp
end
function tmp_2 = code(re, im)
	t_0 = sqrt((2.0 * (sqrt(((re * re) + (im * im))) - re)));
	tmp = 0.0;
	if (t_0 <= 0.0)
		tmp = (im * 0.5) / sqrt(re);
	elseif (t_0 <= 1e-82)
		tmp = 0.5 * sqrt((-4.0 * re));
	elseif (t_0 <= 4e+75)
		tmp = 0.5 * t_0;
	else
		tmp = 0.5 * sqrt((2.0 * (im - re)));
	end
	tmp_2 = tmp;
end
code[re_, im_] := Block[{t$95$0 = N[Sqrt[N[(2.0 * N[(N[Sqrt[N[(N[(re * re), $MachinePrecision] + N[(im * im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] - re), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, If[LessEqual[t$95$0, 0.0], N[(N[(im * 0.5), $MachinePrecision] / N[Sqrt[re], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$0, 1e-82], N[(0.5 * N[Sqrt[N[(-4.0 * re), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$0, 4e+75], N[(0.5 * t$95$0), $MachinePrecision], N[(0.5 * N[Sqrt[N[(2.0 * N[(im - re), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)}\\
\mathbf{if}\;t\_0 \leq 0:\\
\;\;\;\;\frac{im \cdot 0.5}{\sqrt{re}}\\

\mathbf{elif}\;t\_0 \leq 10^{-82}:\\
\;\;\;\;0.5 \cdot \sqrt{-4 \cdot re}\\

\mathbf{elif}\;t\_0 \leq 4 \cdot 10^{+75}:\\
\;\;\;\;0.5 \cdot t\_0\\

\mathbf{else}:\\
\;\;\;\;0.5 \cdot \sqrt{2 \cdot \left(im - re\right)}\\


\end{array}
\end{array}
Derivation
  1. Split input into 4 regimes
  2. if (sqrt.f64 (*.f64 #s(literal 2 binary64) (-.f64 (sqrt.f64 (+.f64 (*.f64 re re) (*.f64 im im))) re))) < 0.0

    1. Initial program 8.3%

      \[0.5 \cdot \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in re around inf

      \[\leadsto \color{blue}{\frac{1}{2} \cdot \left(\left(im \cdot \left(\sqrt{\frac{1}{2}} \cdot \sqrt{2}\right)\right) \cdot \sqrt{\frac{1}{re}}\right)} \]
    4. Step-by-step derivation
      1. associate-*r*N/A

        \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot \left(im \cdot \left(\sqrt{\frac{1}{2}} \cdot \sqrt{2}\right)\right)\right) \cdot \sqrt{\frac{1}{re}}} \]
      2. lower-*.f64N/A

        \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot \left(im \cdot \left(\sqrt{\frac{1}{2}} \cdot \sqrt{2}\right)\right)\right) \cdot \sqrt{\frac{1}{re}}} \]
      3. associate-*r*N/A

        \[\leadsto \left(\frac{1}{2} \cdot \color{blue}{\left(\left(im \cdot \sqrt{\frac{1}{2}}\right) \cdot \sqrt{2}\right)}\right) \cdot \sqrt{\frac{1}{re}} \]
      4. associate-*r*N/A

        \[\leadsto \color{blue}{\left(\left(\frac{1}{2} \cdot \left(im \cdot \sqrt{\frac{1}{2}}\right)\right) \cdot \sqrt{2}\right)} \cdot \sqrt{\frac{1}{re}} \]
      5. lower-*.f64N/A

        \[\leadsto \color{blue}{\left(\left(\frac{1}{2} \cdot \left(im \cdot \sqrt{\frac{1}{2}}\right)\right) \cdot \sqrt{2}\right)} \cdot \sqrt{\frac{1}{re}} \]
      6. lower-*.f64N/A

        \[\leadsto \left(\color{blue}{\left(\frac{1}{2} \cdot \left(im \cdot \sqrt{\frac{1}{2}}\right)\right)} \cdot \sqrt{2}\right) \cdot \sqrt{\frac{1}{re}} \]
      7. lower-*.f64N/A

        \[\leadsto \left(\left(\frac{1}{2} \cdot \color{blue}{\left(im \cdot \sqrt{\frac{1}{2}}\right)}\right) \cdot \sqrt{2}\right) \cdot \sqrt{\frac{1}{re}} \]
      8. lower-sqrt.f64N/A

        \[\leadsto \left(\left(\frac{1}{2} \cdot \left(im \cdot \color{blue}{\sqrt{\frac{1}{2}}}\right)\right) \cdot \sqrt{2}\right) \cdot \sqrt{\frac{1}{re}} \]
      9. lower-sqrt.f64N/A

        \[\leadsto \left(\left(\frac{1}{2} \cdot \left(im \cdot \sqrt{\frac{1}{2}}\right)\right) \cdot \color{blue}{\sqrt{2}}\right) \cdot \sqrt{\frac{1}{re}} \]
      10. lower-sqrt.f64N/A

        \[\leadsto \left(\left(\frac{1}{2} \cdot \left(im \cdot \sqrt{\frac{1}{2}}\right)\right) \cdot \sqrt{2}\right) \cdot \color{blue}{\sqrt{\frac{1}{re}}} \]
      11. lower-/.f6498.8

        \[\leadsto \left(\left(0.5 \cdot \left(im \cdot \sqrt{0.5}\right)\right) \cdot \sqrt{2}\right) \cdot \sqrt{\color{blue}{\frac{1}{re}}} \]
    5. Applied rewrites98.8%

      \[\leadsto \color{blue}{\left(\left(0.5 \cdot \left(im \cdot \sqrt{0.5}\right)\right) \cdot \sqrt{2}\right) \cdot \sqrt{\frac{1}{re}}} \]
    6. Step-by-step derivation
      1. Applied rewrites99.7%

        \[\leadsto \frac{im \cdot 0.5}{\color{blue}{\sqrt{re}}} \]

      if 0.0 < (sqrt.f64 (*.f64 #s(literal 2 binary64) (-.f64 (sqrt.f64 (+.f64 (*.f64 re re) (*.f64 im im))) re))) < 1e-82

      1. Initial program 17.7%

        \[0.5 \cdot \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)} \]
      2. Add Preprocessing
      3. Taylor expanded in re around -inf

        \[\leadsto \frac{1}{2} \cdot \sqrt{\color{blue}{-4 \cdot re}} \]
      4. Step-by-step derivation
        1. lower-*.f6479.6

          \[\leadsto 0.5 \cdot \sqrt{\color{blue}{-4 \cdot re}} \]
      5. Applied rewrites79.6%

        \[\leadsto 0.5 \cdot \sqrt{\color{blue}{-4 \cdot re}} \]

      if 1e-82 < (sqrt.f64 (*.f64 #s(literal 2 binary64) (-.f64 (sqrt.f64 (+.f64 (*.f64 re re) (*.f64 im im))) re))) < 3.99999999999999971e75

      1. Initial program 99.2%

        \[0.5 \cdot \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)} \]
      2. Add Preprocessing

      if 3.99999999999999971e75 < (sqrt.f64 (*.f64 #s(literal 2 binary64) (-.f64 (sqrt.f64 (+.f64 (*.f64 re re) (*.f64 im im))) re)))

      1. Initial program 4.5%

        \[0.5 \cdot \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)} \]
      2. Add Preprocessing
      3. Taylor expanded in re around 0

        \[\leadsto \frac{1}{2} \cdot \sqrt{2 \cdot \color{blue}{\left(im + -1 \cdot re\right)}} \]
      4. Step-by-step derivation
        1. mul-1-negN/A

          \[\leadsto \frac{1}{2} \cdot \sqrt{2 \cdot \left(im + \color{blue}{\left(\mathsf{neg}\left(re\right)\right)}\right)} \]
        2. unsub-negN/A

          \[\leadsto \frac{1}{2} \cdot \sqrt{2 \cdot \color{blue}{\left(im - re\right)}} \]
        3. lower--.f6460.6

          \[\leadsto 0.5 \cdot \sqrt{2 \cdot \color{blue}{\left(im - re\right)}} \]
      5. Applied rewrites60.6%

        \[\leadsto 0.5 \cdot \sqrt{2 \cdot \color{blue}{\left(im - re\right)}} \]
    7. Recombined 4 regimes into one program.
    8. Add Preprocessing

    Alternative 2: 76.5% accurate, 1.2× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;re \leq -1.6 \cdot 10^{+23}:\\ \;\;\;\;0.5 \cdot \sqrt{-4 \cdot re}\\ \mathbf{elif}\;re \leq 6.2 \cdot 10^{+35}:\\ \;\;\;\;0.5 \cdot \sqrt{2 \cdot \left(im - re\right)}\\ \mathbf{else}:\\ \;\;\;\;im \cdot \frac{0.5}{\sqrt{re}}\\ \end{array} \end{array} \]
    (FPCore (re im)
     :precision binary64
     (if (<= re -1.6e+23)
       (* 0.5 (sqrt (* -4.0 re)))
       (if (<= re 6.2e+35)
         (* 0.5 (sqrt (* 2.0 (- im re))))
         (* im (/ 0.5 (sqrt re))))))
    double code(double re, double im) {
    	double tmp;
    	if (re <= -1.6e+23) {
    		tmp = 0.5 * sqrt((-4.0 * re));
    	} else if (re <= 6.2e+35) {
    		tmp = 0.5 * sqrt((2.0 * (im - re)));
    	} else {
    		tmp = im * (0.5 / sqrt(re));
    	}
    	return tmp;
    }
    
    real(8) function code(re, im)
        real(8), intent (in) :: re
        real(8), intent (in) :: im
        real(8) :: tmp
        if (re <= (-1.6d+23)) then
            tmp = 0.5d0 * sqrt(((-4.0d0) * re))
        else if (re <= 6.2d+35) then
            tmp = 0.5d0 * sqrt((2.0d0 * (im - re)))
        else
            tmp = im * (0.5d0 / sqrt(re))
        end if
        code = tmp
    end function
    
    public static double code(double re, double im) {
    	double tmp;
    	if (re <= -1.6e+23) {
    		tmp = 0.5 * Math.sqrt((-4.0 * re));
    	} else if (re <= 6.2e+35) {
    		tmp = 0.5 * Math.sqrt((2.0 * (im - re)));
    	} else {
    		tmp = im * (0.5 / Math.sqrt(re));
    	}
    	return tmp;
    }
    
    def code(re, im):
    	tmp = 0
    	if re <= -1.6e+23:
    		tmp = 0.5 * math.sqrt((-4.0 * re))
    	elif re <= 6.2e+35:
    		tmp = 0.5 * math.sqrt((2.0 * (im - re)))
    	else:
    		tmp = im * (0.5 / math.sqrt(re))
    	return tmp
    
    function code(re, im)
    	tmp = 0.0
    	if (re <= -1.6e+23)
    		tmp = Float64(0.5 * sqrt(Float64(-4.0 * re)));
    	elseif (re <= 6.2e+35)
    		tmp = Float64(0.5 * sqrt(Float64(2.0 * Float64(im - re))));
    	else
    		tmp = Float64(im * Float64(0.5 / sqrt(re)));
    	end
    	return tmp
    end
    
    function tmp_2 = code(re, im)
    	tmp = 0.0;
    	if (re <= -1.6e+23)
    		tmp = 0.5 * sqrt((-4.0 * re));
    	elseif (re <= 6.2e+35)
    		tmp = 0.5 * sqrt((2.0 * (im - re)));
    	else
    		tmp = im * (0.5 / sqrt(re));
    	end
    	tmp_2 = tmp;
    end
    
    code[re_, im_] := If[LessEqual[re, -1.6e+23], N[(0.5 * N[Sqrt[N[(-4.0 * re), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], If[LessEqual[re, 6.2e+35], N[(0.5 * N[Sqrt[N[(2.0 * N[(im - re), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[(im * N[(0.5 / N[Sqrt[re], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    \mathbf{if}\;re \leq -1.6 \cdot 10^{+23}:\\
    \;\;\;\;0.5 \cdot \sqrt{-4 \cdot re}\\
    
    \mathbf{elif}\;re \leq 6.2 \cdot 10^{+35}:\\
    \;\;\;\;0.5 \cdot \sqrt{2 \cdot \left(im - re\right)}\\
    
    \mathbf{else}:\\
    \;\;\;\;im \cdot \frac{0.5}{\sqrt{re}}\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 3 regimes
    2. if re < -1.6e23

      1. Initial program 36.7%

        \[0.5 \cdot \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)} \]
      2. Add Preprocessing
      3. Taylor expanded in re around -inf

        \[\leadsto \frac{1}{2} \cdot \sqrt{\color{blue}{-4 \cdot re}} \]
      4. Step-by-step derivation
        1. lower-*.f6473.9

          \[\leadsto 0.5 \cdot \sqrt{\color{blue}{-4 \cdot re}} \]
      5. Applied rewrites73.9%

        \[\leadsto 0.5 \cdot \sqrt{\color{blue}{-4 \cdot re}} \]

      if -1.6e23 < re < 6.19999999999999973e35

      1. Initial program 55.2%

        \[0.5 \cdot \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)} \]
      2. Add Preprocessing
      3. Taylor expanded in re around 0

        \[\leadsto \frac{1}{2} \cdot \sqrt{2 \cdot \color{blue}{\left(im + -1 \cdot re\right)}} \]
      4. Step-by-step derivation
        1. mul-1-negN/A

          \[\leadsto \frac{1}{2} \cdot \sqrt{2 \cdot \left(im + \color{blue}{\left(\mathsf{neg}\left(re\right)\right)}\right)} \]
        2. unsub-negN/A

          \[\leadsto \frac{1}{2} \cdot \sqrt{2 \cdot \color{blue}{\left(im - re\right)}} \]
        3. lower--.f6476.1

          \[\leadsto 0.5 \cdot \sqrt{2 \cdot \color{blue}{\left(im - re\right)}} \]
      5. Applied rewrites76.1%

        \[\leadsto 0.5 \cdot \sqrt{2 \cdot \color{blue}{\left(im - re\right)}} \]

      if 6.19999999999999973e35 < re

      1. Initial program 7.4%

        \[0.5 \cdot \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)} \]
      2. Add Preprocessing
      3. Taylor expanded in re around inf

        \[\leadsto \color{blue}{\frac{1}{2} \cdot \left(\left(im \cdot \left(\sqrt{\frac{1}{2}} \cdot \sqrt{2}\right)\right) \cdot \sqrt{\frac{1}{re}}\right)} \]
      4. Step-by-step derivation
        1. associate-*r*N/A

          \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot \left(im \cdot \left(\sqrt{\frac{1}{2}} \cdot \sqrt{2}\right)\right)\right) \cdot \sqrt{\frac{1}{re}}} \]
        2. lower-*.f64N/A

          \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot \left(im \cdot \left(\sqrt{\frac{1}{2}} \cdot \sqrt{2}\right)\right)\right) \cdot \sqrt{\frac{1}{re}}} \]
        3. associate-*r*N/A

          \[\leadsto \left(\frac{1}{2} \cdot \color{blue}{\left(\left(im \cdot \sqrt{\frac{1}{2}}\right) \cdot \sqrt{2}\right)}\right) \cdot \sqrt{\frac{1}{re}} \]
        4. associate-*r*N/A

          \[\leadsto \color{blue}{\left(\left(\frac{1}{2} \cdot \left(im \cdot \sqrt{\frac{1}{2}}\right)\right) \cdot \sqrt{2}\right)} \cdot \sqrt{\frac{1}{re}} \]
        5. lower-*.f64N/A

          \[\leadsto \color{blue}{\left(\left(\frac{1}{2} \cdot \left(im \cdot \sqrt{\frac{1}{2}}\right)\right) \cdot \sqrt{2}\right)} \cdot \sqrt{\frac{1}{re}} \]
        6. lower-*.f64N/A

          \[\leadsto \left(\color{blue}{\left(\frac{1}{2} \cdot \left(im \cdot \sqrt{\frac{1}{2}}\right)\right)} \cdot \sqrt{2}\right) \cdot \sqrt{\frac{1}{re}} \]
        7. lower-*.f64N/A

          \[\leadsto \left(\left(\frac{1}{2} \cdot \color{blue}{\left(im \cdot \sqrt{\frac{1}{2}}\right)}\right) \cdot \sqrt{2}\right) \cdot \sqrt{\frac{1}{re}} \]
        8. lower-sqrt.f64N/A

          \[\leadsto \left(\left(\frac{1}{2} \cdot \left(im \cdot \color{blue}{\sqrt{\frac{1}{2}}}\right)\right) \cdot \sqrt{2}\right) \cdot \sqrt{\frac{1}{re}} \]
        9. lower-sqrt.f64N/A

          \[\leadsto \left(\left(\frac{1}{2} \cdot \left(im \cdot \sqrt{\frac{1}{2}}\right)\right) \cdot \color{blue}{\sqrt{2}}\right) \cdot \sqrt{\frac{1}{re}} \]
        10. lower-sqrt.f64N/A

          \[\leadsto \left(\left(\frac{1}{2} \cdot \left(im \cdot \sqrt{\frac{1}{2}}\right)\right) \cdot \sqrt{2}\right) \cdot \color{blue}{\sqrt{\frac{1}{re}}} \]
        11. lower-/.f6486.7

          \[\leadsto \left(\left(0.5 \cdot \left(im \cdot \sqrt{0.5}\right)\right) \cdot \sqrt{2}\right) \cdot \sqrt{\color{blue}{\frac{1}{re}}} \]
      5. Applied rewrites86.7%

        \[\leadsto \color{blue}{\left(\left(0.5 \cdot \left(im \cdot \sqrt{0.5}\right)\right) \cdot \sqrt{2}\right) \cdot \sqrt{\frac{1}{re}}} \]
      6. Step-by-step derivation
        1. Applied rewrites87.3%

          \[\leadsto \color{blue}{im \cdot \frac{0.5}{\sqrt{re}}} \]
      7. Recombined 3 regimes into one program.
      8. Add Preprocessing

      Alternative 3: 60.4% accurate, 1.6× speedup?

      \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;im \leq 1.35 \cdot 10^{-126}:\\ \;\;\;\;0.5 \cdot \sqrt{-4 \cdot re}\\ \mathbf{else}:\\ \;\;\;\;0.5 \cdot \sqrt{2 \cdot \left(im - re\right)}\\ \end{array} \end{array} \]
      (FPCore (re im)
       :precision binary64
       (if (<= im 1.35e-126)
         (* 0.5 (sqrt (* -4.0 re)))
         (* 0.5 (sqrt (* 2.0 (- im re))))))
      double code(double re, double im) {
      	double tmp;
      	if (im <= 1.35e-126) {
      		tmp = 0.5 * sqrt((-4.0 * re));
      	} else {
      		tmp = 0.5 * sqrt((2.0 * (im - re)));
      	}
      	return tmp;
      }
      
      real(8) function code(re, im)
          real(8), intent (in) :: re
          real(8), intent (in) :: im
          real(8) :: tmp
          if (im <= 1.35d-126) then
              tmp = 0.5d0 * sqrt(((-4.0d0) * re))
          else
              tmp = 0.5d0 * sqrt((2.0d0 * (im - re)))
          end if
          code = tmp
      end function
      
      public static double code(double re, double im) {
      	double tmp;
      	if (im <= 1.35e-126) {
      		tmp = 0.5 * Math.sqrt((-4.0 * re));
      	} else {
      		tmp = 0.5 * Math.sqrt((2.0 * (im - re)));
      	}
      	return tmp;
      }
      
      def code(re, im):
      	tmp = 0
      	if im <= 1.35e-126:
      		tmp = 0.5 * math.sqrt((-4.0 * re))
      	else:
      		tmp = 0.5 * math.sqrt((2.0 * (im - re)))
      	return tmp
      
      function code(re, im)
      	tmp = 0.0
      	if (im <= 1.35e-126)
      		tmp = Float64(0.5 * sqrt(Float64(-4.0 * re)));
      	else
      		tmp = Float64(0.5 * sqrt(Float64(2.0 * Float64(im - re))));
      	end
      	return tmp
      end
      
      function tmp_2 = code(re, im)
      	tmp = 0.0;
      	if (im <= 1.35e-126)
      		tmp = 0.5 * sqrt((-4.0 * re));
      	else
      		tmp = 0.5 * sqrt((2.0 * (im - re)));
      	end
      	tmp_2 = tmp;
      end
      
      code[re_, im_] := If[LessEqual[im, 1.35e-126], N[(0.5 * N[Sqrt[N[(-4.0 * re), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[(0.5 * N[Sqrt[N[(2.0 * N[(im - re), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]
      
      \begin{array}{l}
      
      \\
      \begin{array}{l}
      \mathbf{if}\;im \leq 1.35 \cdot 10^{-126}:\\
      \;\;\;\;0.5 \cdot \sqrt{-4 \cdot re}\\
      
      \mathbf{else}:\\
      \;\;\;\;0.5 \cdot \sqrt{2 \cdot \left(im - re\right)}\\
      
      
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 2 regimes
      2. if im < 1.34999999999999998e-126

        1. Initial program 36.4%

          \[0.5 \cdot \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)} \]
        2. Add Preprocessing
        3. Taylor expanded in re around -inf

          \[\leadsto \frac{1}{2} \cdot \sqrt{\color{blue}{-4 \cdot re}} \]
        4. Step-by-step derivation
          1. lower-*.f6449.2

            \[\leadsto 0.5 \cdot \sqrt{\color{blue}{-4 \cdot re}} \]
        5. Applied rewrites49.2%

          \[\leadsto 0.5 \cdot \sqrt{\color{blue}{-4 \cdot re}} \]

        if 1.34999999999999998e-126 < im

        1. Initial program 43.7%

          \[0.5 \cdot \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)} \]
        2. Add Preprocessing
        3. Taylor expanded in re around 0

          \[\leadsto \frac{1}{2} \cdot \sqrt{2 \cdot \color{blue}{\left(im + -1 \cdot re\right)}} \]
        4. Step-by-step derivation
          1. mul-1-negN/A

            \[\leadsto \frac{1}{2} \cdot \sqrt{2 \cdot \left(im + \color{blue}{\left(\mathsf{neg}\left(re\right)\right)}\right)} \]
          2. unsub-negN/A

            \[\leadsto \frac{1}{2} \cdot \sqrt{2 \cdot \color{blue}{\left(im - re\right)}} \]
          3. lower--.f6469.2

            \[\leadsto 0.5 \cdot \sqrt{2 \cdot \color{blue}{\left(im - re\right)}} \]
        5. Applied rewrites69.2%

          \[\leadsto 0.5 \cdot \sqrt{2 \cdot \color{blue}{\left(im - re\right)}} \]
      3. Recombined 2 regimes into one program.
      4. Add Preprocessing

      Alternative 4: 64.5% accurate, 1.7× speedup?

      \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;re \leq -5 \cdot 10^{+18}:\\ \;\;\;\;0.5 \cdot \sqrt{-4 \cdot re}\\ \mathbf{else}:\\ \;\;\;\;0.5 \cdot \sqrt{2 \cdot im}\\ \end{array} \end{array} \]
      (FPCore (re im)
       :precision binary64
       (if (<= re -5e+18) (* 0.5 (sqrt (* -4.0 re))) (* 0.5 (sqrt (* 2.0 im)))))
      double code(double re, double im) {
      	double tmp;
      	if (re <= -5e+18) {
      		tmp = 0.5 * sqrt((-4.0 * re));
      	} else {
      		tmp = 0.5 * sqrt((2.0 * im));
      	}
      	return tmp;
      }
      
      real(8) function code(re, im)
          real(8), intent (in) :: re
          real(8), intent (in) :: im
          real(8) :: tmp
          if (re <= (-5d+18)) then
              tmp = 0.5d0 * sqrt(((-4.0d0) * re))
          else
              tmp = 0.5d0 * sqrt((2.0d0 * im))
          end if
          code = tmp
      end function
      
      public static double code(double re, double im) {
      	double tmp;
      	if (re <= -5e+18) {
      		tmp = 0.5 * Math.sqrt((-4.0 * re));
      	} else {
      		tmp = 0.5 * Math.sqrt((2.0 * im));
      	}
      	return tmp;
      }
      
      def code(re, im):
      	tmp = 0
      	if re <= -5e+18:
      		tmp = 0.5 * math.sqrt((-4.0 * re))
      	else:
      		tmp = 0.5 * math.sqrt((2.0 * im))
      	return tmp
      
      function code(re, im)
      	tmp = 0.0
      	if (re <= -5e+18)
      		tmp = Float64(0.5 * sqrt(Float64(-4.0 * re)));
      	else
      		tmp = Float64(0.5 * sqrt(Float64(2.0 * im)));
      	end
      	return tmp
      end
      
      function tmp_2 = code(re, im)
      	tmp = 0.0;
      	if (re <= -5e+18)
      		tmp = 0.5 * sqrt((-4.0 * re));
      	else
      		tmp = 0.5 * sqrt((2.0 * im));
      	end
      	tmp_2 = tmp;
      end
      
      code[re_, im_] := If[LessEqual[re, -5e+18], N[(0.5 * N[Sqrt[N[(-4.0 * re), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[(0.5 * N[Sqrt[N[(2.0 * im), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]
      
      \begin{array}{l}
      
      \\
      \begin{array}{l}
      \mathbf{if}\;re \leq -5 \cdot 10^{+18}:\\
      \;\;\;\;0.5 \cdot \sqrt{-4 \cdot re}\\
      
      \mathbf{else}:\\
      \;\;\;\;0.5 \cdot \sqrt{2 \cdot im}\\
      
      
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 2 regimes
      2. if re < -5e18

        1. Initial program 39.0%

          \[0.5 \cdot \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)} \]
        2. Add Preprocessing
        3. Taylor expanded in re around -inf

          \[\leadsto \frac{1}{2} \cdot \sqrt{\color{blue}{-4 \cdot re}} \]
        4. Step-by-step derivation
          1. lower-*.f6473.2

            \[\leadsto 0.5 \cdot \sqrt{\color{blue}{-4 \cdot re}} \]
        5. Applied rewrites73.2%

          \[\leadsto 0.5 \cdot \sqrt{\color{blue}{-4 \cdot re}} \]

        if -5e18 < re

        1. Initial program 42.4%

          \[0.5 \cdot \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)} \]
        2. Add Preprocessing
        3. Taylor expanded in re around 0

          \[\leadsto \frac{1}{2} \cdot \sqrt{\color{blue}{2 \cdot im}} \]
        4. Step-by-step derivation
          1. lower-*.f6460.5

            \[\leadsto 0.5 \cdot \sqrt{\color{blue}{2 \cdot im}} \]
        5. Applied rewrites60.5%

          \[\leadsto 0.5 \cdot \sqrt{\color{blue}{2 \cdot im}} \]
      3. Recombined 2 regimes into one program.
      4. Add Preprocessing

      Alternative 5: 26.4% accurate, 2.2× speedup?

      \[\begin{array}{l} \\ 0.5 \cdot \sqrt{-4 \cdot re} \end{array} \]
      (FPCore (re im) :precision binary64 (* 0.5 (sqrt (* -4.0 re))))
      double code(double re, double im) {
      	return 0.5 * sqrt((-4.0 * re));
      }
      
      real(8) function code(re, im)
          real(8), intent (in) :: re
          real(8), intent (in) :: im
          code = 0.5d0 * sqrt(((-4.0d0) * re))
      end function
      
      public static double code(double re, double im) {
      	return 0.5 * Math.sqrt((-4.0 * re));
      }
      
      def code(re, im):
      	return 0.5 * math.sqrt((-4.0 * re))
      
      function code(re, im)
      	return Float64(0.5 * sqrt(Float64(-4.0 * re)))
      end
      
      function tmp = code(re, im)
      	tmp = 0.5 * sqrt((-4.0 * re));
      end
      
      code[re_, im_] := N[(0.5 * N[Sqrt[N[(-4.0 * re), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
      
      \begin{array}{l}
      
      \\
      0.5 \cdot \sqrt{-4 \cdot re}
      \end{array}
      
      Derivation
      1. Initial program 41.7%

        \[0.5 \cdot \sqrt{2 \cdot \left(\sqrt{re \cdot re + im \cdot im} - re\right)} \]
      2. Add Preprocessing
      3. Taylor expanded in re around -inf

        \[\leadsto \frac{1}{2} \cdot \sqrt{\color{blue}{-4 \cdot re}} \]
      4. Step-by-step derivation
        1. lower-*.f6425.8

          \[\leadsto 0.5 \cdot \sqrt{\color{blue}{-4 \cdot re}} \]
      5. Applied rewrites25.8%

        \[\leadsto 0.5 \cdot \sqrt{\color{blue}{-4 \cdot re}} \]
      6. Add Preprocessing

      Reproduce

      ?
      herbie shell --seed 2024324 
      (FPCore (re im)
        :name "math.sqrt on complex, imaginary part, im greater than 0 branch"
        :precision binary64
        :pre (> im 0.0)
        (* 0.5 (sqrt (* 2.0 (- (sqrt (+ (* re re) (* im im))) re)))))