| Alternative 1 |
|---|
| Accuracy | 88.6% |
|---|
| Cost | 39432 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{x} + \sqrt[3]{1 + x}\\
\mathbf{if}\;x \leq -1.32 \cdot 10^{+154}:\\
\;\;\;\;\frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, t_0, 1\right)}\\
\mathbf{elif}\;x \leq 1.35 \cdot 10^{+154}:\\
\;\;\;\;\frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, t_0, \sqrt[3]{{\left(1 + x\right)}^{2}}\right)}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, t_0, e^{0.6666666666666666 \cdot \mathsf{log1p}\left(x\right)}\right)}\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 60.8% |
|---|
| Cost | 39364 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x}\\
\mathbf{if}\;t_0 - \sqrt[3]{x} \leq 0:\\
\;\;\;\;\frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, \sqrt[3]{x} + t_0, 1\right)}\\
\mathbf{else}:\\
\;\;\;\;t_0 + \left(1 + \left(-1 - \sqrt[3]{x}\right)\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 78.2% |
|---|
| Cost | 39236 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{x} + \sqrt[3]{1 + x}\\
\mathbf{if}\;x \leq -1:\\
\;\;\;\;\frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, t_0, 1\right)}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, t_0, e^{0.6666666666666666 \cdot \mathsf{log1p}\left(x\right)}\right)}\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 78.2% |
|---|
| Cost | 32964 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{x} + \sqrt[3]{1 + x}\\
\mathbf{if}\;x \leq -1:\\
\;\;\;\;\frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, t_0, 1\right)}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{e^{0.6666666666666666 \cdot \mathsf{log1p}\left(x\right)} + \sqrt[3]{x} \cdot t_0}\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 78.1% |
|---|
| Cost | 32900 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{x} + \sqrt[3]{1 + x}\\
\mathbf{if}\;x \leq -1:\\
\;\;\;\;\frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, t_0, 1\right)}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, t_0, {\left(1 + x\right)}^{0.6666666666666666}\right)}\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 59.7% |
|---|
| Cost | 26564 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x}\\
\mathbf{if}\;t_0 - \sqrt[3]{x} \leq 0:\\
\;\;\;\;{\left(\sqrt[3]{x}\right)}^{-2}\\
\mathbf{else}:\\
\;\;\;\;t_0 + \left(1 + \left(-1 - \sqrt[3]{x}\right)\right)\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 59.7% |
|---|
| Cost | 26308 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x} - \sqrt[3]{x}\\
\mathbf{if}\;t_0 \leq 0:\\
\;\;\;\;{\left(\sqrt[3]{x}\right)}^{-2}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 8 |
|---|
| Accuracy | 57.3% |
|---|
| Cost | 13060 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.235:\\
\;\;\;\;{\left(\sqrt[3]{x}\right)}^{-2}\\
\mathbf{elif}\;x \leq 4.2:\\
\;\;\;\;\frac{1}{1 + \sqrt[3]{x}}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{{x}^{0.6666666666666666}}\\
\end{array}
\]
| Alternative 9 |
|---|
| Accuracy | 55.6% |
|---|
| Cost | 6984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.235:\\
\;\;\;\;{\left(x \cdot x\right)}^{-0.3333333333333333}\\
\mathbf{elif}\;x \leq 4.2:\\
\;\;\;\;\frac{1}{1 + \sqrt[3]{x}}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{{x}^{0.6666666666666666}}\\
\end{array}
\]
| Alternative 10 |
|---|
| Accuracy | 52.9% |
|---|
| Cost | 6788 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq 1:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{{x}^{0.6666666666666666}}\\
\end{array}
\]