| Alternative 1 |
|---|
| Accuracy | 88.9% |
|---|
| Cost | 39432 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{x} + \sqrt[3]{1 + x}\\
\mathbf{if}\;x \leq -1.34 \cdot 10^{+154}:\\
\;\;\;\;\frac{1}{1 + \sqrt[3]{x} \cdot t_0}\\
\mathbf{elif}\;x \leq 1.4 \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 | 88.8% |
|---|
| Cost | 39368 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{x} + \sqrt[3]{1 + x}\\
t_1 := \sqrt[3]{x} \cdot t_0\\
\mathbf{if}\;x \leq -1.34 \cdot 10^{+154}:\\
\;\;\;\;\frac{1}{1 + t_1}\\
\mathbf{elif}\;x \leq 1.4 \cdot 10^{+154}:\\
\;\;\;\;\frac{1}{t_1 + \sqrt[3]{{\left(1 + x\right)}^{2}}}\\
\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 3 |
|---|
| Accuracy | 99.1% |
|---|
| Cost | 39168 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x}\\
\frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, \sqrt[3]{x} + t_0, {t_0}^{2}\right)}
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 88.8% |
|---|
| Cost | 33160 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{x} + \sqrt[3]{1 + x}\\
t_1 := \sqrt[3]{x} \cdot t_0\\
\mathbf{if}\;x \leq -1.34 \cdot 10^{+154}:\\
\;\;\;\;\frac{1}{1 + t_1}\\
\mathbf{elif}\;x \leq 1.4 \cdot 10^{+154}:\\
\;\;\;\;\frac{1}{t_1 + \sqrt[3]{{\left(1 + x\right)}^{2}}}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, t_0, {\left(1 + x\right)}^{0.6666666666666666}\right)}\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 78.3% |
|---|
| Cost | 32900 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{x} + \sqrt[3]{1 + x}\\
\mathbf{if}\;x \leq -1:\\
\;\;\;\;\frac{1}{1 + \sqrt[3]{x} \cdot t_0}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, t_0, {\left(1 + x\right)}^{0.6666666666666666}\right)}\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 60.5% |
|---|
| Cost | 32776 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x}\\
t_1 := \sqrt[3]{x} \cdot \left(\sqrt[3]{x} + t_0\right)\\
\mathbf{if}\;x \leq -5.2 \cdot 10^{+14}:\\
\;\;\;\;\frac{1}{1 + t_1}\\
\mathbf{elif}\;x \leq 2.75 \cdot 10^{+14}:\\
\;\;\;\;t_0 - {\left(\sqrt[3]{\sqrt[3]{x}}\right)}^{3}\\
\mathbf{else}:\\
\;\;\;\;e^{-\mathsf{log1p}\left(t_1\right)}\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 60.5% |
|---|
| Cost | 26249 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x}\\
\mathbf{if}\;x \leq -5.2 \cdot 10^{+14} \lor \neg \left(x \leq 2.75 \cdot 10^{+14}\right):\\
\;\;\;\;\frac{1}{1 + \sqrt[3]{x} \cdot \left(\sqrt[3]{x} + t_0\right)}\\
\mathbf{else}:\\
\;\;\;\;t_0 - {\left(\sqrt[3]{\sqrt[3]{x}}\right)}^{3}\\
\end{array}
\]
| Alternative 8 |
|---|
| Accuracy | 60.6% |
|---|
| Cost | 20169 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x}\\
\mathbf{if}\;x \leq -2.1 \cdot 10^{+15} \lor \neg \left(x \leq 3.7 \cdot 10^{+14}\right):\\
\;\;\;\;\frac{1}{1 + \sqrt[3]{x} \cdot \left(\sqrt[3]{x} + t_0\right)}\\
\mathbf{else}:\\
\;\;\;\;t_0 - \sqrt[3]{x}\\
\end{array}
\]
| Alternative 9 |
|---|
| Accuracy | 53.0% |
|---|
| Cost | 13120 |
|---|
\[\sqrt[3]{1 + x} - \sqrt[3]{x}
\]
| Alternative 10 |
|---|
| Accuracy | 50.6% |
|---|
| Cost | 6848 |
|---|
\[1 + \left(x \cdot 0.3333333333333333 - \sqrt[3]{x}\right)
\]