| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 6848 |
|---|
\[\mathsf{fma}\left(3, y \cdot y, x \cdot x\right)
\]
| Alternative 2 |
|---|
| Error | 14.8 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(y \cdot 3\right)\\
\mathbf{if}\;x \leq -5.969033232305403 \cdot 10^{+50}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq -1.004179558203747 \cdot 10^{-52}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -1.984687235023785 \cdot 10^{-130}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 9.526597027225746 \cdot 10^{-60}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 14.8 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.969033232305403 \cdot 10^{+50}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq -1.004179558203747 \cdot 10^{-52}:\\
\;\;\;\;\left(y \cdot y\right) \cdot 3\\
\mathbf{elif}\;x \leq -1.984687235023785 \cdot 10^{-130}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 9.526597027225746 \cdot 10^{-60}:\\
\;\;\;\;y \cdot \left(y \cdot 3\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.1 |
|---|
| Cost | 576 |
|---|
\[x \cdot x + \left(y \cdot y\right) \cdot 3
\]