| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 13248 |
|---|
\[x \cdot \cos y - \sin y \cdot z
\]
| Alternative 2 |
|---|
| Error | 10.0 |
|---|
| Cost | 7248 |
|---|
\[\begin{array}{l}
t_0 := x - \sin y \cdot z\\
t_1 := x \cdot \cos y\\
\mathbf{if}\;z \leq -7 \cdot 10^{-164}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 8.1 \cdot 10^{-140}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 4 \cdot 10^{-55}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1.2 \cdot 10^{+27}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 16.3 |
|---|
| Cost | 7184 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-\sin y\right)\\
\mathbf{if}\;y \leq -7.5 \cdot 10^{+202}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -9.4 \cdot 10^{+154}:\\
\;\;\;\;x \cdot \cos y\\
\mathbf{elif}\;y \leq -0.0033:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.7 \cdot 10^{-19}:\\
\;\;\;\;x + y \cdot \left(y \cdot \left(x \cdot -0.5\right) - z\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 15.8 |
|---|
| Cost | 6856 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \cos y\\
\mathbf{if}\;y \leq -1.45:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 0.0085:\\
\;\;\;\;x + y \cdot \left(y \cdot \left(x \cdot -0.5\right) - z\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 37.5 |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.6 \cdot 10^{-272}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 1.45 \cdot 10^{-122}:\\
\;\;\;\;z \cdot \left(-y\right)\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]