| Alternative 1 |
|---|
| Accuracy | 99.6% |
|---|
| Cost | 13448 |
|---|
\[\begin{array}{l}
t_0 := 1 - \cos x\\
\mathbf{if}\;x \leq -0.0051:\\
\;\;\;\;\frac{\frac{1}{x} \cdot t_0}{x}\\
\mathbf{elif}\;x \leq 0.0055:\\
\;\;\;\;0.5 + -0.041666666666666664 \cdot \left(x \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;t_0 \cdot {x}^{-2}\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 99.0% |
|---|
| Cost | 7113 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0051 \lor \neg \left(x \leq 0.0055\right):\\
\;\;\;\;\frac{1 - \cos x}{x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;0.5 + -0.041666666666666664 \cdot \left(x \cdot x\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 99.6% |
|---|
| Cost | 7113 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0051 \lor \neg \left(x \leq 0.0055\right):\\
\;\;\;\;\frac{\frac{1 - \cos x}{x}}{x}\\
\mathbf{else}:\\
\;\;\;\;0.5 + -0.041666666666666664 \cdot \left(x \cdot x\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 99.6% |
|---|
| Cost | 7112 |
|---|
\[\begin{array}{l}
t_0 := 1 - \cos x\\
\mathbf{if}\;x \leq -0.0051:\\
\;\;\;\;\frac{\frac{1}{x} \cdot t_0}{x}\\
\mathbf{elif}\;x \leq 0.0055:\\
\;\;\;\;0.5 + -0.041666666666666664 \cdot \left(x \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;\frac{\frac{t_0}{x}}{x}\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 75.9% |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.5:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 3.4:\\
\;\;\;\;0.5 + -0.041666666666666664 \cdot \left(x \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 76.0% |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.2 \cdot 10^{+77}:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 1.25 \cdot 10^{+77}:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]