| Alternative 1 |
|---|
| Error | 20.2 |
|---|
| Cost | 708 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 7 \cdot 10^{-142}:\\
\;\;\;\;x \cdot \left(x + y \cdot 2\right)\\
\mathbf{else}:\\
\;\;\;\;2 \cdot \left(x \cdot y\right) + y \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 20.2 |
|---|
| Cost | 708 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 7 \cdot 10^{-142}:\\
\;\;\;\;x \cdot x + y \cdot \left(x \cdot 2\right)\\
\mathbf{else}:\\
\;\;\;\;2 \cdot \left(x \cdot y\right) + y \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.0 |
|---|
| Cost | 704 |
|---|
\[y \cdot \left(y + x \cdot 2\right) + x \cdot x
\]
| Alternative 4 |
|---|
| Error | 20.3 |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 6 \cdot 10^{-142}:\\
\;\;\;\;x \cdot \left(x + y \cdot 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 20.2 |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 7 \cdot 10^{-142}:\\
\;\;\;\;x \cdot \left(x + y \cdot 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(y + x \cdot 2\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 20.7 |
|---|
| Cost | 324 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 3.4 \cdot 10^{-155}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]