2-ancestry mixing, negative discriminant

Percentage Accurate: 98.5% → 99.9%
Time: 10.4s
Alternatives: 4
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 4 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.3× speedup?

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

\\
\begin{array}{l}
t_0 := \cos^{-1} \left(\frac{g}{0 - h}\right)\\
2 \cdot \left(\cos \left(\pi \cdot 0.6666666666666666\right) \cdot \cos \left(\frac{t\_0}{3}\right) - \sin \left(\pi \cdot 0.6666666666666666\right) \cdot \sin \left({\left(\frac{3}{t\_0}\right)}^{-1}\right)\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. *-lowering-*.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \color{blue}{\cos \left(\frac{2 \cdot \mathsf{PI}\left(\right)}{3} + \frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)}\right) \]
    2. cos-lowering-cos.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\left(\frac{2 \cdot \mathsf{PI}\left(\right)}{3} + \frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right) \]
    3. +-lowering-+.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\left(\frac{2 \cdot \mathsf{PI}\left(\right)}{3}\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    4. *-commutativeN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\left(\frac{\mathsf{PI}\left(\right) \cdot 2}{3}\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    5. associate-/l*N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\left(\mathsf{PI}\left(\right) \cdot \frac{2}{3}\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    6. *-lowering-*.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI}\left(\right), \left(\frac{2}{3}\right)\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    7. PI-lowering-PI.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \left(\frac{2}{3}\right)\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    8. metadata-evalN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    9. /-lowering-/.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right), 3\right)\right)\right)\right) \]
    10. acos-lowering-acos.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{\mathsf{neg}\left(g\right)}{h}\right)\right), 3\right)\right)\right)\right) \]
    11. distribute-frac-negN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\mathsf{neg}\left(\frac{g}{h}\right)\right)\right), 3\right)\right)\right)\right) \]
    12. distribute-neg-frac2N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{g}{\mathsf{neg}\left(h\right)}\right)\right), 3\right)\right)\right)\right) \]
    13. neg-mul-1N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{g}{-1 \cdot h}\right)\right), 3\right)\right)\right)\right) \]
    14. associate-/r*N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{\frac{g}{-1}}{h}\right)\right), 3\right)\right)\right)\right) \]
    15. /-lowering-/.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{/.f64}\left(\left(\frac{g}{-1}\right), h\right)\right), 3\right)\right)\right)\right) \]
    16. /-lowering-/.f6498.5%

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{/.f64}\left(\mathsf{/.f64}\left(g, -1\right), h\right)\right), 3\right)\right)\right)\right) \]
  3. Simplified98.5%

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

      \[\leadsto \mathsf{*.f64}\left(2, \left(\cos \left(\mathsf{PI}\left(\right) \cdot \frac{2}{3}\right) \cdot \cos \left(\frac{\cos^{-1} \left(\frac{\frac{g}{-1}}{h}\right)}{3}\right) - \color{blue}{\sin \left(\mathsf{PI}\left(\right) \cdot \frac{2}{3}\right) \cdot \sin \left(\frac{\cos^{-1} \left(\frac{\frac{g}{-1}}{h}\right)}{3}\right)}\right)\right) \]
    2. --lowering--.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{\_.f64}\left(\left(\cos \left(\mathsf{PI}\left(\right) \cdot \frac{2}{3}\right) \cdot \cos \left(\frac{\cos^{-1} \left(\frac{\frac{g}{-1}}{h}\right)}{3}\right)\right), \color{blue}{\left(\sin \left(\mathsf{PI}\left(\right) \cdot \frac{2}{3}\right) \cdot \sin \left(\frac{\cos^{-1} \left(\frac{\frac{g}{-1}}{h}\right)}{3}\right)\right)}\right)\right) \]
  6. Applied egg-rr98.4%

    \[\leadsto 2 \cdot \color{blue}{\left(\cos \left(\pi \cdot 0.6666666666666666\right) \cdot \cos \left(\frac{\cos^{-1} \left(0 - \frac{g}{h}\right)}{3}\right) - \sin \left(\pi \cdot 0.6666666666666666\right) \cdot \sin \left(\frac{\cos^{-1} \left(0 - \frac{g}{h}\right)}{3}\right)\right)} \]
  7. Step-by-step derivation
    1. clear-numN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{\_.f64}\left(\mathsf{*.f64}\left(\mathsf{cos.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right)\right), \mathsf{cos.f64}\left(\mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right), \mathsf{*.f64}\left(\mathsf{sin.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right)\right), \mathsf{sin.f64}\left(\left(\frac{1}{\frac{3}{\cos^{-1} \left(0 - \frac{g}{h}\right)}}\right)\right)\right)\right)\right) \]
    2. inv-powN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{\_.f64}\left(\mathsf{*.f64}\left(\mathsf{cos.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right)\right), \mathsf{cos.f64}\left(\mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right), \mathsf{*.f64}\left(\mathsf{sin.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right)\right), \mathsf{sin.f64}\left(\left({\left(\frac{3}{\cos^{-1} \left(0 - \frac{g}{h}\right)}\right)}^{-1}\right)\right)\right)\right)\right) \]
    3. pow-lowering-pow.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{\_.f64}\left(\mathsf{*.f64}\left(\mathsf{cos.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right)\right), \mathsf{cos.f64}\left(\mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right), \mathsf{*.f64}\left(\mathsf{sin.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right)\right), \mathsf{sin.f64}\left(\mathsf{pow.f64}\left(\left(\frac{3}{\cos^{-1} \left(0 - \frac{g}{h}\right)}\right), -1\right)\right)\right)\right)\right) \]
    4. /-lowering-/.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{\_.f64}\left(\mathsf{*.f64}\left(\mathsf{cos.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right)\right), \mathsf{cos.f64}\left(\mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right), \mathsf{*.f64}\left(\mathsf{sin.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right)\right), \mathsf{sin.f64}\left(\mathsf{pow.f64}\left(\mathsf{/.f64}\left(3, \cos^{-1} \left(0 - \frac{g}{h}\right)\right), -1\right)\right)\right)\right)\right) \]
    5. acos-lowering-acos.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{\_.f64}\left(\mathsf{*.f64}\left(\mathsf{cos.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right)\right), \mathsf{cos.f64}\left(\mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right), \mathsf{*.f64}\left(\mathsf{sin.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right)\right), \mathsf{sin.f64}\left(\mathsf{pow.f64}\left(\mathsf{/.f64}\left(3, \mathsf{acos.f64}\left(\left(0 - \frac{g}{h}\right)\right)\right), -1\right)\right)\right)\right)\right) \]
    6. --lowering--.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{\_.f64}\left(\mathsf{*.f64}\left(\mathsf{cos.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right)\right), \mathsf{cos.f64}\left(\mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right), \mathsf{*.f64}\left(\mathsf{sin.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right)\right), \mathsf{sin.f64}\left(\mathsf{pow.f64}\left(\mathsf{/.f64}\left(3, \mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \left(\frac{g}{h}\right)\right)\right)\right), -1\right)\right)\right)\right)\right) \]
    7. /-lowering-/.f6499.9%

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{\_.f64}\left(\mathsf{*.f64}\left(\mathsf{cos.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right)\right), \mathsf{cos.f64}\left(\mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right), \mathsf{*.f64}\left(\mathsf{sin.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right)\right), \mathsf{sin.f64}\left(\mathsf{pow.f64}\left(\mathsf{/.f64}\left(3, \mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right)\right), -1\right)\right)\right)\right)\right) \]
  8. Applied egg-rr99.9%

    \[\leadsto 2 \cdot \left(\cos \left(\pi \cdot 0.6666666666666666\right) \cdot \cos \left(\frac{\cos^{-1} \left(0 - \frac{g}{h}\right)}{3}\right) - \sin \left(\pi \cdot 0.6666666666666666\right) \cdot \sin \color{blue}{\left({\left(\frac{3}{\cos^{-1} \left(0 - \frac{g}{h}\right)}\right)}^{-1}\right)}\right) \]
  9. Final simplification99.9%

    \[\leadsto 2 \cdot \left(\cos \left(\pi \cdot 0.6666666666666666\right) \cdot \cos \left(\frac{\cos^{-1} \left(\frac{g}{0 - h}\right)}{3}\right) - \sin \left(\pi \cdot 0.6666666666666666\right) \cdot \sin \left({\left(\frac{3}{\cos^{-1} \left(\frac{g}{0 - h}\right)}\right)}^{-1}\right)\right) \]
  10. Add Preprocessing

Alternative 2: 98.5% accurate, 0.5× speedup?

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

\\
2 \cdot \cos \left(\mathsf{fma}\left(\sqrt[3]{\pi \cdot \left(\pi \cdot \pi\right)}, 0.6666666666666666, \frac{\cos^{-1} \left(\frac{g}{0 - 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. *-lowering-*.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \color{blue}{\cos \left(\frac{2 \cdot \mathsf{PI}\left(\right)}{3} + \frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)}\right) \]
    2. cos-lowering-cos.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\left(\frac{2 \cdot \mathsf{PI}\left(\right)}{3} + \frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right) \]
    3. +-lowering-+.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\left(\frac{2 \cdot \mathsf{PI}\left(\right)}{3}\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    4. *-commutativeN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\left(\frac{\mathsf{PI}\left(\right) \cdot 2}{3}\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    5. associate-/l*N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\left(\mathsf{PI}\left(\right) \cdot \frac{2}{3}\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    6. *-lowering-*.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI}\left(\right), \left(\frac{2}{3}\right)\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    7. PI-lowering-PI.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \left(\frac{2}{3}\right)\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    8. metadata-evalN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    9. /-lowering-/.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right), 3\right)\right)\right)\right) \]
    10. acos-lowering-acos.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{\mathsf{neg}\left(g\right)}{h}\right)\right), 3\right)\right)\right)\right) \]
    11. distribute-frac-negN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\mathsf{neg}\left(\frac{g}{h}\right)\right)\right), 3\right)\right)\right)\right) \]
    12. distribute-neg-frac2N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{g}{\mathsf{neg}\left(h\right)}\right)\right), 3\right)\right)\right)\right) \]
    13. neg-mul-1N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{g}{-1 \cdot h}\right)\right), 3\right)\right)\right)\right) \]
    14. associate-/r*N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{\frac{g}{-1}}{h}\right)\right), 3\right)\right)\right)\right) \]
    15. /-lowering-/.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{/.f64}\left(\left(\frac{g}{-1}\right), h\right)\right), 3\right)\right)\right)\right) \]
    16. /-lowering-/.f6498.5%

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{/.f64}\left(\mathsf{/.f64}\left(g, -1\right), h\right)\right), 3\right)\right)\right)\right) \]
  3. Simplified98.5%

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

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\left(\mathsf{fma}\left(\mathsf{PI}\left(\right), \frac{2}{3}, \frac{\cos^{-1} \left(\frac{\frac{g}{-1}}{h}\right)}{3}\right)\right)\right)\right) \]
    2. fma-lowering-fma.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI}\left(\right), \frac{2}{3}, \left(\frac{\cos^{-1} \left(\frac{\frac{g}{-1}}{h}\right)}{3}\right)\right)\right)\right) \]
    3. PI-lowering-PI.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \left(\frac{\cos^{-1} \left(\frac{\frac{g}{-1}}{h}\right)}{3}\right)\right)\right)\right) \]
    4. /-lowering-/.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\cos^{-1} \left(\frac{\frac{g}{-1}}{h}\right), 3\right)\right)\right)\right) \]
    5. acos-lowering-acos.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{\frac{g}{-1}}{h}\right)\right), 3\right)\right)\right)\right) \]
    6. frac-2negN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{\mathsf{neg}\left(\frac{g}{-1}\right)}{\mathsf{neg}\left(h\right)}\right)\right), 3\right)\right)\right)\right) \]
    7. distribute-frac-neg2N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\mathsf{neg}\left(\frac{\mathsf{neg}\left(\frac{g}{-1}\right)}{h}\right)\right)\right), 3\right)\right)\right)\right) \]
    8. neg-sub0N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(0 - \frac{\mathsf{neg}\left(\frac{g}{-1}\right)}{h}\right)\right), 3\right)\right)\right)\right) \]
    9. metadata-evalN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\log 1 - \frac{\mathsf{neg}\left(\frac{g}{-1}\right)}{h}\right)\right), 3\right)\right)\right)\right) \]
    10. --lowering--.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(\log 1, \left(\frac{\mathsf{neg}\left(\frac{g}{-1}\right)}{h}\right)\right)\right), 3\right)\right)\right)\right) \]
    11. metadata-evalN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \left(\frac{\mathsf{neg}\left(\frac{g}{-1}\right)}{h}\right)\right)\right), 3\right)\right)\right)\right) \]
    12. /-lowering-/.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(\left(\mathsf{neg}\left(\frac{g}{-1}\right)\right), h\right)\right)\right), 3\right)\right)\right)\right) \]
    13. frac-2negN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(\left(\mathsf{neg}\left(\frac{\mathsf{neg}\left(g\right)}{\mathsf{neg}\left(-1\right)}\right)\right), h\right)\right)\right), 3\right)\right)\right)\right) \]
    14. metadata-evalN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(\left(\mathsf{neg}\left(\frac{\mathsf{neg}\left(g\right)}{1}\right)\right), h\right)\right)\right), 3\right)\right)\right)\right) \]
    15. /-rgt-identityN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(\left(\mathsf{neg}\left(\left(\mathsf{neg}\left(g\right)\right)\right)\right), h\right)\right)\right), 3\right)\right)\right)\right) \]
    16. remove-double-neg98.5%

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right)\right) \]
  6. Applied egg-rr98.5%

    \[\leadsto 2 \cdot \cos \color{blue}{\left(\mathsf{fma}\left(\pi, 0.6666666666666666, \frac{\cos^{-1} \left(0 - \frac{g}{h}\right)}{3}\right)\right)} \]
  7. Step-by-step derivation
    1. add-cbrt-cubeN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\left(\sqrt[3]{\left(\mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \mathsf{PI}\left(\right)}\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right)\right) \]
    2. pow3N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\left(\sqrt[3]{{\mathsf{PI}\left(\right)}^{3}}\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right)\right) \]
    3. cbrt-lowering-cbrt.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{cbrt.f64}\left(\left({\mathsf{PI}\left(\right)}^{3}\right)\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right)\right) \]
    4. pow3N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{cbrt.f64}\left(\left(\left(\mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right)\right) \cdot \mathsf{PI}\left(\right)\right)\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right)\right) \]
    5. associate-*l*N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{cbrt.f64}\left(\left(\mathsf{PI}\left(\right) \cdot \left(\mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right)\right)\right)\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right)\right) \]
    6. *-lowering-*.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{cbrt.f64}\left(\mathsf{*.f64}\left(\mathsf{PI}\left(\right), \left(\mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right)\right)\right)\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right)\right) \]
    7. PI-lowering-PI.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{cbrt.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \left(\mathsf{PI}\left(\right) \cdot \mathsf{PI}\left(\right)\right)\right)\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right)\right) \]
    8. *-lowering-*.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{cbrt.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \mathsf{*.f64}\left(\mathsf{PI}\left(\right), \mathsf{PI}\left(\right)\right)\right)\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right)\right) \]
    9. PI-lowering-PI.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{cbrt.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \mathsf{PI}\left(\right)\right)\right)\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right)\right) \]
    10. PI-lowering-PI.f6498.5%

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{cbrt.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \mathsf{PI.f64}\left(\right)\right)\right)\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right)\right) \]
  8. Applied egg-rr98.5%

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

    \[\leadsto 2 \cdot \cos \left(\mathsf{fma}\left(\sqrt[3]{\pi \cdot \left(\pi \cdot \pi\right)}, 0.6666666666666666, \frac{\cos^{-1} \left(\frac{g}{0 - h}\right)}{3}\right)\right) \]
  10. 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}{0 - h}\right)}{3}\right)\right) \end{array} \]
(FPCore (g h)
 :precision binary64
 (* 2.0 (cos (fma PI 0.6666666666666666 (/ (acos (/ g (- 0.0 h))) 3.0)))))
double code(double g, double h) {
	return 2.0 * cos(fma(((double) M_PI), 0.6666666666666666, (acos((g / (0.0 - h))) / 3.0)));
}
function code(g, h)
	return Float64(2.0 * cos(fma(pi, 0.6666666666666666, Float64(acos(Float64(g / Float64(0.0 - h))) / 3.0))))
end
code[g_, h_] := N[(2.0 * N[Cos[N[(Pi * 0.6666666666666666 + N[(N[ArcCos[N[(g / N[(0.0 - h), $MachinePrecision]), $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}{0 - 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. *-lowering-*.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \color{blue}{\cos \left(\frac{2 \cdot \mathsf{PI}\left(\right)}{3} + \frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)}\right) \]
    2. cos-lowering-cos.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\left(\frac{2 \cdot \mathsf{PI}\left(\right)}{3} + \frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right) \]
    3. +-lowering-+.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\left(\frac{2 \cdot \mathsf{PI}\left(\right)}{3}\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    4. *-commutativeN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\left(\frac{\mathsf{PI}\left(\right) \cdot 2}{3}\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    5. associate-/l*N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\left(\mathsf{PI}\left(\right) \cdot \frac{2}{3}\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    6. *-lowering-*.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI}\left(\right), \left(\frac{2}{3}\right)\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    7. PI-lowering-PI.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \left(\frac{2}{3}\right)\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    8. metadata-evalN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    9. /-lowering-/.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right), 3\right)\right)\right)\right) \]
    10. acos-lowering-acos.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{\mathsf{neg}\left(g\right)}{h}\right)\right), 3\right)\right)\right)\right) \]
    11. distribute-frac-negN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\mathsf{neg}\left(\frac{g}{h}\right)\right)\right), 3\right)\right)\right)\right) \]
    12. distribute-neg-frac2N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{g}{\mathsf{neg}\left(h\right)}\right)\right), 3\right)\right)\right)\right) \]
    13. neg-mul-1N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{g}{-1 \cdot h}\right)\right), 3\right)\right)\right)\right) \]
    14. associate-/r*N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{\frac{g}{-1}}{h}\right)\right), 3\right)\right)\right)\right) \]
    15. /-lowering-/.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{/.f64}\left(\left(\frac{g}{-1}\right), h\right)\right), 3\right)\right)\right)\right) \]
    16. /-lowering-/.f6498.5%

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{/.f64}\left(\mathsf{/.f64}\left(g, -1\right), h\right)\right), 3\right)\right)\right)\right) \]
  3. Simplified98.5%

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

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\left(\mathsf{fma}\left(\mathsf{PI}\left(\right), \frac{2}{3}, \frac{\cos^{-1} \left(\frac{\frac{g}{-1}}{h}\right)}{3}\right)\right)\right)\right) \]
    2. fma-lowering-fma.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI}\left(\right), \frac{2}{3}, \left(\frac{\cos^{-1} \left(\frac{\frac{g}{-1}}{h}\right)}{3}\right)\right)\right)\right) \]
    3. PI-lowering-PI.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \left(\frac{\cos^{-1} \left(\frac{\frac{g}{-1}}{h}\right)}{3}\right)\right)\right)\right) \]
    4. /-lowering-/.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\cos^{-1} \left(\frac{\frac{g}{-1}}{h}\right), 3\right)\right)\right)\right) \]
    5. acos-lowering-acos.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{\frac{g}{-1}}{h}\right)\right), 3\right)\right)\right)\right) \]
    6. frac-2negN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{\mathsf{neg}\left(\frac{g}{-1}\right)}{\mathsf{neg}\left(h\right)}\right)\right), 3\right)\right)\right)\right) \]
    7. distribute-frac-neg2N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\mathsf{neg}\left(\frac{\mathsf{neg}\left(\frac{g}{-1}\right)}{h}\right)\right)\right), 3\right)\right)\right)\right) \]
    8. neg-sub0N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(0 - \frac{\mathsf{neg}\left(\frac{g}{-1}\right)}{h}\right)\right), 3\right)\right)\right)\right) \]
    9. metadata-evalN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\log 1 - \frac{\mathsf{neg}\left(\frac{g}{-1}\right)}{h}\right)\right), 3\right)\right)\right)\right) \]
    10. --lowering--.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(\log 1, \left(\frac{\mathsf{neg}\left(\frac{g}{-1}\right)}{h}\right)\right)\right), 3\right)\right)\right)\right) \]
    11. metadata-evalN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \left(\frac{\mathsf{neg}\left(\frac{g}{-1}\right)}{h}\right)\right)\right), 3\right)\right)\right)\right) \]
    12. /-lowering-/.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(\left(\mathsf{neg}\left(\frac{g}{-1}\right)\right), h\right)\right)\right), 3\right)\right)\right)\right) \]
    13. frac-2negN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(\left(\mathsf{neg}\left(\frac{\mathsf{neg}\left(g\right)}{\mathsf{neg}\left(-1\right)}\right)\right), h\right)\right)\right), 3\right)\right)\right)\right) \]
    14. metadata-evalN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(\left(\mathsf{neg}\left(\frac{\mathsf{neg}\left(g\right)}{1}\right)\right), h\right)\right)\right), 3\right)\right)\right)\right) \]
    15. /-rgt-identityN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(\left(\mathsf{neg}\left(\left(\mathsf{neg}\left(g\right)\right)\right)\right), h\right)\right)\right), 3\right)\right)\right)\right) \]
    16. remove-double-neg98.5%

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{fma.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}, \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{\_.f64}\left(0, \mathsf{/.f64}\left(g, h\right)\right)\right), 3\right)\right)\right)\right) \]
  6. Applied egg-rr98.5%

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

    \[\leadsto 2 \cdot \cos \left(\mathsf{fma}\left(\pi, 0.6666666666666666, \frac{\cos^{-1} \left(\frac{g}{0 - h}\right)}{3}\right)\right) \]
  8. 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{\frac{g}{-1}}{h}\right)}{3}\right) \end{array} \]
(FPCore (g h)
 :precision binary64
 (* 2.0 (cos (+ (* PI 0.6666666666666666) (/ (acos (/ (/ g -1.0) h)) 3.0)))))
double code(double g, double h) {
	return 2.0 * cos(((((double) M_PI) * 0.6666666666666666) + (acos(((g / -1.0) / h)) / 3.0)));
}
public static double code(double g, double h) {
	return 2.0 * Math.cos(((Math.PI * 0.6666666666666666) + (Math.acos(((g / -1.0) / h)) / 3.0)));
}
def code(g, h):
	return 2.0 * math.cos(((math.pi * 0.6666666666666666) + (math.acos(((g / -1.0) / h)) / 3.0)))
function code(g, h)
	return Float64(2.0 * cos(Float64(Float64(pi * 0.6666666666666666) + Float64(acos(Float64(Float64(g / -1.0) / h)) / 3.0))))
end
function tmp = code(g, h)
	tmp = 2.0 * cos(((pi * 0.6666666666666666) + (acos(((g / -1.0) / h)) / 3.0)));
end
code[g_, h_] := N[(2.0 * N[Cos[N[(N[(Pi * 0.6666666666666666), $MachinePrecision] + N[(N[ArcCos[N[(N[(g / -1.0), $MachinePrecision] / 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{\frac{g}{-1}}{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. *-lowering-*.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \color{blue}{\cos \left(\frac{2 \cdot \mathsf{PI}\left(\right)}{3} + \frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)}\right) \]
    2. cos-lowering-cos.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\left(\frac{2 \cdot \mathsf{PI}\left(\right)}{3} + \frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right) \]
    3. +-lowering-+.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\left(\frac{2 \cdot \mathsf{PI}\left(\right)}{3}\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    4. *-commutativeN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\left(\frac{\mathsf{PI}\left(\right) \cdot 2}{3}\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    5. associate-/l*N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\left(\mathsf{PI}\left(\right) \cdot \frac{2}{3}\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    6. *-lowering-*.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI}\left(\right), \left(\frac{2}{3}\right)\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    7. PI-lowering-PI.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \left(\frac{2}{3}\right)\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    8. metadata-evalN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \left(\frac{\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right)}{3}\right)\right)\right)\right) \]
    9. /-lowering-/.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\cos^{-1} \left(\frac{\mathsf{neg}\left(g\right)}{h}\right), 3\right)\right)\right)\right) \]
    10. acos-lowering-acos.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{\mathsf{neg}\left(g\right)}{h}\right)\right), 3\right)\right)\right)\right) \]
    11. distribute-frac-negN/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\mathsf{neg}\left(\frac{g}{h}\right)\right)\right), 3\right)\right)\right)\right) \]
    12. distribute-neg-frac2N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{g}{\mathsf{neg}\left(h\right)}\right)\right), 3\right)\right)\right)\right) \]
    13. neg-mul-1N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{g}{-1 \cdot h}\right)\right), 3\right)\right)\right)\right) \]
    14. associate-/r*N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\left(\frac{\frac{g}{-1}}{h}\right)\right), 3\right)\right)\right)\right) \]
    15. /-lowering-/.f64N/A

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{/.f64}\left(\left(\frac{g}{-1}\right), h\right)\right), 3\right)\right)\right)\right) \]
    16. /-lowering-/.f6498.5%

      \[\leadsto \mathsf{*.f64}\left(2, \mathsf{cos.f64}\left(\mathsf{+.f64}\left(\mathsf{*.f64}\left(\mathsf{PI.f64}\left(\right), \frac{2}{3}\right), \mathsf{/.f64}\left(\mathsf{acos.f64}\left(\mathsf{/.f64}\left(\mathsf{/.f64}\left(g, -1\right), h\right)\right), 3\right)\right)\right)\right) \]
  3. Simplified98.5%

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

Reproduce

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