| Alternative 1 |
|---|
| Error | 39.75% |
|---|
| Cost | 39236 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x} - \sqrt[3]{x}\\
\mathbf{if}\;t_0 \leq 0:\\
\;\;\;\;\frac{1}{1 + {\left(\sqrt[3]{x}\right)}^{2}}\\
\mathbf{else}:\\
\;\;\;\;{\left({t_0}^{3}\right)}^{0.3333333333333333}\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 10.87% |
|---|
| Cost | 33096 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x}\\
t_1 := \sqrt[3]{x} + t_0\\
\mathbf{if}\;x \leq -1.35 \cdot 10^{+154}:\\
\;\;\;\;\frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, t_1, 1\right)}\\
\mathbf{elif}\;x \leq 1.35 \cdot 10^{+154}:\\
\;\;\;\;\frac{1}{t_0 \cdot t_1 + \sqrt[3]{x \cdot x}}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sqrt[3]{x} \cdot t_1 + e^{\mathsf{log1p}\left(x\right) \cdot 0.6666666666666666}}\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 10.91% |
|---|
| Cost | 33032 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x}\\
t_1 := \sqrt[3]{x} + t_0\\
\mathbf{if}\;x \leq -1.35 \cdot 10^{+154}:\\
\;\;\;\;\frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, t_1, 1\right)}\\
\mathbf{elif}\;x \leq 1.35 \cdot 10^{+154}:\\
\;\;\;\;\frac{1}{t_0 \cdot t_1 + \sqrt[3]{x \cdot x}}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, t_1, {\left(1 + x\right)}^{0.6666666666666666}\right)}\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.83% |
|---|
| Cost | 32896 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x}\\
\frac{1}{{\left(\sqrt[3]{x}\right)}^{2} + t_0 \cdot \left(\sqrt[3]{x} + t_0\right)}
\end{array}
\]
| Alternative 5 |
|---|
| Error | 21.55% |
|---|
| Cost | 26692 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x}\\
t_1 := \sqrt[3]{x} + t_0\\
\mathbf{if}\;x \leq -1.35 \cdot 10^{+154}:\\
\;\;\;\;\frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, t_1, 1\right)}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{t_0 \cdot t_1 + \sqrt[3]{x \cdot x}}\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 38.7% |
|---|
| Cost | 26440 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x}\\
t_1 := \frac{1}{\mathsf{fma}\left(\sqrt[3]{x}, \sqrt[3]{x} + t_0, 1\right)}\\
\mathbf{if}\;x \leq -9.2 \cdot 10^{+14}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 2 \cdot 10^{+15}:\\
\;\;\;\;{\left({\left(t_0 - \sqrt[3]{x}\right)}^{3}\right)}^{0.3333333333333333}\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 39.75% |
|---|
| Cost | 26372 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{1 + x} - \sqrt[3]{x}\\
\mathbf{if}\;t_0 \leq 0:\\
\;\;\;\;\frac{1}{1 + {\left(\sqrt[3]{x}\right)}^{2}}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 46.1% |
|---|
| Cost | 13120 |
|---|
\[\sqrt[3]{1 + x} - \sqrt[3]{x}
\]