bug323 (missed optimization)

Percentage Accurate: 7.2% → 10.7%
Time: 12.7s
Alternatives: 9
Speedup: 1.0×

Specification

?
\[0 \leq x \land x \leq 0.5\]
\[\begin{array}{l} \\ \cos^{-1} \left(1 - x\right) \end{array} \]
(FPCore (x) :precision binary64 (acos (- 1.0 x)))
double code(double x) {
	return acos((1.0 - x));
}
real(8) function code(x)
    real(8), intent (in) :: x
    code = acos((1.0d0 - x))
end function
public static double code(double x) {
	return Math.acos((1.0 - x));
}
def code(x):
	return math.acos((1.0 - x))
function code(x)
	return acos(Float64(1.0 - x))
end
function tmp = code(x)
	tmp = acos((1.0 - x));
end
code[x_] := N[ArcCos[N[(1.0 - x), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}

\\
\cos^{-1} \left(1 - x\right)
\end{array}

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

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

\[\begin{array}{l} \\ \cos^{-1} \left(1 - x\right) \end{array} \]
(FPCore (x) :precision binary64 (acos (- 1.0 x)))
double code(double x) {
	return acos((1.0 - x));
}
real(8) function code(x)
    real(8), intent (in) :: x
    code = acos((1.0d0 - x))
end function
public static double code(double x) {
	return Math.acos((1.0 - x));
}
def code(x):
	return math.acos((1.0 - x))
function code(x)
	return acos(Float64(1.0 - x))
end
function tmp = code(x)
	tmp = acos((1.0 - x));
end
code[x_] := N[ArcCos[N[(1.0 - x), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}

\\
\cos^{-1} \left(1 - x\right)
\end{array}

Alternative 1: 10.7% accurate, 0.1× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \sin^{-1} \left(1 - x\right)\\ t_1 := {t_0}^{2}\\ \frac{\left({\pi}^{2} \cdot 0.25 - t_1\right) + \mathsf{fma}\left(-t_0, t_0, t_1\right)}{t_0 + \pi \cdot 0.5} \end{array} \end{array} \]
(FPCore (x)
 :precision binary64
 (let* ((t_0 (asin (- 1.0 x))) (t_1 (pow t_0 2.0)))
   (/
    (+ (- (* (pow PI 2.0) 0.25) t_1) (fma (- t_0) t_0 t_1))
    (+ t_0 (* PI 0.5)))))
double code(double x) {
	double t_0 = asin((1.0 - x));
	double t_1 = pow(t_0, 2.0);
	return (((pow(((double) M_PI), 2.0) * 0.25) - t_1) + fma(-t_0, t_0, t_1)) / (t_0 + (((double) M_PI) * 0.5));
}
function code(x)
	t_0 = asin(Float64(1.0 - x))
	t_1 = t_0 ^ 2.0
	return Float64(Float64(Float64(Float64((pi ^ 2.0) * 0.25) - t_1) + fma(Float64(-t_0), t_0, t_1)) / Float64(t_0 + Float64(pi * 0.5)))
end
code[x_] := Block[{t$95$0 = N[ArcSin[N[(1.0 - x), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[Power[t$95$0, 2.0], $MachinePrecision]}, N[(N[(N[(N[(N[Power[Pi, 2.0], $MachinePrecision] * 0.25), $MachinePrecision] - t$95$1), $MachinePrecision] + N[((-t$95$0) * t$95$0 + t$95$1), $MachinePrecision]), $MachinePrecision] / N[(t$95$0 + N[(Pi * 0.5), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \sin^{-1} \left(1 - x\right)\\
t_1 := {t_0}^{2}\\
\frac{\left({\pi}^{2} \cdot 0.25 - t_1\right) + \mathsf{fma}\left(-t_0, t_0, t_1\right)}{t_0 + \pi \cdot 0.5}
\end{array}
\end{array}
Derivation
  1. Initial program 7.0%

    \[\cos^{-1} \left(1 - x\right) \]
  2. Step-by-step derivation
    1. acos-asin7.0%

      \[\leadsto \color{blue}{\frac{\pi}{2} - \sin^{-1} \left(1 - x\right)} \]
    2. flip--7.0%

      \[\leadsto \color{blue}{\frac{\frac{\pi}{2} \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)}} \]
    3. div-inv7.0%

      \[\leadsto \frac{\color{blue}{\left(\pi \cdot \frac{1}{2}\right)} \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
    4. metadata-eval7.0%

      \[\leadsto \frac{\left(\pi \cdot \color{blue}{0.5}\right) \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
    5. div-inv7.0%

      \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \color{blue}{\left(\pi \cdot \frac{1}{2}\right)} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
    6. metadata-eval7.0%

      \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot \color{blue}{0.5}\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
    7. div-inv7.0%

      \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\color{blue}{\pi \cdot \frac{1}{2}} + \sin^{-1} \left(1 - x\right)} \]
    8. metadata-eval7.0%

      \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\pi \cdot \color{blue}{0.5} + \sin^{-1} \left(1 - x\right)} \]
  3. Applied egg-rr7.0%

    \[\leadsto \color{blue}{\frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\pi \cdot 0.5 + \sin^{-1} \left(1 - x\right)}} \]
  4. Step-by-step derivation
    1. add-sqr-sqrt7.0%

      \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \color{blue}{\sqrt{\sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)} \cdot \sqrt{\sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}}}{\pi \cdot 0.5 + \sin^{-1} \left(1 - x\right)} \]
    2. prod-diff7.0%

      \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\pi \cdot 0.5, \pi \cdot 0.5, -\sqrt{\sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)} \cdot \sqrt{\sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}\right) + \mathsf{fma}\left(-\sqrt{\sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}, \sqrt{\sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}, \sqrt{\sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)} \cdot \sqrt{\sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}\right)}}{\pi \cdot 0.5 + \sin^{-1} \left(1 - x\right)} \]
  5. Applied egg-rr10.4%

    \[\leadsto \frac{\color{blue}{\left({\pi}^{2} \cdot 0.25 - {\sin^{-1} \left(1 - x\right)}^{2}\right) + \mathsf{fma}\left(-\sin^{-1} \left(1 - x\right), \sin^{-1} \left(1 - x\right), {\sin^{-1} \left(1 - x\right)}^{2}\right)}}{\pi \cdot 0.5 + \sin^{-1} \left(1 - x\right)} \]
  6. Final simplification10.4%

    \[\leadsto \frac{\left({\pi}^{2} \cdot 0.25 - {\sin^{-1} \left(1 - x\right)}^{2}\right) + \mathsf{fma}\left(-\sin^{-1} \left(1 - x\right), \sin^{-1} \left(1 - x\right), {\sin^{-1} \left(1 - x\right)}^{2}\right)}{\sin^{-1} \left(1 - x\right) + \pi \cdot 0.5} \]

Alternative 2: 10.7% accurate, 0.1× speedup?

\[\begin{array}{l} \\ \mathsf{fma}\left({\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \end{array} \]
(FPCore (x)
 :precision binary64
 (fma
  (pow (pow (* PI 0.5) 0.3333333333333333) 2.0)
  (cbrt (* PI 0.5))
  (- (asin (- 1.0 x)))))
double code(double x) {
	return fma(pow(pow((((double) M_PI) * 0.5), 0.3333333333333333), 2.0), cbrt((((double) M_PI) * 0.5)), -asin((1.0 - x)));
}
function code(x)
	return fma(((Float64(pi * 0.5) ^ 0.3333333333333333) ^ 2.0), cbrt(Float64(pi * 0.5)), Float64(-asin(Float64(1.0 - x))))
end
code[x_] := N[(N[Power[N[Power[N[(Pi * 0.5), $MachinePrecision], 0.3333333333333333], $MachinePrecision], 2.0], $MachinePrecision] * N[Power[N[(Pi * 0.5), $MachinePrecision], 1/3], $MachinePrecision] + (-N[ArcSin[N[(1.0 - x), $MachinePrecision]], $MachinePrecision])), $MachinePrecision]
\begin{array}{l}

\\
\mathsf{fma}\left({\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right)
\end{array}
Derivation
  1. Initial program 7.0%

    \[\cos^{-1} \left(1 - x\right) \]
  2. Step-by-step derivation
    1. acos-asin7.0%

      \[\leadsto \color{blue}{\frac{\pi}{2} - \sin^{-1} \left(1 - x\right)} \]
    2. flip--7.0%

      \[\leadsto \color{blue}{\frac{\frac{\pi}{2} \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)}} \]
    3. div-inv7.0%

      \[\leadsto \frac{\color{blue}{\left(\pi \cdot \frac{1}{2}\right)} \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
    4. metadata-eval7.0%

      \[\leadsto \frac{\left(\pi \cdot \color{blue}{0.5}\right) \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
    5. div-inv7.0%

      \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \color{blue}{\left(\pi \cdot \frac{1}{2}\right)} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
    6. metadata-eval7.0%

      \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot \color{blue}{0.5}\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
    7. div-inv7.0%

      \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\color{blue}{\pi \cdot \frac{1}{2}} + \sin^{-1} \left(1 - x\right)} \]
    8. metadata-eval7.0%

      \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\pi \cdot \color{blue}{0.5} + \sin^{-1} \left(1 - x\right)} \]
  3. Applied egg-rr7.0%

    \[\leadsto \color{blue}{\frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\pi \cdot 0.5 + \sin^{-1} \left(1 - x\right)}} \]
  4. Step-by-step derivation
    1. flip--7.0%

      \[\leadsto \color{blue}{\pi \cdot 0.5 - \sin^{-1} \left(1 - x\right)} \]
    2. add-cube-cbrt5.2%

      \[\leadsto \color{blue}{\left(\sqrt[3]{\pi \cdot 0.5} \cdot \sqrt[3]{\pi \cdot 0.5}\right) \cdot \sqrt[3]{\pi \cdot 0.5}} - \sin^{-1} \left(1 - x\right) \]
    3. fma-neg5.2%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\sqrt[3]{\pi \cdot 0.5} \cdot \sqrt[3]{\pi \cdot 0.5}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right)} \]
    4. pow25.2%

      \[\leadsto \mathsf{fma}\left(\color{blue}{{\left(\sqrt[3]{\pi \cdot 0.5}\right)}^{2}}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \]
  5. Applied egg-rr5.2%

    \[\leadsto \color{blue}{\mathsf{fma}\left({\left(\sqrt[3]{\pi \cdot 0.5}\right)}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right)} \]
  6. Step-by-step derivation
    1. pow1/310.4%

      \[\leadsto \mathsf{fma}\left({\color{blue}{\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \]
  7. Applied egg-rr10.4%

    \[\leadsto \mathsf{fma}\left({\color{blue}{\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \]
  8. Final simplification10.4%

    \[\leadsto \mathsf{fma}\left({\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \]

Alternative 3: 10.6% accurate, 0.3× speedup?

\[\begin{array}{l} \\ \pi \cdot 0.5 - {\left(\sqrt[3]{\sin^{-1} \left(1 - x\right)}\right)}^{3} \end{array} \]
(FPCore (x)
 :precision binary64
 (- (* PI 0.5) (pow (cbrt (asin (- 1.0 x))) 3.0)))
double code(double x) {
	return (((double) M_PI) * 0.5) - pow(cbrt(asin((1.0 - x))), 3.0);
}
public static double code(double x) {
	return (Math.PI * 0.5) - Math.pow(Math.cbrt(Math.asin((1.0 - x))), 3.0);
}
function code(x)
	return Float64(Float64(pi * 0.5) - (cbrt(asin(Float64(1.0 - x))) ^ 3.0))
end
code[x_] := N[(N[(Pi * 0.5), $MachinePrecision] - N[Power[N[Power[N[ArcSin[N[(1.0 - x), $MachinePrecision]], $MachinePrecision], 1/3], $MachinePrecision], 3.0], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\pi \cdot 0.5 - {\left(\sqrt[3]{\sin^{-1} \left(1 - x\right)}\right)}^{3}
\end{array}
Derivation
  1. Initial program 7.0%

    \[\cos^{-1} \left(1 - x\right) \]
  2. Step-by-step derivation
    1. acos-asin7.0%

      \[\leadsto \color{blue}{\frac{\pi}{2} - \sin^{-1} \left(1 - x\right)} \]
    2. sub-neg7.0%

      \[\leadsto \color{blue}{\frac{\pi}{2} + \left(-\sin^{-1} \left(1 - x\right)\right)} \]
    3. div-inv7.0%

      \[\leadsto \color{blue}{\pi \cdot \frac{1}{2}} + \left(-\sin^{-1} \left(1 - x\right)\right) \]
    4. metadata-eval7.0%

      \[\leadsto \pi \cdot \color{blue}{0.5} + \left(-\sin^{-1} \left(1 - x\right)\right) \]
  3. Applied egg-rr7.0%

    \[\leadsto \color{blue}{\pi \cdot 0.5 + \left(-\sin^{-1} \left(1 - x\right)\right)} \]
  4. Step-by-step derivation
    1. sub-neg7.0%

      \[\leadsto \color{blue}{\pi \cdot 0.5 - \sin^{-1} \left(1 - x\right)} \]
  5. Simplified7.0%

    \[\leadsto \color{blue}{\pi \cdot 0.5 - \sin^{-1} \left(1 - x\right)} \]
  6. Step-by-step derivation
    1. add-cube-cbrt10.2%

      \[\leadsto \pi \cdot 0.5 - \color{blue}{\left(\sqrt[3]{\sin^{-1} \left(1 - x\right)} \cdot \sqrt[3]{\sin^{-1} \left(1 - x\right)}\right) \cdot \sqrt[3]{\sin^{-1} \left(1 - x\right)}} \]
    2. pow310.2%

      \[\leadsto \pi \cdot 0.5 - \color{blue}{{\left(\sqrt[3]{\sin^{-1} \left(1 - x\right)}\right)}^{3}} \]
  7. Applied egg-rr10.2%

    \[\leadsto \pi \cdot 0.5 - \color{blue}{{\left(\sqrt[3]{\sin^{-1} \left(1 - x\right)}\right)}^{3}} \]
  8. Final simplification10.2%

    \[\leadsto \pi \cdot 0.5 - {\left(\sqrt[3]{\sin^{-1} \left(1 - x\right)}\right)}^{3} \]

Alternative 4: 10.6% accurate, 0.3× speedup?

\[\begin{array}{l} \\ \pi \cdot 0.5 - {\left(\sqrt{\sin^{-1} \left(1 - x\right)}\right)}^{2} \end{array} \]
(FPCore (x)
 :precision binary64
 (- (* PI 0.5) (pow (sqrt (asin (- 1.0 x))) 2.0)))
double code(double x) {
	return (((double) M_PI) * 0.5) - pow(sqrt(asin((1.0 - x))), 2.0);
}
public static double code(double x) {
	return (Math.PI * 0.5) - Math.pow(Math.sqrt(Math.asin((1.0 - x))), 2.0);
}
def code(x):
	return (math.pi * 0.5) - math.pow(math.sqrt(math.asin((1.0 - x))), 2.0)
function code(x)
	return Float64(Float64(pi * 0.5) - (sqrt(asin(Float64(1.0 - x))) ^ 2.0))
end
function tmp = code(x)
	tmp = (pi * 0.5) - (sqrt(asin((1.0 - x))) ^ 2.0);
end
code[x_] := N[(N[(Pi * 0.5), $MachinePrecision] - N[Power[N[Sqrt[N[ArcSin[N[(1.0 - x), $MachinePrecision]], $MachinePrecision]], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\pi \cdot 0.5 - {\left(\sqrt{\sin^{-1} \left(1 - x\right)}\right)}^{2}
\end{array}
Derivation
  1. Initial program 7.0%

    \[\cos^{-1} \left(1 - x\right) \]
  2. Step-by-step derivation
    1. acos-asin7.0%

      \[\leadsto \color{blue}{\frac{\pi}{2} - \sin^{-1} \left(1 - x\right)} \]
    2. sub-neg7.0%

      \[\leadsto \color{blue}{\frac{\pi}{2} + \left(-\sin^{-1} \left(1 - x\right)\right)} \]
    3. div-inv7.0%

      \[\leadsto \color{blue}{\pi \cdot \frac{1}{2}} + \left(-\sin^{-1} \left(1 - x\right)\right) \]
    4. metadata-eval7.0%

      \[\leadsto \pi \cdot \color{blue}{0.5} + \left(-\sin^{-1} \left(1 - x\right)\right) \]
  3. Applied egg-rr7.0%

    \[\leadsto \color{blue}{\pi \cdot 0.5 + \left(-\sin^{-1} \left(1 - x\right)\right)} \]
  4. Step-by-step derivation
    1. sub-neg7.0%

      \[\leadsto \color{blue}{\pi \cdot 0.5 - \sin^{-1} \left(1 - x\right)} \]
  5. Simplified7.0%

    \[\leadsto \color{blue}{\pi \cdot 0.5 - \sin^{-1} \left(1 - x\right)} \]
  6. Step-by-step derivation
    1. add-sqr-sqrt10.3%

      \[\leadsto \pi \cdot 0.5 - \color{blue}{\sqrt{\sin^{-1} \left(1 - x\right)} \cdot \sqrt{\sin^{-1} \left(1 - x\right)}} \]
    2. pow210.3%

      \[\leadsto \pi \cdot 0.5 - \color{blue}{{\left(\sqrt{\sin^{-1} \left(1 - x\right)}\right)}^{2}} \]
  7. Applied egg-rr10.3%

    \[\leadsto \pi \cdot 0.5 - \color{blue}{{\left(\sqrt{\sin^{-1} \left(1 - x\right)}\right)}^{2}} \]
  8. Final simplification10.3%

    \[\leadsto \pi \cdot 0.5 - {\left(\sqrt{\sin^{-1} \left(1 - x\right)}\right)}^{2} \]

Alternative 5: 9.7% accurate, 0.3× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq 5.6 \cdot 10^{-17}:\\ \;\;\;\;\sin^{-1} \left(1 - x\right) + \pi \cdot 0.5\\ \mathbf{else}:\\ \;\;\;\;1 + {\left(\sqrt[3]{\cos^{-1} \left(1 - x\right) + -1}\right)}^{3}\\ \end{array} \end{array} \]
(FPCore (x)
 :precision binary64
 (if (<= x 5.6e-17)
   (+ (asin (- 1.0 x)) (* PI 0.5))
   (+ 1.0 (pow (cbrt (+ (acos (- 1.0 x)) -1.0)) 3.0))))
double code(double x) {
	double tmp;
	if (x <= 5.6e-17) {
		tmp = asin((1.0 - x)) + (((double) M_PI) * 0.5);
	} else {
		tmp = 1.0 + pow(cbrt((acos((1.0 - x)) + -1.0)), 3.0);
	}
	return tmp;
}
public static double code(double x) {
	double tmp;
	if (x <= 5.6e-17) {
		tmp = Math.asin((1.0 - x)) + (Math.PI * 0.5);
	} else {
		tmp = 1.0 + Math.pow(Math.cbrt((Math.acos((1.0 - x)) + -1.0)), 3.0);
	}
	return tmp;
}
function code(x)
	tmp = 0.0
	if (x <= 5.6e-17)
		tmp = Float64(asin(Float64(1.0 - x)) + Float64(pi * 0.5));
	else
		tmp = Float64(1.0 + (cbrt(Float64(acos(Float64(1.0 - x)) + -1.0)) ^ 3.0));
	end
	return tmp
end
code[x_] := If[LessEqual[x, 5.6e-17], N[(N[ArcSin[N[(1.0 - x), $MachinePrecision]], $MachinePrecision] + N[(Pi * 0.5), $MachinePrecision]), $MachinePrecision], N[(1.0 + N[Power[N[Power[N[(N[ArcCos[N[(1.0 - x), $MachinePrecision]], $MachinePrecision] + -1.0), $MachinePrecision], 1/3], $MachinePrecision], 3.0], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq 5.6 \cdot 10^{-17}:\\
\;\;\;\;\sin^{-1} \left(1 - x\right) + \pi \cdot 0.5\\

\mathbf{else}:\\
\;\;\;\;1 + {\left(\sqrt[3]{\cos^{-1} \left(1 - x\right) + -1}\right)}^{3}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < 5.5999999999999998e-17

    1. Initial program 3.9%

      \[\cos^{-1} \left(1 - x\right) \]
    2. Step-by-step derivation
      1. acos-asin3.9%

        \[\leadsto \color{blue}{\frac{\pi}{2} - \sin^{-1} \left(1 - x\right)} \]
      2. flip--3.9%

        \[\leadsto \color{blue}{\frac{\frac{\pi}{2} \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)}} \]
      3. div-inv3.9%

        \[\leadsto \frac{\color{blue}{\left(\pi \cdot \frac{1}{2}\right)} \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
      4. metadata-eval3.9%

        \[\leadsto \frac{\left(\pi \cdot \color{blue}{0.5}\right) \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
      5. div-inv3.9%

        \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \color{blue}{\left(\pi \cdot \frac{1}{2}\right)} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
      6. metadata-eval3.9%

        \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot \color{blue}{0.5}\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
      7. div-inv3.9%

        \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\color{blue}{\pi \cdot \frac{1}{2}} + \sin^{-1} \left(1 - x\right)} \]
      8. metadata-eval3.9%

        \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\pi \cdot \color{blue}{0.5} + \sin^{-1} \left(1 - x\right)} \]
    3. Applied egg-rr3.9%

      \[\leadsto \color{blue}{\frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\pi \cdot 0.5 + \sin^{-1} \left(1 - x\right)}} \]
    4. Step-by-step derivation
      1. flip--3.9%

        \[\leadsto \color{blue}{\pi \cdot 0.5 - \sin^{-1} \left(1 - x\right)} \]
      2. add-cube-cbrt2.0%

        \[\leadsto \color{blue}{\left(\sqrt[3]{\pi \cdot 0.5} \cdot \sqrt[3]{\pi \cdot 0.5}\right) \cdot \sqrt[3]{\pi \cdot 0.5}} - \sin^{-1} \left(1 - x\right) \]
      3. fma-neg2.0%

        \[\leadsto \color{blue}{\mathsf{fma}\left(\sqrt[3]{\pi \cdot 0.5} \cdot \sqrt[3]{\pi \cdot 0.5}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right)} \]
      4. pow22.0%

        \[\leadsto \mathsf{fma}\left(\color{blue}{{\left(\sqrt[3]{\pi \cdot 0.5}\right)}^{2}}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \]
    5. Applied egg-rr2.0%

      \[\leadsto \color{blue}{\mathsf{fma}\left({\left(\sqrt[3]{\pi \cdot 0.5}\right)}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right)} \]
    6. Step-by-step derivation
      1. pow1/37.4%

        \[\leadsto \mathsf{fma}\left({\color{blue}{\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \]
    7. Applied egg-rr7.4%

      \[\leadsto \mathsf{fma}\left({\color{blue}{\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \]
    8. Step-by-step derivation
      1. fma-udef3.9%

        \[\leadsto \color{blue}{{\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}^{2} \cdot \sqrt[3]{\pi \cdot 0.5} + \left(-\sin^{-1} \left(1 - x\right)\right)} \]
      2. pow1/32.0%

        \[\leadsto {\color{blue}{\left(\sqrt[3]{\pi \cdot 0.5}\right)}}^{2} \cdot \sqrt[3]{\pi \cdot 0.5} + \left(-\sin^{-1} \left(1 - x\right)\right) \]
      3. unpow22.0%

        \[\leadsto \color{blue}{\left(\sqrt[3]{\pi \cdot 0.5} \cdot \sqrt[3]{\pi \cdot 0.5}\right)} \cdot \sqrt[3]{\pi \cdot 0.5} + \left(-\sin^{-1} \left(1 - x\right)\right) \]
      4. add-cube-cbrt3.9%

        \[\leadsto \color{blue}{\pi \cdot 0.5} + \left(-\sin^{-1} \left(1 - x\right)\right) \]
      5. add-sqr-sqrt0.0%

        \[\leadsto \pi \cdot 0.5 + \color{blue}{\sqrt{-\sin^{-1} \left(1 - x\right)} \cdot \sqrt{-\sin^{-1} \left(1 - x\right)}} \]
      6. sqrt-unprod6.5%

        \[\leadsto \pi \cdot 0.5 + \color{blue}{\sqrt{\left(-\sin^{-1} \left(1 - x\right)\right) \cdot \left(-\sin^{-1} \left(1 - x\right)\right)}} \]
      7. sqr-neg6.5%

        \[\leadsto \pi \cdot 0.5 + \sqrt{\color{blue}{\sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}} \]
      8. sqrt-prod6.5%

        \[\leadsto \pi \cdot 0.5 + \color{blue}{\sqrt{\sin^{-1} \left(1 - x\right)} \cdot \sqrt{\sin^{-1} \left(1 - x\right)}} \]
      9. add-sqr-sqrt6.5%

        \[\leadsto \pi \cdot 0.5 + \color{blue}{\sin^{-1} \left(1 - x\right)} \]
    9. Applied egg-rr6.5%

      \[\leadsto \color{blue}{\pi \cdot 0.5 + \sin^{-1} \left(1 - x\right)} \]

    if 5.5999999999999998e-17 < x

    1. Initial program 61.9%

      \[\cos^{-1} \left(1 - x\right) \]
    2. Step-by-step derivation
      1. expm1-log1p-u61.8%

        \[\leadsto \color{blue}{\mathsf{expm1}\left(\mathsf{log1p}\left(\cos^{-1} \left(1 - x\right)\right)\right)} \]
      2. expm1-udef61.8%

        \[\leadsto \color{blue}{e^{\mathsf{log1p}\left(\cos^{-1} \left(1 - x\right)\right)} - 1} \]
      3. log1p-udef61.8%

        \[\leadsto e^{\color{blue}{\log \left(1 + \cos^{-1} \left(1 - x\right)\right)}} - 1 \]
      4. add-exp-log61.8%

        \[\leadsto \color{blue}{\left(1 + \cos^{-1} \left(1 - x\right)\right)} - 1 \]
    3. Applied egg-rr61.8%

      \[\leadsto \color{blue}{\left(1 + \cos^{-1} \left(1 - x\right)\right) - 1} \]
    4. Step-by-step derivation
      1. associate--l+61.9%

        \[\leadsto \color{blue}{1 + \left(\cos^{-1} \left(1 - x\right) - 1\right)} \]
    5. Applied egg-rr61.9%

      \[\leadsto \color{blue}{1 + \left(\cos^{-1} \left(1 - x\right) - 1\right)} \]
    6. Step-by-step derivation
      1. add-cube-cbrt62.2%

        \[\leadsto 1 + \color{blue}{\left(\sqrt[3]{\cos^{-1} \left(1 - x\right) - 1} \cdot \sqrt[3]{\cos^{-1} \left(1 - x\right) - 1}\right) \cdot \sqrt[3]{\cos^{-1} \left(1 - x\right) - 1}} \]
      2. pow362.2%

        \[\leadsto 1 + \color{blue}{{\left(\sqrt[3]{\cos^{-1} \left(1 - x\right) - 1}\right)}^{3}} \]
      3. sub-neg62.2%

        \[\leadsto 1 + {\left(\sqrt[3]{\color{blue}{\cos^{-1} \left(1 - x\right) + \left(-1\right)}}\right)}^{3} \]
      4. metadata-eval62.2%

        \[\leadsto 1 + {\left(\sqrt[3]{\cos^{-1} \left(1 - x\right) + \color{blue}{-1}}\right)}^{3} \]
    7. Applied egg-rr62.2%

      \[\leadsto 1 + \color{blue}{{\left(\sqrt[3]{\cos^{-1} \left(1 - x\right) + -1}\right)}^{3}} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification9.5%

    \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq 5.6 \cdot 10^{-17}:\\ \;\;\;\;\sin^{-1} \left(1 - x\right) + \pi \cdot 0.5\\ \mathbf{else}:\\ \;\;\;\;1 + {\left(\sqrt[3]{\cos^{-1} \left(1 - x\right) + -1}\right)}^{3}\\ \end{array} \]

Alternative 6: 9.7% accurate, 0.5× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq 5.6 \cdot 10^{-17}:\\ \;\;\;\;\sin^{-1} \left(1 - x\right) + \pi \cdot 0.5\\ \mathbf{else}:\\ \;\;\;\;0.3333333333333333 \cdot \left(3 \cdot \cos^{-1} \left(1 - x\right)\right)\\ \end{array} \end{array} \]
(FPCore (x)
 :precision binary64
 (if (<= x 5.6e-17)
   (+ (asin (- 1.0 x)) (* PI 0.5))
   (* 0.3333333333333333 (* 3.0 (acos (- 1.0 x))))))
double code(double x) {
	double tmp;
	if (x <= 5.6e-17) {
		tmp = asin((1.0 - x)) + (((double) M_PI) * 0.5);
	} else {
		tmp = 0.3333333333333333 * (3.0 * acos((1.0 - x)));
	}
	return tmp;
}
public static double code(double x) {
	double tmp;
	if (x <= 5.6e-17) {
		tmp = Math.asin((1.0 - x)) + (Math.PI * 0.5);
	} else {
		tmp = 0.3333333333333333 * (3.0 * Math.acos((1.0 - x)));
	}
	return tmp;
}
def code(x):
	tmp = 0
	if x <= 5.6e-17:
		tmp = math.asin((1.0 - x)) + (math.pi * 0.5)
	else:
		tmp = 0.3333333333333333 * (3.0 * math.acos((1.0 - x)))
	return tmp
function code(x)
	tmp = 0.0
	if (x <= 5.6e-17)
		tmp = Float64(asin(Float64(1.0 - x)) + Float64(pi * 0.5));
	else
		tmp = Float64(0.3333333333333333 * Float64(3.0 * acos(Float64(1.0 - x))));
	end
	return tmp
end
function tmp_2 = code(x)
	tmp = 0.0;
	if (x <= 5.6e-17)
		tmp = asin((1.0 - x)) + (pi * 0.5);
	else
		tmp = 0.3333333333333333 * (3.0 * acos((1.0 - x)));
	end
	tmp_2 = tmp;
end
code[x_] := If[LessEqual[x, 5.6e-17], N[(N[ArcSin[N[(1.0 - x), $MachinePrecision]], $MachinePrecision] + N[(Pi * 0.5), $MachinePrecision]), $MachinePrecision], N[(0.3333333333333333 * N[(3.0 * N[ArcCos[N[(1.0 - x), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq 5.6 \cdot 10^{-17}:\\
\;\;\;\;\sin^{-1} \left(1 - x\right) + \pi \cdot 0.5\\

\mathbf{else}:\\
\;\;\;\;0.3333333333333333 \cdot \left(3 \cdot \cos^{-1} \left(1 - x\right)\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < 5.5999999999999998e-17

    1. Initial program 3.9%

      \[\cos^{-1} \left(1 - x\right) \]
    2. Step-by-step derivation
      1. acos-asin3.9%

        \[\leadsto \color{blue}{\frac{\pi}{2} - \sin^{-1} \left(1 - x\right)} \]
      2. flip--3.9%

        \[\leadsto \color{blue}{\frac{\frac{\pi}{2} \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)}} \]
      3. div-inv3.9%

        \[\leadsto \frac{\color{blue}{\left(\pi \cdot \frac{1}{2}\right)} \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
      4. metadata-eval3.9%

        \[\leadsto \frac{\left(\pi \cdot \color{blue}{0.5}\right) \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
      5. div-inv3.9%

        \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \color{blue}{\left(\pi \cdot \frac{1}{2}\right)} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
      6. metadata-eval3.9%

        \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot \color{blue}{0.5}\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
      7. div-inv3.9%

        \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\color{blue}{\pi \cdot \frac{1}{2}} + \sin^{-1} \left(1 - x\right)} \]
      8. metadata-eval3.9%

        \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\pi \cdot \color{blue}{0.5} + \sin^{-1} \left(1 - x\right)} \]
    3. Applied egg-rr3.9%

      \[\leadsto \color{blue}{\frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\pi \cdot 0.5 + \sin^{-1} \left(1 - x\right)}} \]
    4. Step-by-step derivation
      1. flip--3.9%

        \[\leadsto \color{blue}{\pi \cdot 0.5 - \sin^{-1} \left(1 - x\right)} \]
      2. add-cube-cbrt2.0%

        \[\leadsto \color{blue}{\left(\sqrt[3]{\pi \cdot 0.5} \cdot \sqrt[3]{\pi \cdot 0.5}\right) \cdot \sqrt[3]{\pi \cdot 0.5}} - \sin^{-1} \left(1 - x\right) \]
      3. fma-neg2.0%

        \[\leadsto \color{blue}{\mathsf{fma}\left(\sqrt[3]{\pi \cdot 0.5} \cdot \sqrt[3]{\pi \cdot 0.5}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right)} \]
      4. pow22.0%

        \[\leadsto \mathsf{fma}\left(\color{blue}{{\left(\sqrt[3]{\pi \cdot 0.5}\right)}^{2}}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \]
    5. Applied egg-rr2.0%

      \[\leadsto \color{blue}{\mathsf{fma}\left({\left(\sqrt[3]{\pi \cdot 0.5}\right)}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right)} \]
    6. Step-by-step derivation
      1. pow1/37.4%

        \[\leadsto \mathsf{fma}\left({\color{blue}{\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \]
    7. Applied egg-rr7.4%

      \[\leadsto \mathsf{fma}\left({\color{blue}{\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \]
    8. Step-by-step derivation
      1. fma-udef3.9%

        \[\leadsto \color{blue}{{\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}^{2} \cdot \sqrt[3]{\pi \cdot 0.5} + \left(-\sin^{-1} \left(1 - x\right)\right)} \]
      2. pow1/32.0%

        \[\leadsto {\color{blue}{\left(\sqrt[3]{\pi \cdot 0.5}\right)}}^{2} \cdot \sqrt[3]{\pi \cdot 0.5} + \left(-\sin^{-1} \left(1 - x\right)\right) \]
      3. unpow22.0%

        \[\leadsto \color{blue}{\left(\sqrt[3]{\pi \cdot 0.5} \cdot \sqrt[3]{\pi \cdot 0.5}\right)} \cdot \sqrt[3]{\pi \cdot 0.5} + \left(-\sin^{-1} \left(1 - x\right)\right) \]
      4. add-cube-cbrt3.9%

        \[\leadsto \color{blue}{\pi \cdot 0.5} + \left(-\sin^{-1} \left(1 - x\right)\right) \]
      5. add-sqr-sqrt0.0%

        \[\leadsto \pi \cdot 0.5 + \color{blue}{\sqrt{-\sin^{-1} \left(1 - x\right)} \cdot \sqrt{-\sin^{-1} \left(1 - x\right)}} \]
      6. sqrt-unprod6.5%

        \[\leadsto \pi \cdot 0.5 + \color{blue}{\sqrt{\left(-\sin^{-1} \left(1 - x\right)\right) \cdot \left(-\sin^{-1} \left(1 - x\right)\right)}} \]
      7. sqr-neg6.5%

        \[\leadsto \pi \cdot 0.5 + \sqrt{\color{blue}{\sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}} \]
      8. sqrt-prod6.5%

        \[\leadsto \pi \cdot 0.5 + \color{blue}{\sqrt{\sin^{-1} \left(1 - x\right)} \cdot \sqrt{\sin^{-1} \left(1 - x\right)}} \]
      9. add-sqr-sqrt6.5%

        \[\leadsto \pi \cdot 0.5 + \color{blue}{\sin^{-1} \left(1 - x\right)} \]
    9. Applied egg-rr6.5%

      \[\leadsto \color{blue}{\pi \cdot 0.5 + \sin^{-1} \left(1 - x\right)} \]

    if 5.5999999999999998e-17 < x

    1. Initial program 61.9%

      \[\cos^{-1} \left(1 - x\right) \]
    2. Step-by-step derivation
      1. acos-asin61.9%

        \[\leadsto \color{blue}{\frac{\pi}{2} - \sin^{-1} \left(1 - x\right)} \]
      2. flip--62.0%

        \[\leadsto \color{blue}{\frac{\frac{\pi}{2} \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)}} \]
      3. div-inv62.0%

        \[\leadsto \frac{\color{blue}{\left(\pi \cdot \frac{1}{2}\right)} \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
      4. metadata-eval62.0%

        \[\leadsto \frac{\left(\pi \cdot \color{blue}{0.5}\right) \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
      5. div-inv62.0%

        \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \color{blue}{\left(\pi \cdot \frac{1}{2}\right)} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
      6. metadata-eval62.0%

        \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot \color{blue}{0.5}\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
      7. div-inv62.0%

        \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\color{blue}{\pi \cdot \frac{1}{2}} + \sin^{-1} \left(1 - x\right)} \]
      8. metadata-eval62.0%

        \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\pi \cdot \color{blue}{0.5} + \sin^{-1} \left(1 - x\right)} \]
    3. Applied egg-rr62.0%

      \[\leadsto \color{blue}{\frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\pi \cdot 0.5 + \sin^{-1} \left(1 - x\right)}} \]
    4. Step-by-step derivation
      1. flip--61.9%

        \[\leadsto \color{blue}{\pi \cdot 0.5 - \sin^{-1} \left(1 - x\right)} \]
      2. add-cube-cbrt61.4%

        \[\leadsto \color{blue}{\left(\sqrt[3]{\pi \cdot 0.5} \cdot \sqrt[3]{\pi \cdot 0.5}\right) \cdot \sqrt[3]{\pi \cdot 0.5}} - \sin^{-1} \left(1 - x\right) \]
      3. fma-neg61.2%

        \[\leadsto \color{blue}{\mathsf{fma}\left(\sqrt[3]{\pi \cdot 0.5} \cdot \sqrt[3]{\pi \cdot 0.5}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right)} \]
      4. pow261.2%

        \[\leadsto \mathsf{fma}\left(\color{blue}{{\left(\sqrt[3]{\pi \cdot 0.5}\right)}^{2}}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \]
    5. Applied egg-rr61.2%

      \[\leadsto \color{blue}{\mathsf{fma}\left({\left(\sqrt[3]{\pi \cdot 0.5}\right)}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right)} \]
    6. Step-by-step derivation
      1. pow1/362.0%

        \[\leadsto \mathsf{fma}\left({\color{blue}{\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \]
    7. Applied egg-rr62.0%

      \[\leadsto \mathsf{fma}\left({\color{blue}{\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \]
    8. Step-by-step derivation
      1. *-un-lft-identity62.0%

        \[\leadsto \color{blue}{1 \cdot \mathsf{fma}\left({\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right)} \]
      2. fma-udef61.9%

        \[\leadsto 1 \cdot \color{blue}{\left({\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}^{2} \cdot \sqrt[3]{\pi \cdot 0.5} + \left(-\sin^{-1} \left(1 - x\right)\right)\right)} \]
      3. pow1/361.4%

        \[\leadsto 1 \cdot \left({\color{blue}{\left(\sqrt[3]{\pi \cdot 0.5}\right)}}^{2} \cdot \sqrt[3]{\pi \cdot 0.5} + \left(-\sin^{-1} \left(1 - x\right)\right)\right) \]
      4. unpow261.4%

        \[\leadsto 1 \cdot \left(\color{blue}{\left(\sqrt[3]{\pi \cdot 0.5} \cdot \sqrt[3]{\pi \cdot 0.5}\right)} \cdot \sqrt[3]{\pi \cdot 0.5} + \left(-\sin^{-1} \left(1 - x\right)\right)\right) \]
      5. add-cube-cbrt61.9%

        \[\leadsto 1 \cdot \left(\color{blue}{\pi \cdot 0.5} + \left(-\sin^{-1} \left(1 - x\right)\right)\right) \]
      6. sub-neg61.9%

        \[\leadsto 1 \cdot \color{blue}{\left(\pi \cdot 0.5 - \sin^{-1} \left(1 - x\right)\right)} \]
      7. metadata-eval61.9%

        \[\leadsto 1 \cdot \left(\pi \cdot \color{blue}{\frac{1}{2}} - \sin^{-1} \left(1 - x\right)\right) \]
      8. div-inv61.9%

        \[\leadsto 1 \cdot \left(\color{blue}{\frac{\pi}{2}} - \sin^{-1} \left(1 - x\right)\right) \]
      9. acos-asin61.9%

        \[\leadsto 1 \cdot \color{blue}{\cos^{-1} \left(1 - x\right)} \]
      10. metadata-eval61.9%

        \[\leadsto \color{blue}{\left(3 \cdot 0.3333333333333333\right)} \cdot \cos^{-1} \left(1 - x\right) \]
      11. associate-*r*61.9%

        \[\leadsto \color{blue}{3 \cdot \left(0.3333333333333333 \cdot \cos^{-1} \left(1 - x\right)\right)} \]
      12. *-commutative61.9%

        \[\leadsto 3 \cdot \color{blue}{\left(\cos^{-1} \left(1 - x\right) \cdot 0.3333333333333333\right)} \]
      13. associate-*r*62.0%

        \[\leadsto \color{blue}{\left(3 \cdot \cos^{-1} \left(1 - x\right)\right) \cdot 0.3333333333333333} \]
    9. Applied egg-rr62.0%

      \[\leadsto \color{blue}{\left(3 \cdot \cos^{-1} \left(1 - x\right)\right) \cdot 0.3333333333333333} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification9.5%

    \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq 5.6 \cdot 10^{-17}:\\ \;\;\;\;\sin^{-1} \left(1 - x\right) + \pi \cdot 0.5\\ \mathbf{else}:\\ \;\;\;\;0.3333333333333333 \cdot \left(3 \cdot \cos^{-1} \left(1 - x\right)\right)\\ \end{array} \]

Alternative 7: 7.2% accurate, 1.0× speedup?

\[\begin{array}{l} \\ 3 \cdot \left(0.3333333333333333 \cdot \cos^{-1} \left(1 - x\right)\right) \end{array} \]
(FPCore (x)
 :precision binary64
 (* 3.0 (* 0.3333333333333333 (acos (- 1.0 x)))))
double code(double x) {
	return 3.0 * (0.3333333333333333 * acos((1.0 - x)));
}
real(8) function code(x)
    real(8), intent (in) :: x
    code = 3.0d0 * (0.3333333333333333d0 * acos((1.0d0 - x)))
end function
public static double code(double x) {
	return 3.0 * (0.3333333333333333 * Math.acos((1.0 - x)));
}
def code(x):
	return 3.0 * (0.3333333333333333 * math.acos((1.0 - x)))
function code(x)
	return Float64(3.0 * Float64(0.3333333333333333 * acos(Float64(1.0 - x))))
end
function tmp = code(x)
	tmp = 3.0 * (0.3333333333333333 * acos((1.0 - x)));
end
code[x_] := N[(3.0 * N[(0.3333333333333333 * N[ArcCos[N[(1.0 - x), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
3 \cdot \left(0.3333333333333333 \cdot \cos^{-1} \left(1 - x\right)\right)
\end{array}
Derivation
  1. Initial program 7.0%

    \[\cos^{-1} \left(1 - x\right) \]
  2. Step-by-step derivation
    1. expm1-log1p-u7.0%

      \[\leadsto \color{blue}{\mathsf{expm1}\left(\mathsf{log1p}\left(\cos^{-1} \left(1 - x\right)\right)\right)} \]
    2. expm1-udef7.0%

      \[\leadsto \color{blue}{e^{\mathsf{log1p}\left(\cos^{-1} \left(1 - x\right)\right)} - 1} \]
    3. log1p-udef7.0%

      \[\leadsto e^{\color{blue}{\log \left(1 + \cos^{-1} \left(1 - x\right)\right)}} - 1 \]
    4. add-exp-log7.0%

      \[\leadsto \color{blue}{\left(1 + \cos^{-1} \left(1 - x\right)\right)} - 1 \]
  3. Applied egg-rr7.0%

    \[\leadsto \color{blue}{\left(1 + \cos^{-1} \left(1 - x\right)\right) - 1} \]
  4. Step-by-step derivation
    1. associate--l+7.0%

      \[\leadsto \color{blue}{1 + \left(\cos^{-1} \left(1 - x\right) - 1\right)} \]
  5. Applied egg-rr7.0%

    \[\leadsto \color{blue}{1 + \left(\cos^{-1} \left(1 - x\right) - 1\right)} \]
  6. Step-by-step derivation
    1. add-exp-log7.0%

      \[\leadsto \color{blue}{e^{\log \left(1 + \left(\cos^{-1} \left(1 - x\right) - 1\right)\right)}} \]
    2. log1p-udef7.0%

      \[\leadsto e^{\color{blue}{\mathsf{log1p}\left(\cos^{-1} \left(1 - x\right) - 1\right)}} \]
    3. add-exp-log7.0%

      \[\leadsto e^{\mathsf{log1p}\left(\color{blue}{e^{\log \cos^{-1} \left(1 - x\right)}} - 1\right)} \]
    4. expm1-def7.0%

      \[\leadsto e^{\mathsf{log1p}\left(\color{blue}{\mathsf{expm1}\left(\log \cos^{-1} \left(1 - x\right)\right)}\right)} \]
    5. log1p-expm1-u7.0%

      \[\leadsto e^{\color{blue}{\log \cos^{-1} \left(1 - x\right)}} \]
    6. add-log-exp7.0%

      \[\leadsto e^{\log \color{blue}{\log \left(e^{\cos^{-1} \left(1 - x\right)}\right)}} \]
    7. add-cube-cbrt7.0%

      \[\leadsto e^{\log \log \color{blue}{\left(\left(\sqrt[3]{e^{\cos^{-1} \left(1 - x\right)}} \cdot \sqrt[3]{e^{\cos^{-1} \left(1 - x\right)}}\right) \cdot \sqrt[3]{e^{\cos^{-1} \left(1 - x\right)}}\right)}} \]
    8. pow37.0%

      \[\leadsto e^{\log \log \color{blue}{\left({\left(\sqrt[3]{e^{\cos^{-1} \left(1 - x\right)}}\right)}^{3}\right)}} \]
    9. exp-to-pow7.0%

      \[\leadsto e^{\log \log \color{blue}{\left(e^{\log \left(\sqrt[3]{e^{\cos^{-1} \left(1 - x\right)}}\right) \cdot 3}\right)}} \]
    10. *-commutative7.0%

      \[\leadsto e^{\log \log \left(e^{\color{blue}{3 \cdot \log \left(\sqrt[3]{e^{\cos^{-1} \left(1 - x\right)}}\right)}}\right)} \]
    11. add-log-exp7.0%

      \[\leadsto e^{\log \color{blue}{\left(3 \cdot \log \left(\sqrt[3]{e^{\cos^{-1} \left(1 - x\right)}}\right)\right)}} \]
    12. add-exp-log7.0%

      \[\leadsto \color{blue}{3 \cdot \log \left(\sqrt[3]{e^{\cos^{-1} \left(1 - x\right)}}\right)} \]
    13. *-commutative7.0%

      \[\leadsto \color{blue}{\log \left(\sqrt[3]{e^{\cos^{-1} \left(1 - x\right)}}\right) \cdot 3} \]
  7. Applied egg-rr7.0%

    \[\leadsto \color{blue}{\left(0.3333333333333333 \cdot \cos^{-1} \left(1 - x\right)\right) \cdot 3} \]
  8. Final simplification7.0%

    \[\leadsto 3 \cdot \left(0.3333333333333333 \cdot \cos^{-1} \left(1 - x\right)\right) \]

Alternative 8: 7.2% accurate, 1.0× speedup?

\[\begin{array}{l} \\ 0.3333333333333333 \cdot \left(3 \cdot \cos^{-1} \left(1 - x\right)\right) \end{array} \]
(FPCore (x)
 :precision binary64
 (* 0.3333333333333333 (* 3.0 (acos (- 1.0 x)))))
double code(double x) {
	return 0.3333333333333333 * (3.0 * acos((1.0 - x)));
}
real(8) function code(x)
    real(8), intent (in) :: x
    code = 0.3333333333333333d0 * (3.0d0 * acos((1.0d0 - x)))
end function
public static double code(double x) {
	return 0.3333333333333333 * (3.0 * Math.acos((1.0 - x)));
}
def code(x):
	return 0.3333333333333333 * (3.0 * math.acos((1.0 - x)))
function code(x)
	return Float64(0.3333333333333333 * Float64(3.0 * acos(Float64(1.0 - x))))
end
function tmp = code(x)
	tmp = 0.3333333333333333 * (3.0 * acos((1.0 - x)));
end
code[x_] := N[(0.3333333333333333 * N[(3.0 * N[ArcCos[N[(1.0 - x), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
0.3333333333333333 \cdot \left(3 \cdot \cos^{-1} \left(1 - x\right)\right)
\end{array}
Derivation
  1. Initial program 7.0%

    \[\cos^{-1} \left(1 - x\right) \]
  2. Step-by-step derivation
    1. acos-asin7.0%

      \[\leadsto \color{blue}{\frac{\pi}{2} - \sin^{-1} \left(1 - x\right)} \]
    2. flip--7.0%

      \[\leadsto \color{blue}{\frac{\frac{\pi}{2} \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)}} \]
    3. div-inv7.0%

      \[\leadsto \frac{\color{blue}{\left(\pi \cdot \frac{1}{2}\right)} \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
    4. metadata-eval7.0%

      \[\leadsto \frac{\left(\pi \cdot \color{blue}{0.5}\right) \cdot \frac{\pi}{2} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
    5. div-inv7.0%

      \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \color{blue}{\left(\pi \cdot \frac{1}{2}\right)} - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
    6. metadata-eval7.0%

      \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot \color{blue}{0.5}\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\frac{\pi}{2} + \sin^{-1} \left(1 - x\right)} \]
    7. div-inv7.0%

      \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\color{blue}{\pi \cdot \frac{1}{2}} + \sin^{-1} \left(1 - x\right)} \]
    8. metadata-eval7.0%

      \[\leadsto \frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\pi \cdot \color{blue}{0.5} + \sin^{-1} \left(1 - x\right)} \]
  3. Applied egg-rr7.0%

    \[\leadsto \color{blue}{\frac{\left(\pi \cdot 0.5\right) \cdot \left(\pi \cdot 0.5\right) - \sin^{-1} \left(1 - x\right) \cdot \sin^{-1} \left(1 - x\right)}{\pi \cdot 0.5 + \sin^{-1} \left(1 - x\right)}} \]
  4. Step-by-step derivation
    1. flip--7.0%

      \[\leadsto \color{blue}{\pi \cdot 0.5 - \sin^{-1} \left(1 - x\right)} \]
    2. add-cube-cbrt5.2%

      \[\leadsto \color{blue}{\left(\sqrt[3]{\pi \cdot 0.5} \cdot \sqrt[3]{\pi \cdot 0.5}\right) \cdot \sqrt[3]{\pi \cdot 0.5}} - \sin^{-1} \left(1 - x\right) \]
    3. fma-neg5.2%

      \[\leadsto \color{blue}{\mathsf{fma}\left(\sqrt[3]{\pi \cdot 0.5} \cdot \sqrt[3]{\pi \cdot 0.5}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right)} \]
    4. pow25.2%

      \[\leadsto \mathsf{fma}\left(\color{blue}{{\left(\sqrt[3]{\pi \cdot 0.5}\right)}^{2}}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \]
  5. Applied egg-rr5.2%

    \[\leadsto \color{blue}{\mathsf{fma}\left({\left(\sqrt[3]{\pi \cdot 0.5}\right)}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right)} \]
  6. Step-by-step derivation
    1. pow1/310.4%

      \[\leadsto \mathsf{fma}\left({\color{blue}{\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \]
  7. Applied egg-rr10.4%

    \[\leadsto \mathsf{fma}\left({\color{blue}{\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right) \]
  8. Step-by-step derivation
    1. *-un-lft-identity10.4%

      \[\leadsto \color{blue}{1 \cdot \mathsf{fma}\left({\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}^{2}, \sqrt[3]{\pi \cdot 0.5}, -\sin^{-1} \left(1 - x\right)\right)} \]
    2. fma-udef7.0%

      \[\leadsto 1 \cdot \color{blue}{\left({\left({\left(\pi \cdot 0.5\right)}^{0.3333333333333333}\right)}^{2} \cdot \sqrt[3]{\pi \cdot 0.5} + \left(-\sin^{-1} \left(1 - x\right)\right)\right)} \]
    3. pow1/35.2%

      \[\leadsto 1 \cdot \left({\color{blue}{\left(\sqrt[3]{\pi \cdot 0.5}\right)}}^{2} \cdot \sqrt[3]{\pi \cdot 0.5} + \left(-\sin^{-1} \left(1 - x\right)\right)\right) \]
    4. unpow25.2%

      \[\leadsto 1 \cdot \left(\color{blue}{\left(\sqrt[3]{\pi \cdot 0.5} \cdot \sqrt[3]{\pi \cdot 0.5}\right)} \cdot \sqrt[3]{\pi \cdot 0.5} + \left(-\sin^{-1} \left(1 - x\right)\right)\right) \]
    5. add-cube-cbrt7.0%

      \[\leadsto 1 \cdot \left(\color{blue}{\pi \cdot 0.5} + \left(-\sin^{-1} \left(1 - x\right)\right)\right) \]
    6. sub-neg7.0%

      \[\leadsto 1 \cdot \color{blue}{\left(\pi \cdot 0.5 - \sin^{-1} \left(1 - x\right)\right)} \]
    7. metadata-eval7.0%

      \[\leadsto 1 \cdot \left(\pi \cdot \color{blue}{\frac{1}{2}} - \sin^{-1} \left(1 - x\right)\right) \]
    8. div-inv7.0%

      \[\leadsto 1 \cdot \left(\color{blue}{\frac{\pi}{2}} - \sin^{-1} \left(1 - x\right)\right) \]
    9. acos-asin7.0%

      \[\leadsto 1 \cdot \color{blue}{\cos^{-1} \left(1 - x\right)} \]
    10. metadata-eval7.0%

      \[\leadsto \color{blue}{\left(3 \cdot 0.3333333333333333\right)} \cdot \cos^{-1} \left(1 - x\right) \]
    11. associate-*r*7.0%

      \[\leadsto \color{blue}{3 \cdot \left(0.3333333333333333 \cdot \cos^{-1} \left(1 - x\right)\right)} \]
    12. *-commutative7.0%

      \[\leadsto 3 \cdot \color{blue}{\left(\cos^{-1} \left(1 - x\right) \cdot 0.3333333333333333\right)} \]
    13. associate-*r*7.0%

      \[\leadsto \color{blue}{\left(3 \cdot \cos^{-1} \left(1 - x\right)\right) \cdot 0.3333333333333333} \]
  9. Applied egg-rr7.0%

    \[\leadsto \color{blue}{\left(3 \cdot \cos^{-1} \left(1 - x\right)\right) \cdot 0.3333333333333333} \]
  10. Final simplification7.0%

    \[\leadsto 0.3333333333333333 \cdot \left(3 \cdot \cos^{-1} \left(1 - x\right)\right) \]

Alternative 9: 7.2% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \cos^{-1} \left(1 - x\right) \end{array} \]
(FPCore (x) :precision binary64 (acos (- 1.0 x)))
double code(double x) {
	return acos((1.0 - x));
}
real(8) function code(x)
    real(8), intent (in) :: x
    code = acos((1.0d0 - x))
end function
public static double code(double x) {
	return Math.acos((1.0 - x));
}
def code(x):
	return math.acos((1.0 - x))
function code(x)
	return acos(Float64(1.0 - x))
end
function tmp = code(x)
	tmp = acos((1.0 - x));
end
code[x_] := N[ArcCos[N[(1.0 - x), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}

\\
\cos^{-1} \left(1 - x\right)
\end{array}
Derivation
  1. Initial program 7.0%

    \[\cos^{-1} \left(1 - x\right) \]
  2. Final simplification7.0%

    \[\leadsto \cos^{-1} \left(1 - x\right) \]

Developer target: 100.0% accurate, 0.5× speedup?

\[\begin{array}{l} \\ 2 \cdot \sin^{-1} \left(\sqrt{\frac{x}{2}}\right) \end{array} \]
(FPCore (x) :precision binary64 (* 2.0 (asin (sqrt (/ x 2.0)))))
double code(double x) {
	return 2.0 * asin(sqrt((x / 2.0)));
}
real(8) function code(x)
    real(8), intent (in) :: x
    code = 2.0d0 * asin(sqrt((x / 2.0d0)))
end function
public static double code(double x) {
	return 2.0 * Math.asin(Math.sqrt((x / 2.0)));
}
def code(x):
	return 2.0 * math.asin(math.sqrt((x / 2.0)))
function code(x)
	return Float64(2.0 * asin(sqrt(Float64(x / 2.0))))
end
function tmp = code(x)
	tmp = 2.0 * asin(sqrt((x / 2.0)));
end
code[x_] := N[(2.0 * N[ArcSin[N[Sqrt[N[(x / 2.0), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
2 \cdot \sin^{-1} \left(\sqrt{\frac{x}{2}}\right)
\end{array}

Reproduce

?
herbie shell --seed 2023285 
(FPCore (x)
  :name "bug323 (missed optimization)"
  :precision binary64
  :pre (and (<= 0.0 x) (<= x 0.5))

  :herbie-target
  (* 2.0 (asin (sqrt (/ x 2.0))))

  (acos (- 1.0 x)))