| Alternative 1 |
|---|
| Error | 13.0 |
|---|
| Cost | 32968 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x}\\
t_1 := \sqrt[3]{x} \cdot \left(t_0 + \sqrt[3]{x}\right)\\
\mathbf{if}\;x \leq -1.2929836526227745 \cdot 10^{+158}:\\
\;\;\;\;e^{-\mathsf{log1p}\left(t_1\right)}\\
\mathbf{elif}\;x \leq 1.7875739492581274 \cdot 10^{+152}:\\
\;\;\;\;\frac{1}{{t_0}^{2} + \left(\sqrt[3]{x \cdot x} + \sqrt[3]{x \cdot \left(1 + x\right)}\right)}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{1 + e^{\log t_1}}\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 13.0 |
|---|
| Cost | 32968 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x}\\
t_1 := t_0 + \sqrt[3]{x}\\
\mathbf{if}\;x \leq -1.2929836526227745 \cdot 10^{+158}:\\
\;\;\;\;e^{-\mathsf{log1p}\left(\sqrt[3]{x} \cdot t_1\right)}\\
\mathbf{elif}\;x \leq 1.7875739492581274 \cdot 10^{+152}:\\
\;\;\;\;\frac{1}{{t_0}^{2} + \left(\sqrt[3]{x \cdot x} + \sqrt[3]{x \cdot \left(1 + x\right)}\right)}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{1 + t_1 \cdot e^{\log \left(\sqrt[3]{x}\right)}}\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 13.0 |
|---|
| Cost | 32644 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x}\\
t_1 := \sqrt[3]{x} \cdot \left(t_0 + \sqrt[3]{x}\right)\\
\mathbf{if}\;x \leq -1.2929836526227745 \cdot 10^{+158}:\\
\;\;\;\;e^{-\mathsf{log1p}\left(t_1\right)}\\
\mathbf{elif}\;x \leq 1.7875739492581274 \cdot 10^{+152}:\\
\;\;\;\;\frac{1}{{t_0}^{2} + \left(\sqrt[3]{x \cdot x} + \sqrt[3]{x \cdot \left(1 + x\right)}\right)}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{1 + t_1}\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 13.0 |
|---|
| Cost | 26888 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x}\\
t_1 := \frac{1}{1 + \sqrt[3]{x} \cdot \left(t_0 + \sqrt[3]{x}\right)}\\
\mathbf{if}\;x \leq -1.2929836526227745 \cdot 10^{+158}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 1.7875739492581274 \cdot 10^{+152}:\\
\;\;\;\;\frac{1}{{t_0}^{2} + \left(\sqrt[3]{x \cdot x} + \sqrt[3]{x \cdot \left(1 + x\right)}\right)}\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 26.5 |
|---|
| Cost | 19904 |
|---|
\[\frac{1}{1 + \sqrt[3]{x} \cdot \left(\sqrt[3]{1 + x} + \sqrt[3]{x}\right)}
\]
| Alternative 6 |
|---|
| Error | 30.2 |
|---|
| Cost | 13120 |
|---|
\[\sqrt[3]{1 + x} - \sqrt[3]{x}
\]