| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 13248 |
|---|
\[z \cdot \sin y + x \cdot \cos y
\]
| Alternative 2 |
|---|
| Error | 16.4 |
|---|
| Cost | 7516 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \sin y\\
t_1 := x \cdot \cos y\\
\mathbf{if}\;y \leq -1.15 \cdot 10^{+201}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -1.7 \cdot 10^{+178}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq -7.8 \cdot 10^{+118}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -8.8:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 1.62 \cdot 10^{-6}:\\
\;\;\;\;x + y \cdot z\\
\mathbf{elif}\;y \leq 4.6 \cdot 10^{+263}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 2.9 \cdot 10^{+294}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 16.5 |
|---|
| Cost | 6856 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \sin y\\
\mathbf{if}\;y \leq -1.25 \cdot 10^{-5}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.55 \cdot 10^{-6}:\\
\;\;\;\;x + y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 37.6 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.05 \cdot 10^{+223}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 8 \cdot 10^{+107}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]