| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 19520 |
|---|
\[\mathsf{fma}\left(x, \cos y, \sin y \cdot z\right)
\]
| Alternative 2 |
|---|
| Error | 0.1 |
|---|
| Cost | 13248 |
|---|
\[x \cdot \cos y + \sin y \cdot z
\]
| Alternative 3 |
|---|
| Error | 15.9 |
|---|
| Cost | 7120 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \cos y\\
t_1 := \sin y \cdot z\\
\mathbf{if}\;y \leq -6 \cdot 10^{+249}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -0.0012:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 0.00027:\\
\;\;\;\;y \cdot z + \left(x + -0.5 \cdot \left(x \cdot \left(y \cdot y\right)\right)\right)\\
\mathbf{elif}\;y \leq 7.2 \cdot 10^{+249}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 8.6 |
|---|
| Cost | 6985 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -9.2 \cdot 10^{-101} \lor \neg \left(z \leq 2.2 \cdot 10^{-83}\right):\\
\;\;\;\;x + \sin y \cdot z\\
\mathbf{else}:\\
\;\;\;\;x \cdot \cos y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 15.6 |
|---|
| Cost | 6857 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -0.00015 \lor \neg \left(y \leq 0.000195\right):\\
\;\;\;\;\sin y \cdot z\\
\mathbf{else}:\\
\;\;\;\;y \cdot z + \left(x + -0.5 \cdot \left(x \cdot \left(y \cdot y\right)\right)\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 37.5 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -9 \cdot 10^{+83}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 1.1 \cdot 10^{+155}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]