| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 13248 |
|---|
\[x \cdot \sin y + z \cdot \cos y
\]
| Alternative 2 |
|---|
| Error | 15.9 |
|---|
| Cost | 7120 |
|---|
\[\begin{array}{l}
t_0 := \cos y \cdot z\\
\mathbf{if}\;y \leq -1.8 \cdot 10^{+90}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -5.2 \cdot 10^{+17}:\\
\;\;\;\;\sin y \cdot x\\
\mathbf{elif}\;y \leq -6.8 \cdot 10^{-8}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.4 \cdot 10^{-7}:\\
\;\;\;\;y \cdot x + z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 16.2 |
|---|
| Cost | 6856 |
|---|
\[\begin{array}{l}
t_0 := \cos y \cdot z\\
\mathbf{if}\;y \leq -6.8 \cdot 10^{-8}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.4 \cdot 10^{-7}:\\
\;\;\;\;y \cdot x + z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 37.5 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -6.6 \cdot 10^{-233}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 4 \cdot 10^{-126}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]