2-ancestry mixing, negative discriminant

Percentage Accurate: 98.5% → 99.9%
Time: 7.9s
Alternatives: 5
Speedup: 1.0×

Specification

?
\[\begin{array}{l} \\ 2 \cdot \cos \left(\frac{2 \cdot \pi}{3} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \end{array} \]
(FPCore (g h)
 :precision binary64
 (* 2.0 (cos (+ (/ (* 2.0 PI) 3.0) (/ (acos (/ (- g) h)) 3.0)))))
double code(double g, double h) {
	return 2.0 * cos((((2.0 * ((double) M_PI)) / 3.0) + (acos((-g / h)) / 3.0)));
}
public static double code(double g, double h) {
	return 2.0 * Math.cos((((2.0 * Math.PI) / 3.0) + (Math.acos((-g / h)) / 3.0)));
}
def code(g, h):
	return 2.0 * math.cos((((2.0 * math.pi) / 3.0) + (math.acos((-g / h)) / 3.0)))
function code(g, h)
	return Float64(2.0 * cos(Float64(Float64(Float64(2.0 * pi) / 3.0) + Float64(acos(Float64(Float64(-g) / h)) / 3.0))))
end
function tmp = code(g, h)
	tmp = 2.0 * cos((((2.0 * pi) / 3.0) + (acos((-g / h)) / 3.0)));
end
code[g_, h_] := N[(2.0 * N[Cos[N[(N[(N[(2.0 * Pi), $MachinePrecision] / 3.0), $MachinePrecision] + N[(N[ArcCos[N[((-g) / h), $MachinePrecision]], $MachinePrecision] / 3.0), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
2 \cdot \cos \left(\frac{2 \cdot \pi}{3} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\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: 98.5% accurate, 1.0× speedup?

\[\begin{array}{l} \\ 2 \cdot \cos \left(\frac{2 \cdot \pi}{3} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \end{array} \]
(FPCore (g h)
 :precision binary64
 (* 2.0 (cos (+ (/ (* 2.0 PI) 3.0) (/ (acos (/ (- g) h)) 3.0)))))
double code(double g, double h) {
	return 2.0 * cos((((2.0 * ((double) M_PI)) / 3.0) + (acos((-g / h)) / 3.0)));
}
public static double code(double g, double h) {
	return 2.0 * Math.cos((((2.0 * Math.PI) / 3.0) + (Math.acos((-g / h)) / 3.0)));
}
def code(g, h):
	return 2.0 * math.cos((((2.0 * math.pi) / 3.0) + (math.acos((-g / h)) / 3.0)))
function code(g, h)
	return Float64(2.0 * cos(Float64(Float64(Float64(2.0 * pi) / 3.0) + Float64(acos(Float64(Float64(-g) / h)) / 3.0))))
end
function tmp = code(g, h)
	tmp = 2.0 * cos((((2.0 * pi) / 3.0) + (acos((-g / h)) / 3.0)));
end
code[g_, h_] := N[(2.0 * N[Cos[N[(N[(N[(2.0 * Pi), $MachinePrecision] / 3.0), $MachinePrecision] + N[(N[ArcCos[N[((-g) / h), $MachinePrecision]], $MachinePrecision] / 3.0), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
2 \cdot \cos \left(\frac{2 \cdot \pi}{3} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right)
\end{array}

Alternative 1: 99.9% accurate, 0.2× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \cos \left(\mathsf{fma}\left(\cos^{-1} \left(\frac{g}{-h}\right), 0.3333333333333333, \pi \cdot 0.6666666666666666\right)\right)\\ 2 \cdot \left(\sqrt[3]{{t\_0}^{2}} \cdot \sqrt[3]{t\_0}\right) \end{array} \end{array} \]
(FPCore (g h)
 :precision binary64
 (let* ((t_0
         (cos
          (fma
           (acos (/ g (- h)))
           0.3333333333333333
           (* PI 0.6666666666666666)))))
   (* 2.0 (* (cbrt (pow t_0 2.0)) (cbrt t_0)))))
double code(double g, double h) {
	double t_0 = cos(fma(acos((g / -h)), 0.3333333333333333, (((double) M_PI) * 0.6666666666666666)));
	return 2.0 * (cbrt(pow(t_0, 2.0)) * cbrt(t_0));
}
function code(g, h)
	t_0 = cos(fma(acos(Float64(g / Float64(-h))), 0.3333333333333333, Float64(pi * 0.6666666666666666)))
	return Float64(2.0 * Float64(cbrt((t_0 ^ 2.0)) * cbrt(t_0)))
end
code[g_, h_] := Block[{t$95$0 = N[Cos[N[(N[ArcCos[N[(g / (-h)), $MachinePrecision]], $MachinePrecision] * 0.3333333333333333 + N[(Pi * 0.6666666666666666), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, N[(2.0 * N[(N[Power[N[Power[t$95$0, 2.0], $MachinePrecision], 1/3], $MachinePrecision] * N[Power[t$95$0, 1/3], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \cos \left(\mathsf{fma}\left(\cos^{-1} \left(\frac{g}{-h}\right), 0.3333333333333333, \pi \cdot 0.6666666666666666\right)\right)\\
2 \cdot \left(\sqrt[3]{{t\_0}^{2}} \cdot \sqrt[3]{t\_0}\right)
\end{array}
\end{array}
Derivation
  1. Initial program 98.5%

    \[2 \cdot \cos \left(\frac{2 \cdot \pi}{3} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
  2. Step-by-step derivation
    1. *-commutative98.5%

      \[\leadsto 2 \cdot \cos \left(\frac{\color{blue}{\pi \cdot 2}}{3} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
    2. associate-/l*98.5%

      \[\leadsto 2 \cdot \cos \left(\color{blue}{\pi \cdot \frac{2}{3}} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
    3. metadata-eval98.5%

      \[\leadsto 2 \cdot \cos \left(\pi \cdot \color{blue}{0.6666666666666666} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
    4. distribute-frac-neg98.5%

      \[\leadsto 2 \cdot \cos \left(\pi \cdot 0.6666666666666666 + \frac{\cos^{-1} \color{blue}{\left(-\frac{g}{h}\right)}}{3}\right) \]
    5. distribute-frac-neg298.5%

      \[\leadsto 2 \cdot \cos \left(\pi \cdot 0.6666666666666666 + \frac{\cos^{-1} \color{blue}{\left(\frac{g}{-h}\right)}}{3}\right) \]
  3. Simplified98.5%

    \[\leadsto \color{blue}{2 \cdot \cos \left(\pi \cdot 0.6666666666666666 + \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right)} \]
  4. Add Preprocessing
  5. Step-by-step derivation
    1. add-cbrt-cube98.5%

      \[\leadsto 2 \cdot \cos \left(\color{blue}{\sqrt[3]{\left(\pi \cdot \pi\right) \cdot \pi}} \cdot 0.6666666666666666 + \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right) \]
    2. pow398.5%

      \[\leadsto 2 \cdot \cos \left(\sqrt[3]{\color{blue}{{\pi}^{3}}} \cdot 0.6666666666666666 + \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right) \]
  6. Applied egg-rr98.5%

    \[\leadsto 2 \cdot \cos \left(\color{blue}{\sqrt[3]{{\pi}^{3}}} \cdot 0.6666666666666666 + \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right) \]
  7. Step-by-step derivation
    1. add-cube-cbrt98.4%

      \[\leadsto 2 \cdot \color{blue}{\left(\left(\sqrt[3]{\cos \left(\sqrt[3]{{\pi}^{3}} \cdot 0.6666666666666666 + \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right)} \cdot \sqrt[3]{\cos \left(\sqrt[3]{{\pi}^{3}} \cdot 0.6666666666666666 + \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right)}\right) \cdot \sqrt[3]{\cos \left(\sqrt[3]{{\pi}^{3}} \cdot 0.6666666666666666 + \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right)}\right)} \]
  8. Applied egg-rr99.9%

    \[\leadsto 2 \cdot \color{blue}{\left(\sqrt[3]{{\cos \left(\mathsf{fma}\left(\cos^{-1} \left(\frac{g}{-h}\right), 0.3333333333333333, \pi \cdot 0.6666666666666666\right)\right)}^{2}} \cdot \sqrt[3]{\cos \left(\mathsf{fma}\left(\cos^{-1} \left(\frac{g}{-h}\right), 0.3333333333333333, \pi \cdot 0.6666666666666666\right)\right)}\right)} \]
  9. Add Preprocessing

Alternative 2: 98.4% accurate, 0.3× speedup?

\[\begin{array}{l} \\ 2 \cdot \mathsf{log1p}\left(\mathsf{expm1}\left(\cos \left(\mathsf{fma}\left(\cos^{-1} \left(\frac{g}{-h}\right), 0.3333333333333333, \sqrt[3]{{\left(\pi \cdot 0.6666666666666666\right)}^{3}}\right)\right)\right)\right) \end{array} \]
(FPCore (g h)
 :precision binary64
 (*
  2.0
  (log1p
   (expm1
    (cos
     (fma
      (acos (/ g (- h)))
      0.3333333333333333
      (cbrt (pow (* PI 0.6666666666666666) 3.0))))))))
double code(double g, double h) {
	return 2.0 * log1p(expm1(cos(fma(acos((g / -h)), 0.3333333333333333, cbrt(pow((((double) M_PI) * 0.6666666666666666), 3.0))))));
}
function code(g, h)
	return Float64(2.0 * log1p(expm1(cos(fma(acos(Float64(g / Float64(-h))), 0.3333333333333333, cbrt((Float64(pi * 0.6666666666666666) ^ 3.0)))))))
end
code[g_, h_] := N[(2.0 * N[Log[1 + N[(Exp[N[Cos[N[(N[ArcCos[N[(g / (-h)), $MachinePrecision]], $MachinePrecision] * 0.3333333333333333 + N[Power[N[Power[N[(Pi * 0.6666666666666666), $MachinePrecision], 3.0], $MachinePrecision], 1/3], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]] - 1), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
2 \cdot \mathsf{log1p}\left(\mathsf{expm1}\left(\cos \left(\mathsf{fma}\left(\cos^{-1} \left(\frac{g}{-h}\right), 0.3333333333333333, \sqrt[3]{{\left(\pi \cdot 0.6666666666666666\right)}^{3}}\right)\right)\right)\right)
\end{array}
Derivation
  1. Initial program 98.5%

    \[2 \cdot \cos \left(\frac{2 \cdot \pi}{3} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
  2. Step-by-step derivation
    1. *-commutative98.5%

      \[\leadsto 2 \cdot \cos \left(\frac{\color{blue}{\pi \cdot 2}}{3} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
    2. associate-/l*98.5%

      \[\leadsto 2 \cdot \cos \left(\color{blue}{\pi \cdot \frac{2}{3}} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
    3. metadata-eval98.5%

      \[\leadsto 2 \cdot \cos \left(\pi \cdot \color{blue}{0.6666666666666666} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
    4. distribute-frac-neg98.5%

      \[\leadsto 2 \cdot \cos \left(\pi \cdot 0.6666666666666666 + \frac{\cos^{-1} \color{blue}{\left(-\frac{g}{h}\right)}}{3}\right) \]
    5. distribute-frac-neg298.5%

      \[\leadsto 2 \cdot \cos \left(\pi \cdot 0.6666666666666666 + \frac{\cos^{-1} \color{blue}{\left(\frac{g}{-h}\right)}}{3}\right) \]
  3. Simplified98.5%

    \[\leadsto \color{blue}{2 \cdot \cos \left(\pi \cdot 0.6666666666666666 + \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right)} \]
  4. Add Preprocessing
  5. Step-by-step derivation
    1. add-cbrt-cube98.5%

      \[\leadsto 2 \cdot \cos \left(\color{blue}{\sqrt[3]{\left(\pi \cdot \pi\right) \cdot \pi}} \cdot 0.6666666666666666 + \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right) \]
    2. pow398.5%

      \[\leadsto 2 \cdot \cos \left(\sqrt[3]{\color{blue}{{\pi}^{3}}} \cdot 0.6666666666666666 + \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right) \]
  6. Applied egg-rr98.5%

    \[\leadsto 2 \cdot \cos \left(\color{blue}{\sqrt[3]{{\pi}^{3}}} \cdot 0.6666666666666666 + \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right) \]
  7. Step-by-step derivation
    1. log1p-expm1-u98.5%

      \[\leadsto 2 \cdot \color{blue}{\mathsf{log1p}\left(\mathsf{expm1}\left(\cos \left(\sqrt[3]{{\pi}^{3}} \cdot 0.6666666666666666 + \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right)\right)\right)} \]
    2. +-commutative98.5%

      \[\leadsto 2 \cdot \mathsf{log1p}\left(\mathsf{expm1}\left(\cos \color{blue}{\left(\frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3} + \sqrt[3]{{\pi}^{3}} \cdot 0.6666666666666666\right)}\right)\right) \]
    3. div-inv98.5%

      \[\leadsto 2 \cdot \mathsf{log1p}\left(\mathsf{expm1}\left(\cos \left(\color{blue}{\cos^{-1} \left(\frac{g}{-h}\right) \cdot \frac{1}{3}} + \sqrt[3]{{\pi}^{3}} \cdot 0.6666666666666666\right)\right)\right) \]
    4. metadata-eval98.5%

      \[\leadsto 2 \cdot \mathsf{log1p}\left(\mathsf{expm1}\left(\cos \left(\cos^{-1} \left(\frac{g}{-h}\right) \cdot \color{blue}{0.3333333333333333} + \sqrt[3]{{\pi}^{3}} \cdot 0.6666666666666666\right)\right)\right) \]
    5. rem-cbrt-cube98.4%

      \[\leadsto 2 \cdot \mathsf{log1p}\left(\mathsf{expm1}\left(\cos \left(\cos^{-1} \left(\frac{g}{-h}\right) \cdot 0.3333333333333333 + \color{blue}{\pi} \cdot 0.6666666666666666\right)\right)\right) \]
    6. fma-define98.4%

      \[\leadsto 2 \cdot \mathsf{log1p}\left(\mathsf{expm1}\left(\cos \color{blue}{\left(\mathsf{fma}\left(\cos^{-1} \left(\frac{g}{-h}\right), 0.3333333333333333, \pi \cdot 0.6666666666666666\right)\right)}\right)\right) \]
  8. Applied egg-rr98.4%

    \[\leadsto 2 \cdot \color{blue}{\mathsf{log1p}\left(\mathsf{expm1}\left(\cos \left(\mathsf{fma}\left(\cos^{-1} \left(\frac{g}{-h}\right), 0.3333333333333333, \pi \cdot 0.6666666666666666\right)\right)\right)\right)} \]
  9. Step-by-step derivation
    1. add-cbrt-cube98.5%

      \[\leadsto 2 \cdot \mathsf{log1p}\left(\mathsf{expm1}\left(\cos \left(\mathsf{fma}\left(\cos^{-1} \left(\frac{g}{-h}\right), 0.3333333333333333, \color{blue}{\sqrt[3]{\left(\left(\pi \cdot 0.6666666666666666\right) \cdot \left(\pi \cdot 0.6666666666666666\right)\right) \cdot \left(\pi \cdot 0.6666666666666666\right)}}\right)\right)\right)\right) \]
    2. pow398.5%

      \[\leadsto 2 \cdot \mathsf{log1p}\left(\mathsf{expm1}\left(\cos \left(\mathsf{fma}\left(\cos^{-1} \left(\frac{g}{-h}\right), 0.3333333333333333, \sqrt[3]{\color{blue}{{\left(\pi \cdot 0.6666666666666666\right)}^{3}}}\right)\right)\right)\right) \]
  10. Applied egg-rr98.5%

    \[\leadsto 2 \cdot \mathsf{log1p}\left(\mathsf{expm1}\left(\cos \left(\mathsf{fma}\left(\cos^{-1} \left(\frac{g}{-h}\right), 0.3333333333333333, \color{blue}{\sqrt[3]{{\left(\pi \cdot 0.6666666666666666\right)}^{3}}}\right)\right)\right)\right) \]
  11. Add Preprocessing

Alternative 3: 98.5% accurate, 0.7× speedup?

\[\begin{array}{l} \\ 2 \cdot \cos \left(\mathsf{fma}\left(\pi, 0.6666666666666666, \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right)\right) \end{array} \]
(FPCore (g h)
 :precision binary64
 (* 2.0 (cos (fma PI 0.6666666666666666 (/ (acos (/ g (- h))) 3.0)))))
double code(double g, double h) {
	return 2.0 * cos(fma(((double) M_PI), 0.6666666666666666, (acos((g / -h)) / 3.0)));
}
function code(g, h)
	return Float64(2.0 * cos(fma(pi, 0.6666666666666666, Float64(acos(Float64(g / Float64(-h))) / 3.0))))
end
code[g_, h_] := N[(2.0 * N[Cos[N[(Pi * 0.6666666666666666 + N[(N[ArcCos[N[(g / (-h)), $MachinePrecision]], $MachinePrecision] / 3.0), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
2 \cdot \cos \left(\mathsf{fma}\left(\pi, 0.6666666666666666, \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right)\right)
\end{array}
Derivation
  1. Initial program 98.5%

    \[2 \cdot \cos \left(\frac{2 \cdot \pi}{3} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
  2. Step-by-step derivation
    1. *-commutative98.5%

      \[\leadsto 2 \cdot \cos \left(\frac{\color{blue}{\pi \cdot 2}}{3} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
    2. associate-/l*98.5%

      \[\leadsto 2 \cdot \cos \left(\color{blue}{\pi \cdot \frac{2}{3}} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
    3. fma-define98.5%

      \[\leadsto 2 \cdot \cos \color{blue}{\left(\mathsf{fma}\left(\pi, \frac{2}{3}, \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right)\right)} \]
    4. metadata-eval98.5%

      \[\leadsto 2 \cdot \cos \left(\mathsf{fma}\left(\pi, \color{blue}{0.6666666666666666}, \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right)\right) \]
    5. distribute-frac-neg98.5%

      \[\leadsto 2 \cdot \cos \left(\mathsf{fma}\left(\pi, 0.6666666666666666, \frac{\cos^{-1} \color{blue}{\left(-\frac{g}{h}\right)}}{3}\right)\right) \]
    6. distribute-frac-neg298.5%

      \[\leadsto 2 \cdot \cos \left(\mathsf{fma}\left(\pi, 0.6666666666666666, \frac{\cos^{-1} \color{blue}{\left(\frac{g}{-h}\right)}}{3}\right)\right) \]
  3. Simplified98.5%

    \[\leadsto \color{blue}{2 \cdot \cos \left(\mathsf{fma}\left(\pi, 0.6666666666666666, \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right)\right)} \]
  4. Add Preprocessing
  5. Add Preprocessing

Alternative 4: 98.5% accurate, 1.0× speedup?

\[\begin{array}{l} \\ 2 \cdot \cos \left(\pi \cdot 0.6666666666666666 + \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right) \end{array} \]
(FPCore (g h)
 :precision binary64
 (* 2.0 (cos (+ (* PI 0.6666666666666666) (/ (acos (/ g (- h))) 3.0)))))
double code(double g, double h) {
	return 2.0 * cos(((((double) M_PI) * 0.6666666666666666) + (acos((g / -h)) / 3.0)));
}
public static double code(double g, double h) {
	return 2.0 * Math.cos(((Math.PI * 0.6666666666666666) + (Math.acos((g / -h)) / 3.0)));
}
def code(g, h):
	return 2.0 * math.cos(((math.pi * 0.6666666666666666) + (math.acos((g / -h)) / 3.0)))
function code(g, h)
	return Float64(2.0 * cos(Float64(Float64(pi * 0.6666666666666666) + Float64(acos(Float64(g / Float64(-h))) / 3.0))))
end
function tmp = code(g, h)
	tmp = 2.0 * cos(((pi * 0.6666666666666666) + (acos((g / -h)) / 3.0)));
end
code[g_, h_] := N[(2.0 * N[Cos[N[(N[(Pi * 0.6666666666666666), $MachinePrecision] + N[(N[ArcCos[N[(g / (-h)), $MachinePrecision]], $MachinePrecision] / 3.0), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
2 \cdot \cos \left(\pi \cdot 0.6666666666666666 + \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right)
\end{array}
Derivation
  1. Initial program 98.5%

    \[2 \cdot \cos \left(\frac{2 \cdot \pi}{3} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
  2. Step-by-step derivation
    1. *-commutative98.5%

      \[\leadsto 2 \cdot \cos \left(\frac{\color{blue}{\pi \cdot 2}}{3} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
    2. associate-/l*98.5%

      \[\leadsto 2 \cdot \cos \left(\color{blue}{\pi \cdot \frac{2}{3}} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
    3. metadata-eval98.5%

      \[\leadsto 2 \cdot \cos \left(\pi \cdot \color{blue}{0.6666666666666666} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
    4. distribute-frac-neg98.5%

      \[\leadsto 2 \cdot \cos \left(\pi \cdot 0.6666666666666666 + \frac{\cos^{-1} \color{blue}{\left(-\frac{g}{h}\right)}}{3}\right) \]
    5. distribute-frac-neg298.5%

      \[\leadsto 2 \cdot \cos \left(\pi \cdot 0.6666666666666666 + \frac{\cos^{-1} \color{blue}{\left(\frac{g}{-h}\right)}}{3}\right) \]
  3. Simplified98.5%

    \[\leadsto \color{blue}{2 \cdot \cos \left(\pi \cdot 0.6666666666666666 + \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right)} \]
  4. Add Preprocessing
  5. Add Preprocessing

Alternative 5: 96.3% accurate, 1.0× speedup?

\[\begin{array}{l} \\ 2 \cdot \cos \left(\pi \cdot 0.6666666666666666 + 0.3333333333333333 \cdot \cos^{-1} \left(\frac{g}{h}\right)\right) \end{array} \]
(FPCore (g h)
 :precision binary64
 (*
  2.0
  (cos (+ (* PI 0.6666666666666666) (* 0.3333333333333333 (acos (/ g h)))))))
double code(double g, double h) {
	return 2.0 * cos(((((double) M_PI) * 0.6666666666666666) + (0.3333333333333333 * acos((g / h)))));
}
public static double code(double g, double h) {
	return 2.0 * Math.cos(((Math.PI * 0.6666666666666666) + (0.3333333333333333 * Math.acos((g / h)))));
}
def code(g, h):
	return 2.0 * math.cos(((math.pi * 0.6666666666666666) + (0.3333333333333333 * math.acos((g / h)))))
function code(g, h)
	return Float64(2.0 * cos(Float64(Float64(pi * 0.6666666666666666) + Float64(0.3333333333333333 * acos(Float64(g / h))))))
end
function tmp = code(g, h)
	tmp = 2.0 * cos(((pi * 0.6666666666666666) + (0.3333333333333333 * acos((g / h)))));
end
code[g_, h_] := N[(2.0 * N[Cos[N[(N[(Pi * 0.6666666666666666), $MachinePrecision] + N[(0.3333333333333333 * N[ArcCos[N[(g / h), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
2 \cdot \cos \left(\pi \cdot 0.6666666666666666 + 0.3333333333333333 \cdot \cos^{-1} \left(\frac{g}{h}\right)\right)
\end{array}
Derivation
  1. Initial program 98.5%

    \[2 \cdot \cos \left(\frac{2 \cdot \pi}{3} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
  2. Step-by-step derivation
    1. *-commutative98.5%

      \[\leadsto 2 \cdot \cos \left(\frac{\color{blue}{\pi \cdot 2}}{3} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
    2. associate-/l*98.5%

      \[\leadsto 2 \cdot \cos \left(\color{blue}{\pi \cdot \frac{2}{3}} + \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right) \]
    3. fma-define98.5%

      \[\leadsto 2 \cdot \cos \color{blue}{\left(\mathsf{fma}\left(\pi, \frac{2}{3}, \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right)\right)} \]
    4. metadata-eval98.5%

      \[\leadsto 2 \cdot \cos \left(\mathsf{fma}\left(\pi, \color{blue}{0.6666666666666666}, \frac{\cos^{-1} \left(\frac{-g}{h}\right)}{3}\right)\right) \]
    5. distribute-frac-neg98.5%

      \[\leadsto 2 \cdot \cos \left(\mathsf{fma}\left(\pi, 0.6666666666666666, \frac{\cos^{-1} \color{blue}{\left(-\frac{g}{h}\right)}}{3}\right)\right) \]
    6. distribute-frac-neg298.5%

      \[\leadsto 2 \cdot \cos \left(\mathsf{fma}\left(\pi, 0.6666666666666666, \frac{\cos^{-1} \color{blue}{\left(\frac{g}{-h}\right)}}{3}\right)\right) \]
  3. Simplified98.5%

    \[\leadsto \color{blue}{2 \cdot \cos \left(\mathsf{fma}\left(\pi, 0.6666666666666666, \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right)\right)} \]
  4. Add Preprocessing
  5. Step-by-step derivation
    1. fma-define98.5%

      \[\leadsto 2 \cdot \cos \color{blue}{\left(\pi \cdot 0.6666666666666666 + \frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3}\right)} \]
    2. +-commutative98.5%

      \[\leadsto 2 \cdot \cos \color{blue}{\left(\frac{\cos^{-1} \left(\frac{g}{-h}\right)}{3} + \pi \cdot 0.6666666666666666\right)} \]
    3. div-inv98.5%

      \[\leadsto 2 \cdot \cos \left(\color{blue}{\cos^{-1} \left(\frac{g}{-h}\right) \cdot \frac{1}{3}} + \pi \cdot 0.6666666666666666\right) \]
    4. add-sqr-sqrt47.7%

      \[\leadsto 2 \cdot \cos \left(\cos^{-1} \left(\frac{g}{\color{blue}{\sqrt{-h} \cdot \sqrt{-h}}}\right) \cdot \frac{1}{3} + \pi \cdot 0.6666666666666666\right) \]
    5. sqrt-unprod88.7%

      \[\leadsto 2 \cdot \cos \left(\cos^{-1} \left(\frac{g}{\color{blue}{\sqrt{\left(-h\right) \cdot \left(-h\right)}}}\right) \cdot \frac{1}{3} + \pi \cdot 0.6666666666666666\right) \]
    6. sqr-neg88.7%

      \[\leadsto 2 \cdot \cos \left(\cos^{-1} \left(\frac{g}{\sqrt{\color{blue}{h \cdot h}}}\right) \cdot \frac{1}{3} + \pi \cdot 0.6666666666666666\right) \]
    7. sqrt-unprod49.0%

      \[\leadsto 2 \cdot \cos \left(\cos^{-1} \left(\frac{g}{\color{blue}{\sqrt{h} \cdot \sqrt{h}}}\right) \cdot \frac{1}{3} + \pi \cdot 0.6666666666666666\right) \]
    8. add-sqr-sqrt95.7%

      \[\leadsto 2 \cdot \cos \left(\cos^{-1} \left(\frac{g}{\color{blue}{h}}\right) \cdot \frac{1}{3} + \pi \cdot 0.6666666666666666\right) \]
    9. metadata-eval95.7%

      \[\leadsto 2 \cdot \cos \left(\cos^{-1} \left(\frac{g}{h}\right) \cdot \color{blue}{0.3333333333333333} + \pi \cdot 0.6666666666666666\right) \]
  6. Applied egg-rr95.7%

    \[\leadsto 2 \cdot \cos \color{blue}{\left(\cos^{-1} \left(\frac{g}{h}\right) \cdot 0.3333333333333333 + \pi \cdot 0.6666666666666666\right)} \]
  7. Final simplification95.7%

    \[\leadsto 2 \cdot \cos \left(\pi \cdot 0.6666666666666666 + 0.3333333333333333 \cdot \cos^{-1} \left(\frac{g}{h}\right)\right) \]
  8. Add Preprocessing

Reproduce

?
herbie shell --seed 2024149 
(FPCore (g h)
  :name "2-ancestry mixing, negative discriminant"
  :precision binary64
  (* 2.0 (cos (+ (/ (* 2.0 PI) 3.0) (/ (acos (/ (- g) h)) 3.0)))))