| Alternative 1 |
|---|
| Error | 12.5 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y \cdot y\right) \cdot 3\\
\mathbf{if}\;y \leq -6.910071519981825 \cdot 10^{-42}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 6.169623707202513 \cdot 10^{-111}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.5 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(y \cdot 3\right)\\
\mathbf{if}\;y \leq -6.910071519981825 \cdot 10^{-42}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 6.169623707202513 \cdot 10^{-111}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.1 |
|---|
| Cost | 576 |
|---|
\[y \cdot \left(y \cdot 3\right) + x \cdot x
\]