2-ancestry mixing, positive discriminant

Percentage Accurate: 44.0% → 95.4%
Time: 17.0s
Alternatives: 5
Speedup: 2.1×

Specification

?
\[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{1}{2 \cdot a}\\ t_1 := \sqrt{g \cdot g - h \cdot h}\\ \sqrt[3]{t_0 \cdot \left(\left(-g\right) + t_1\right)} + \sqrt[3]{t_0 \cdot \left(\left(-g\right) - t_1\right)} \end{array} \end{array} \]
(FPCore (g h a)
 :precision binary64
 (let* ((t_0 (/ 1.0 (* 2.0 a))) (t_1 (sqrt (- (* g g) (* h h)))))
   (+ (cbrt (* t_0 (+ (- g) t_1))) (cbrt (* t_0 (- (- g) t_1))))))
double code(double g, double h, double a) {
	double t_0 = 1.0 / (2.0 * a);
	double t_1 = sqrt(((g * g) - (h * h)));
	return cbrt((t_0 * (-g + t_1))) + cbrt((t_0 * (-g - t_1)));
}
public static double code(double g, double h, double a) {
	double t_0 = 1.0 / (2.0 * a);
	double t_1 = Math.sqrt(((g * g) - (h * h)));
	return Math.cbrt((t_0 * (-g + t_1))) + Math.cbrt((t_0 * (-g - t_1)));
}
function code(g, h, a)
	t_0 = Float64(1.0 / Float64(2.0 * a))
	t_1 = sqrt(Float64(Float64(g * g) - Float64(h * h)))
	return Float64(cbrt(Float64(t_0 * Float64(Float64(-g) + t_1))) + cbrt(Float64(t_0 * Float64(Float64(-g) - t_1))))
end
code[g_, h_, a_] := Block[{t$95$0 = N[(1.0 / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[Sqrt[N[(N[(g * g), $MachinePrecision] - N[(h * h), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, N[(N[Power[N[(t$95$0 * N[((-g) + t$95$1), $MachinePrecision]), $MachinePrecision], 1/3], $MachinePrecision] + N[Power[N[(t$95$0 * N[((-g) - t$95$1), $MachinePrecision]), $MachinePrecision], 1/3], $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \frac{1}{2 \cdot a}\\
t_1 := \sqrt{g \cdot g - h \cdot h}\\
\sqrt[3]{t_0 \cdot \left(\left(-g\right) + t_1\right)} + \sqrt[3]{t_0 \cdot \left(\left(-g\right) - t_1\right)}
\end{array}
\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: 44.0% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{1}{2 \cdot a}\\ t_1 := \sqrt{g \cdot g - h \cdot h}\\ \sqrt[3]{t_0 \cdot \left(\left(-g\right) + t_1\right)} + \sqrt[3]{t_0 \cdot \left(\left(-g\right) - t_1\right)} \end{array} \end{array} \]
(FPCore (g h a)
 :precision binary64
 (let* ((t_0 (/ 1.0 (* 2.0 a))) (t_1 (sqrt (- (* g g) (* h h)))))
   (+ (cbrt (* t_0 (+ (- g) t_1))) (cbrt (* t_0 (- (- g) t_1))))))
double code(double g, double h, double a) {
	double t_0 = 1.0 / (2.0 * a);
	double t_1 = sqrt(((g * g) - (h * h)));
	return cbrt((t_0 * (-g + t_1))) + cbrt((t_0 * (-g - t_1)));
}
public static double code(double g, double h, double a) {
	double t_0 = 1.0 / (2.0 * a);
	double t_1 = Math.sqrt(((g * g) - (h * h)));
	return Math.cbrt((t_0 * (-g + t_1))) + Math.cbrt((t_0 * (-g - t_1)));
}
function code(g, h, a)
	t_0 = Float64(1.0 / Float64(2.0 * a))
	t_1 = sqrt(Float64(Float64(g * g) - Float64(h * h)))
	return Float64(cbrt(Float64(t_0 * Float64(Float64(-g) + t_1))) + cbrt(Float64(t_0 * Float64(Float64(-g) - t_1))))
end
code[g_, h_, a_] := Block[{t$95$0 = N[(1.0 / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[Sqrt[N[(N[(g * g), $MachinePrecision] - N[(h * h), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, N[(N[Power[N[(t$95$0 * N[((-g) + t$95$1), $MachinePrecision]), $MachinePrecision], 1/3], $MachinePrecision] + N[Power[N[(t$95$0 * N[((-g) - t$95$1), $MachinePrecision]), $MachinePrecision], 1/3], $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \frac{1}{2 \cdot a}\\
t_1 := \sqrt{g \cdot g - h \cdot h}\\
\sqrt[3]{t_0 \cdot \left(\left(-g\right) + t_1\right)} + \sqrt[3]{t_0 \cdot \left(\left(-g\right) - t_1\right)}
\end{array}
\end{array}

Alternative 1: 95.4% accurate, 0.7× speedup?

\[\begin{array}{l} \\ \frac{\sqrt[3]{0.5 \cdot \left(\mathsf{hypot}\left(g, h\right) - g\right)}}{\sqrt[3]{a}} + \sqrt[3]{\frac{-0.5}{a}} \cdot \sqrt[3]{g + \mathsf{hypot}\left(g, h\right)} \end{array} \]
(FPCore (g h a)
 :precision binary64
 (+
  (/ (cbrt (* 0.5 (- (hypot g h) g))) (cbrt a))
  (* (cbrt (/ -0.5 a)) (cbrt (+ g (hypot g h))))))
double code(double g, double h, double a) {
	return (cbrt((0.5 * (hypot(g, h) - g))) / cbrt(a)) + (cbrt((-0.5 / a)) * cbrt((g + hypot(g, h))));
}
public static double code(double g, double h, double a) {
	return (Math.cbrt((0.5 * (Math.hypot(g, h) - g))) / Math.cbrt(a)) + (Math.cbrt((-0.5 / a)) * Math.cbrt((g + Math.hypot(g, h))));
}
function code(g, h, a)
	return Float64(Float64(cbrt(Float64(0.5 * Float64(hypot(g, h) - g))) / cbrt(a)) + Float64(cbrt(Float64(-0.5 / a)) * cbrt(Float64(g + hypot(g, h)))))
end
code[g_, h_, a_] := N[(N[(N[Power[N[(0.5 * N[(N[Sqrt[g ^ 2 + h ^ 2], $MachinePrecision] - g), $MachinePrecision]), $MachinePrecision], 1/3], $MachinePrecision] / N[Power[a, 1/3], $MachinePrecision]), $MachinePrecision] + N[(N[Power[N[(-0.5 / a), $MachinePrecision], 1/3], $MachinePrecision] * N[Power[N[(g + N[Sqrt[g ^ 2 + h ^ 2], $MachinePrecision]), $MachinePrecision], 1/3], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{\sqrt[3]{0.5 \cdot \left(\mathsf{hypot}\left(g, h\right) - g\right)}}{\sqrt[3]{a}} + \sqrt[3]{\frac{-0.5}{a}} \cdot \sqrt[3]{g + \mathsf{hypot}\left(g, h\right)}
\end{array}
Derivation
  1. Initial program 43.2%

    \[\sqrt[3]{\frac{1}{2 \cdot a} \cdot \left(\left(-g\right) + \sqrt{g \cdot g - h \cdot h}\right)} + \sqrt[3]{\frac{1}{2 \cdot a} \cdot \left(\left(-g\right) - \sqrt{g \cdot g - h \cdot h}\right)} \]
  2. Step-by-step derivation
    1. associate-/r*43.2%

      \[\leadsto \sqrt[3]{\color{blue}{\frac{\frac{1}{2}}{a}} \cdot \left(\left(-g\right) + \sqrt{g \cdot g - h \cdot h}\right)} + \sqrt[3]{\frac{1}{2 \cdot a} \cdot \left(\left(-g\right) - \sqrt{g \cdot g - h \cdot h}\right)} \]
    2. metadata-eval43.2%

      \[\leadsto \sqrt[3]{\frac{\color{blue}{0.5}}{a} \cdot \left(\left(-g\right) + \sqrt{g \cdot g - h \cdot h}\right)} + \sqrt[3]{\frac{1}{2 \cdot a} \cdot \left(\left(-g\right) - \sqrt{g \cdot g - h \cdot h}\right)} \]
    3. +-commutative43.2%

      \[\leadsto \sqrt[3]{\frac{0.5}{a} \cdot \color{blue}{\left(\sqrt{g \cdot g - h \cdot h} + \left(-g\right)\right)}} + \sqrt[3]{\frac{1}{2 \cdot a} \cdot \left(\left(-g\right) - \sqrt{g \cdot g - h \cdot h}\right)} \]
    4. unsub-neg43.2%

      \[\leadsto \sqrt[3]{\frac{0.5}{a} \cdot \color{blue}{\left(\sqrt{g \cdot g - h \cdot h} - g\right)}} + \sqrt[3]{\frac{1}{2 \cdot a} \cdot \left(\left(-g\right) - \sqrt{g \cdot g - h \cdot h}\right)} \]
    5. fma-neg43.2%

      \[\leadsto \sqrt[3]{\frac{0.5}{a} \cdot \left(\sqrt{\color{blue}{\mathsf{fma}\left(g, g, -h \cdot h\right)}} - g\right)} + \sqrt[3]{\frac{1}{2 \cdot a} \cdot \left(\left(-g\right) - \sqrt{g \cdot g - h \cdot h}\right)} \]
    6. sub-neg43.2%

      \[\leadsto \sqrt[3]{\frac{0.5}{a} \cdot \left(\sqrt{\mathsf{fma}\left(g, g, -h \cdot h\right)} - g\right)} + \sqrt[3]{\frac{1}{2 \cdot a} \cdot \color{blue}{\left(\left(-g\right) + \left(-\sqrt{g \cdot g - h \cdot h}\right)\right)}} \]
    7. distribute-neg-out43.2%

      \[\leadsto \sqrt[3]{\frac{0.5}{a} \cdot \left(\sqrt{\mathsf{fma}\left(g, g, -h \cdot h\right)} - g\right)} + \sqrt[3]{\frac{1}{2 \cdot a} \cdot \color{blue}{\left(-\left(g + \sqrt{g \cdot g - h \cdot h}\right)\right)}} \]
    8. neg-mul-143.2%

      \[\leadsto \sqrt[3]{\frac{0.5}{a} \cdot \left(\sqrt{\mathsf{fma}\left(g, g, -h \cdot h\right)} - g\right)} + \sqrt[3]{\frac{1}{2 \cdot a} \cdot \color{blue}{\left(-1 \cdot \left(g + \sqrt{g \cdot g - h \cdot h}\right)\right)}} \]
    9. associate-*r*43.2%

      \[\leadsto \sqrt[3]{\frac{0.5}{a} \cdot \left(\sqrt{\mathsf{fma}\left(g, g, -h \cdot h\right)} - g\right)} + \sqrt[3]{\color{blue}{\left(\frac{1}{2 \cdot a} \cdot -1\right) \cdot \left(g + \sqrt{g \cdot g - h \cdot h}\right)}} \]
  3. Simplified43.1%

    \[\leadsto \color{blue}{\sqrt[3]{\frac{0.5}{a} \cdot \left(\sqrt{\mathsf{fma}\left(g, g, -h \cdot h\right)} - g\right)} + \sqrt[3]{\frac{g + \sqrt{\mathsf{fma}\left(g, g, -h \cdot h\right)}}{\frac{a}{-0.5}}}} \]
  4. Step-by-step derivation
    1. associate-*l/43.1%

      \[\leadsto \sqrt[3]{\color{blue}{\frac{0.5 \cdot \left(\sqrt{\mathsf{fma}\left(g, g, -h \cdot h\right)} - g\right)}{a}}} + \sqrt[3]{\frac{g + \sqrt{\mathsf{fma}\left(g, g, -h \cdot h\right)}}{\frac{a}{-0.5}}} \]
    2. cbrt-div47.7%

      \[\leadsto \color{blue}{\frac{\sqrt[3]{0.5 \cdot \left(\sqrt{\mathsf{fma}\left(g, g, -h \cdot h\right)} - g\right)}}{\sqrt[3]{a}}} + \sqrt[3]{\frac{g + \sqrt{\mathsf{fma}\left(g, g, -h \cdot h\right)}}{\frac{a}{-0.5}}} \]
  5. Applied egg-rr49.0%

    \[\leadsto \color{blue}{\frac{\sqrt[3]{0.5 \cdot \left(\mathsf{hypot}\left(g, h\right) - g\right)}}{\sqrt[3]{a}}} + \sqrt[3]{\frac{g + \sqrt{\mathsf{fma}\left(g, g, -h \cdot h\right)}}{\frac{a}{-0.5}}} \]
  6. Step-by-step derivation
    1. div-inv49.1%

      \[\leadsto \frac{\sqrt[3]{0.5 \cdot \left(\mathsf{hypot}\left(g, h\right) - g\right)}}{\sqrt[3]{a}} + \sqrt[3]{\color{blue}{\left(g + \sqrt{\mathsf{fma}\left(g, g, -h \cdot h\right)}\right) \cdot \frac{1}{\frac{a}{-0.5}}}} \]
    2. clear-num49.1%

      \[\leadsto \frac{\sqrt[3]{0.5 \cdot \left(\mathsf{hypot}\left(g, h\right) - g\right)}}{\sqrt[3]{a}} + \sqrt[3]{\left(g + \sqrt{\mathsf{fma}\left(g, g, -h \cdot h\right)}\right) \cdot \color{blue}{\frac{-0.5}{a}}} \]
    3. cbrt-prod51.6%

      \[\leadsto \frac{\sqrt[3]{0.5 \cdot \left(\mathsf{hypot}\left(g, h\right) - g\right)}}{\sqrt[3]{a}} + \color{blue}{\sqrt[3]{g + \sqrt{\mathsf{fma}\left(g, g, -h \cdot h\right)}} \cdot \sqrt[3]{\frac{-0.5}{a}}} \]
  7. Applied egg-rr97.2%

    \[\leadsto \frac{\sqrt[3]{0.5 \cdot \left(\mathsf{hypot}\left(g, h\right) - g\right)}}{\sqrt[3]{a}} + \color{blue}{\sqrt[3]{g + \mathsf{hypot}\left(g, h\right)} \cdot \sqrt[3]{\frac{-0.5}{a}}} \]
  8. Step-by-step derivation
    1. *-commutative97.2%

      \[\leadsto \frac{\sqrt[3]{0.5 \cdot \left(\mathsf{hypot}\left(g, h\right) - g\right)}}{\sqrt[3]{a}} + \color{blue}{\sqrt[3]{\frac{-0.5}{a}} \cdot \sqrt[3]{g + \mathsf{hypot}\left(g, h\right)}} \]
  9. Simplified97.2%

    \[\leadsto \frac{\sqrt[3]{0.5 \cdot \left(\mathsf{hypot}\left(g, h\right) - g\right)}}{\sqrt[3]{a}} + \color{blue}{\sqrt[3]{\frac{-0.5}{a}} \cdot \sqrt[3]{g + \mathsf{hypot}\left(g, h\right)}} \]
  10. Final simplification97.2%

    \[\leadsto \frac{\sqrt[3]{0.5 \cdot \left(\mathsf{hypot}\left(g, h\right) - g\right)}}{\sqrt[3]{a}} + \sqrt[3]{\frac{-0.5}{a}} \cdot \sqrt[3]{g + \mathsf{hypot}\left(g, h\right)} \]

Alternative 2: 95.5% accurate, 1.4× speedup?

\[\begin{array}{l} \\ \sqrt[3]{\frac{-0.5}{a} \cdot 0} + \frac{\sqrt[3]{g}}{\sqrt[3]{-a}} \end{array} \]
(FPCore (g h a)
 :precision binary64
 (+ (cbrt (* (/ -0.5 a) 0.0)) (/ (cbrt g) (cbrt (- a)))))
double code(double g, double h, double a) {
	return cbrt(((-0.5 / a) * 0.0)) + (cbrt(g) / cbrt(-a));
}
public static double code(double g, double h, double a) {
	return Math.cbrt(((-0.5 / a) * 0.0)) + (Math.cbrt(g) / Math.cbrt(-a));
}
function code(g, h, a)
	return Float64(cbrt(Float64(Float64(-0.5 / a) * 0.0)) + Float64(cbrt(g) / cbrt(Float64(-a))))
end
code[g_, h_, a_] := N[(N[Power[N[(N[(-0.5 / a), $MachinePrecision] * 0.0), $MachinePrecision], 1/3], $MachinePrecision] + N[(N[Power[g, 1/3], $MachinePrecision] / N[Power[(-a), 1/3], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\sqrt[3]{\frac{-0.5}{a} \cdot 0} + \frac{\sqrt[3]{g}}{\sqrt[3]{-a}}
\end{array}
Derivation
  1. Initial program 43.2%

    \[\sqrt[3]{\frac{1}{2 \cdot a} \cdot \left(\left(-g\right) + \sqrt{g \cdot g - h \cdot h}\right)} + \sqrt[3]{\frac{1}{2 \cdot a} \cdot \left(\left(-g\right) - \sqrt{g \cdot g - h \cdot h}\right)} \]
  2. Step-by-step derivation
    1. Simplified43.2%

      \[\leadsto \color{blue}{\sqrt[3]{\left(g - \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}}} \]
    2. Taylor expanded in g around inf 22.1%

      \[\leadsto \sqrt[3]{\color{blue}{\left(-0.5 \cdot \left(h + -1 \cdot h\right)\right)} \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
    3. Step-by-step derivation
      1. distribute-rgt1-in22.1%

        \[\leadsto \sqrt[3]{\left(-0.5 \cdot \color{blue}{\left(\left(-1 + 1\right) \cdot h\right)}\right) \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
      2. metadata-eval22.1%

        \[\leadsto \sqrt[3]{\left(-0.5 \cdot \left(\color{blue}{0} \cdot h\right)\right) \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
      3. mul0-lft22.1%

        \[\leadsto \sqrt[3]{\left(-0.5 \cdot \color{blue}{0}\right) \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
      4. metadata-eval22.1%

        \[\leadsto \sqrt[3]{\color{blue}{0} \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
    4. Simplified22.1%

      \[\leadsto \sqrt[3]{\color{blue}{0} \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
    5. Taylor expanded in g around inf 70.5%

      \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \sqrt[3]{\color{blue}{-1 \cdot \frac{g}{a}}} \]
    6. Step-by-step derivation
      1. associate-*r/70.5%

        \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \sqrt[3]{\color{blue}{\frac{-1 \cdot g}{a}}} \]
      2. neg-mul-170.5%

        \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \sqrt[3]{\frac{\color{blue}{-g}}{a}} \]
    7. Simplified70.5%

      \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \sqrt[3]{\color{blue}{\frac{-g}{a}}} \]
    8. Step-by-step derivation
      1. frac-2neg70.5%

        \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \sqrt[3]{\color{blue}{\frac{-\left(-g\right)}{-a}}} \]
      2. cbrt-div97.1%

        \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \color{blue}{\frac{\sqrt[3]{-\left(-g\right)}}{\sqrt[3]{-a}}} \]
      3. remove-double-neg97.1%

        \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \frac{\sqrt[3]{\color{blue}{g}}}{\sqrt[3]{-a}} \]
    9. Applied egg-rr97.1%

      \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \color{blue}{\frac{\sqrt[3]{g}}{\sqrt[3]{-a}}} \]
    10. Final simplification97.1%

      \[\leadsto \sqrt[3]{\frac{-0.5}{a} \cdot 0} + \frac{\sqrt[3]{g}}{\sqrt[3]{-a}} \]

    Alternative 3: 73.6% accurate, 2.0× speedup?

    \[\begin{array}{l} \\ \sqrt[3]{\frac{-0.5}{a} \cdot 0} + \sqrt[3]{\frac{-0.5}{a} \cdot \left(g + g\right)} \end{array} \]
    (FPCore (g h a)
     :precision binary64
     (+ (cbrt (* (/ -0.5 a) 0.0)) (cbrt (* (/ -0.5 a) (+ g g)))))
    double code(double g, double h, double a) {
    	return cbrt(((-0.5 / a) * 0.0)) + cbrt(((-0.5 / a) * (g + g)));
    }
    
    public static double code(double g, double h, double a) {
    	return Math.cbrt(((-0.5 / a) * 0.0)) + Math.cbrt(((-0.5 / a) * (g + g)));
    }
    
    function code(g, h, a)
    	return Float64(cbrt(Float64(Float64(-0.5 / a) * 0.0)) + cbrt(Float64(Float64(-0.5 / a) * Float64(g + g))))
    end
    
    code[g_, h_, a_] := N[(N[Power[N[(N[(-0.5 / a), $MachinePrecision] * 0.0), $MachinePrecision], 1/3], $MachinePrecision] + N[Power[N[(N[(-0.5 / a), $MachinePrecision] * N[(g + g), $MachinePrecision]), $MachinePrecision], 1/3], $MachinePrecision]), $MachinePrecision]
    
    \begin{array}{l}
    
    \\
    \sqrt[3]{\frac{-0.5}{a} \cdot 0} + \sqrt[3]{\frac{-0.5}{a} \cdot \left(g + g\right)}
    \end{array}
    
    Derivation
    1. Initial program 43.2%

      \[\sqrt[3]{\frac{1}{2 \cdot a} \cdot \left(\left(-g\right) + \sqrt{g \cdot g - h \cdot h}\right)} + \sqrt[3]{\frac{1}{2 \cdot a} \cdot \left(\left(-g\right) - \sqrt{g \cdot g - h \cdot h}\right)} \]
    2. Step-by-step derivation
      1. Simplified43.2%

        \[\leadsto \color{blue}{\sqrt[3]{\left(g - \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}}} \]
      2. Taylor expanded in g around inf 22.1%

        \[\leadsto \sqrt[3]{\color{blue}{\left(-0.5 \cdot \left(h + -1 \cdot h\right)\right)} \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
      3. Step-by-step derivation
        1. distribute-rgt1-in22.1%

          \[\leadsto \sqrt[3]{\left(-0.5 \cdot \color{blue}{\left(\left(-1 + 1\right) \cdot h\right)}\right) \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
        2. metadata-eval22.1%

          \[\leadsto \sqrt[3]{\left(-0.5 \cdot \left(\color{blue}{0} \cdot h\right)\right) \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
        3. mul0-lft22.1%

          \[\leadsto \sqrt[3]{\left(-0.5 \cdot \color{blue}{0}\right) \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
        4. metadata-eval22.1%

          \[\leadsto \sqrt[3]{\color{blue}{0} \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
      4. Simplified22.1%

        \[\leadsto \sqrt[3]{\color{blue}{0} \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
      5. Taylor expanded in g around inf 70.6%

        \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \color{blue}{g}\right) \cdot \frac{-0.5}{a}} \]
      6. Final simplification70.6%

        \[\leadsto \sqrt[3]{\frac{-0.5}{a} \cdot 0} + \sqrt[3]{\frac{-0.5}{a} \cdot \left(g + g\right)} \]

      Alternative 4: 73.7% accurate, 2.1× speedup?

      \[\begin{array}{l} \\ \sqrt[3]{\frac{-0.5}{a} \cdot 0} + \sqrt[3]{-\frac{g}{a}} \end{array} \]
      (FPCore (g h a)
       :precision binary64
       (+ (cbrt (* (/ -0.5 a) 0.0)) (cbrt (- (/ g a)))))
      double code(double g, double h, double a) {
      	return cbrt(((-0.5 / a) * 0.0)) + cbrt(-(g / a));
      }
      
      public static double code(double g, double h, double a) {
      	return Math.cbrt(((-0.5 / a) * 0.0)) + Math.cbrt(-(g / a));
      }
      
      function code(g, h, a)
      	return Float64(cbrt(Float64(Float64(-0.5 / a) * 0.0)) + cbrt(Float64(-Float64(g / a))))
      end
      
      code[g_, h_, a_] := N[(N[Power[N[(N[(-0.5 / a), $MachinePrecision] * 0.0), $MachinePrecision], 1/3], $MachinePrecision] + N[Power[(-N[(g / a), $MachinePrecision]), 1/3], $MachinePrecision]), $MachinePrecision]
      
      \begin{array}{l}
      
      \\
      \sqrt[3]{\frac{-0.5}{a} \cdot 0} + \sqrt[3]{-\frac{g}{a}}
      \end{array}
      
      Derivation
      1. Initial program 43.2%

        \[\sqrt[3]{\frac{1}{2 \cdot a} \cdot \left(\left(-g\right) + \sqrt{g \cdot g - h \cdot h}\right)} + \sqrt[3]{\frac{1}{2 \cdot a} \cdot \left(\left(-g\right) - \sqrt{g \cdot g - h \cdot h}\right)} \]
      2. Step-by-step derivation
        1. Simplified43.2%

          \[\leadsto \color{blue}{\sqrt[3]{\left(g - \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}}} \]
        2. Taylor expanded in g around inf 22.1%

          \[\leadsto \sqrt[3]{\color{blue}{\left(-0.5 \cdot \left(h + -1 \cdot h\right)\right)} \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
        3. Step-by-step derivation
          1. distribute-rgt1-in22.1%

            \[\leadsto \sqrt[3]{\left(-0.5 \cdot \color{blue}{\left(\left(-1 + 1\right) \cdot h\right)}\right) \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
          2. metadata-eval22.1%

            \[\leadsto \sqrt[3]{\left(-0.5 \cdot \left(\color{blue}{0} \cdot h\right)\right) \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
          3. mul0-lft22.1%

            \[\leadsto \sqrt[3]{\left(-0.5 \cdot \color{blue}{0}\right) \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
          4. metadata-eval22.1%

            \[\leadsto \sqrt[3]{\color{blue}{0} \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
        4. Simplified22.1%

          \[\leadsto \sqrt[3]{\color{blue}{0} \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
        5. Taylor expanded in g around inf 70.5%

          \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \sqrt[3]{\color{blue}{-1 \cdot \frac{g}{a}}} \]
        6. Step-by-step derivation
          1. associate-*r/70.5%

            \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \sqrt[3]{\color{blue}{\frac{-1 \cdot g}{a}}} \]
          2. neg-mul-170.5%

            \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \sqrt[3]{\frac{\color{blue}{-g}}{a}} \]
        7. Simplified70.5%

          \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \sqrt[3]{\color{blue}{\frac{-g}{a}}} \]
        8. Final simplification70.5%

          \[\leadsto \sqrt[3]{\frac{-0.5}{a} \cdot 0} + \sqrt[3]{-\frac{g}{a}} \]

        Alternative 5: 1.4% accurate, 2.1× speedup?

        \[\begin{array}{l} \\ \sqrt[3]{\frac{-0.5}{a} \cdot 0} + \sqrt[3]{\frac{g}{a}} \end{array} \]
        (FPCore (g h a)
         :precision binary64
         (+ (cbrt (* (/ -0.5 a) 0.0)) (cbrt (/ g a))))
        double code(double g, double h, double a) {
        	return cbrt(((-0.5 / a) * 0.0)) + cbrt((g / a));
        }
        
        public static double code(double g, double h, double a) {
        	return Math.cbrt(((-0.5 / a) * 0.0)) + Math.cbrt((g / a));
        }
        
        function code(g, h, a)
        	return Float64(cbrt(Float64(Float64(-0.5 / a) * 0.0)) + cbrt(Float64(g / a)))
        end
        
        code[g_, h_, a_] := N[(N[Power[N[(N[(-0.5 / a), $MachinePrecision] * 0.0), $MachinePrecision], 1/3], $MachinePrecision] + N[Power[N[(g / a), $MachinePrecision], 1/3], $MachinePrecision]), $MachinePrecision]
        
        \begin{array}{l}
        
        \\
        \sqrt[3]{\frac{-0.5}{a} \cdot 0} + \sqrt[3]{\frac{g}{a}}
        \end{array}
        
        Derivation
        1. Initial program 43.2%

          \[\sqrt[3]{\frac{1}{2 \cdot a} \cdot \left(\left(-g\right) + \sqrt{g \cdot g - h \cdot h}\right)} + \sqrt[3]{\frac{1}{2 \cdot a} \cdot \left(\left(-g\right) - \sqrt{g \cdot g - h \cdot h}\right)} \]
        2. Step-by-step derivation
          1. Simplified43.2%

            \[\leadsto \color{blue}{\sqrt[3]{\left(g - \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}}} \]
          2. Taylor expanded in g around inf 22.1%

            \[\leadsto \sqrt[3]{\color{blue}{\left(-0.5 \cdot \left(h + -1 \cdot h\right)\right)} \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
          3. Step-by-step derivation
            1. distribute-rgt1-in22.1%

              \[\leadsto \sqrt[3]{\left(-0.5 \cdot \color{blue}{\left(\left(-1 + 1\right) \cdot h\right)}\right) \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
            2. metadata-eval22.1%

              \[\leadsto \sqrt[3]{\left(-0.5 \cdot \left(\color{blue}{0} \cdot h\right)\right) \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
            3. mul0-lft22.1%

              \[\leadsto \sqrt[3]{\left(-0.5 \cdot \color{blue}{0}\right) \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
            4. metadata-eval22.1%

              \[\leadsto \sqrt[3]{\color{blue}{0} \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
          4. Simplified22.1%

            \[\leadsto \sqrt[3]{\color{blue}{0} \cdot \frac{-0.5}{a}} + \sqrt[3]{\left(g + \sqrt{\left(g + h\right) \cdot \left(g - h\right)}\right) \cdot \frac{-0.5}{a}} \]
          5. Taylor expanded in g around inf 70.5%

            \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \sqrt[3]{\color{blue}{-1 \cdot \frac{g}{a}}} \]
          6. Step-by-step derivation
            1. associate-*r/70.5%

              \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \sqrt[3]{\color{blue}{\frac{-1 \cdot g}{a}}} \]
            2. neg-mul-170.5%

              \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \sqrt[3]{\frac{\color{blue}{-g}}{a}} \]
          7. Simplified70.5%

            \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \sqrt[3]{\color{blue}{\frac{-g}{a}}} \]
          8. Step-by-step derivation
            1. expm1-log1p-u47.4%

              \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \color{blue}{\mathsf{expm1}\left(\mathsf{log1p}\left(\sqrt[3]{\frac{-g}{a}}\right)\right)} \]
            2. expm1-udef28.6%

              \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \color{blue}{\left(e^{\mathsf{log1p}\left(\sqrt[3]{\frac{-g}{a}}\right)} - 1\right)} \]
            3. add-sqr-sqrt12.3%

              \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \left(e^{\mathsf{log1p}\left(\sqrt[3]{\frac{\color{blue}{\sqrt{-g} \cdot \sqrt{-g}}}{a}}\right)} - 1\right) \]
            4. sqrt-unprod9.7%

              \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \left(e^{\mathsf{log1p}\left(\sqrt[3]{\frac{\color{blue}{\sqrt{\left(-g\right) \cdot \left(-g\right)}}}{a}}\right)} - 1\right) \]
            5. sqr-neg9.7%

              \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \left(e^{\mathsf{log1p}\left(\sqrt[3]{\frac{\sqrt{\color{blue}{g \cdot g}}}{a}}\right)} - 1\right) \]
            6. sqrt-unprod0.5%

              \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \left(e^{\mathsf{log1p}\left(\sqrt[3]{\frac{\color{blue}{\sqrt{g} \cdot \sqrt{g}}}{a}}\right)} - 1\right) \]
            7. add-sqr-sqrt1.2%

              \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \left(e^{\mathsf{log1p}\left(\sqrt[3]{\frac{\color{blue}{g}}{a}}\right)} - 1\right) \]
          9. Applied egg-rr1.2%

            \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \color{blue}{\left(e^{\mathsf{log1p}\left(\sqrt[3]{\frac{g}{a}}\right)} - 1\right)} \]
          10. Step-by-step derivation
            1. expm1-def1.0%

              \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \color{blue}{\mathsf{expm1}\left(\mathsf{log1p}\left(\sqrt[3]{\frac{g}{a}}\right)\right)} \]
            2. expm1-log1p1.3%

              \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \color{blue}{\sqrt[3]{\frac{g}{a}}} \]
          11. Simplified1.3%

            \[\leadsto \sqrt[3]{0 \cdot \frac{-0.5}{a}} + \color{blue}{\sqrt[3]{\frac{g}{a}}} \]
          12. Final simplification1.3%

            \[\leadsto \sqrt[3]{\frac{-0.5}{a} \cdot 0} + \sqrt[3]{\frac{g}{a}} \]

          Reproduce

          ?
          herbie shell --seed 2023215 
          (FPCore (g h a)
            :name "2-ancestry mixing, positive discriminant"
            :precision binary64
            (+ (cbrt (* (/ 1.0 (* 2.0 a)) (+ (- g) (sqrt (- (* g g) (* h h)))))) (cbrt (* (/ 1.0 (* 2.0 a)) (- (- g) (sqrt (- (* g g) (* h h))))))))