| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 960 |
|---|
\[y \cdot y + \left(y \cdot y + \left(y \cdot y + x \cdot x\right)\right)
\]
| Alternative 2 |
|---|
| Error | 11.1 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.1240606705134606 \cdot 10^{-54}:\\
\;\;\;\;\left(y \cdot y\right) \cdot 3\\
\mathbf{elif}\;y \leq 7.53017869907588 \cdot 10^{-80}:\\
\;\;\;\;y \cdot y + x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(y \cdot 3\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 11.7 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(y \cdot 3\right)\\
\mathbf{if}\;y \leq -3.1240606705134606 \cdot 10^{-54}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 7.53017869907588 \cdot 10^{-80}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 11.7 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.1240606705134606 \cdot 10^{-54}:\\
\;\;\;\;\left(y \cdot y\right) \cdot 3\\
\mathbf{elif}\;y \leq 7.53017869907588 \cdot 10^{-80}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(y \cdot 3\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.1 |
|---|
| Cost | 576 |
|---|
\[x \cdot x + y \cdot \left(y \cdot 3\right)
\]
| Alternative 6 |
|---|
| Error | 25.8 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.3250535916550324 \cdot 10^{-159}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 3.619659149395207 \cdot 10^{-152}:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]