| Alternative 1 |
|---|
| Accuracy | 99.6% |
|---|
| Cost | 7432 |
|---|
\[\begin{array}{l}
t_0 := \frac{1 - \cos x}{x}\\
\mathbf{if}\;x \leq -0.027:\\
\;\;\;\;t_0 \cdot \frac{1}{x}\\
\mathbf{elif}\;x \leq 0.024:\\
\;\;\;\;0.5 + \left(x \cdot \left(x \cdot -0.041666666666666664\right) + 0.001388888888888889 \cdot {x}^{4}\right)\\
\mathbf{else}:\\
\;\;\;\;\frac{t_0}{x}\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 99.2% |
|---|
| Cost | 7113 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0052 \lor \neg \left(x \leq 0.00355\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.0052 \lor \neg \left(x \leq 0.00355\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 := \frac{1 - \cos x}{x}\\
\mathbf{if}\;x \leq -0.0052:\\
\;\;\;\;t_0 \cdot \frac{1}{x}\\
\mathbf{elif}\;x \leq 0.00355:\\
\;\;\;\;0.5 + -0.041666666666666664 \cdot \left(x \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;\frac{t_0}{x}\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 75.7% |
|---|
| Cost | 841 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.45 \lor \neg \left(x \leq 3.5\right):\\
\;\;\;\;\frac{\frac{1}{x} + \frac{-1}{x}}{x}\\
\mathbf{else}:\\
\;\;\;\;0.5 + -0.041666666666666664 \cdot \left(x \cdot x\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 78.2% |
|---|
| Cost | 832 |
|---|
\[\frac{1}{x \cdot \left(x \cdot 0.16666666666666666 + \frac{1}{x} \cdot 2\right)}
\]