| Alternative 1 |
|---|
| Error | 12.2 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := \left(y \cdot y\right) \cdot 3\\
\mathbf{if}\;x \leq -5.047766529709451 \cdot 10^{-23}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq -8.947712136562253 \cdot 10^{-39}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -7.766440654394941 \cdot 10^{-90}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 1.24787262127744 \cdot 10^{-50}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.2 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.047766529709451 \cdot 10^{-23}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq -8.947712136562253 \cdot 10^{-39}:\\
\;\;\;\;\left(y \cdot y\right) \cdot 3\\
\mathbf{elif}\;x \leq -7.766440654394941 \cdot 10^{-90}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 1.24787262127744 \cdot 10^{-50}:\\
\;\;\;\;y \cdot \left(y \cdot 3\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.1 |
|---|
| Cost | 576 |
|---|
\[y \cdot \left(y \cdot 3\right) + x \cdot x
\]