| Alternative 1 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 10148 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x + \sqrt{x \cdot x + -1} \leq 7999999895928832:\\
\;\;\;\;\log \left(x + \sqrt{\left(x + -1\right) \cdot \left(x + 1\right)}\right)\\
\mathbf{else}:\\
\;\;\;\;\left|\log \left(\frac{0.5}{x}\right)\right|\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 10084 |
|---|
\[\begin{array}{l}
t_0 := x + \sqrt{x \cdot x + -1}\\
\mathbf{if}\;t_0 \leq 7999999895928832:\\
\;\;\;\;\log t_0\\
\mathbf{else}:\\
\;\;\;\;\left|\log \left(\frac{0.5}{x}\right)\right|\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.2% |
|---|
| Cost | 3424 |
|---|
\[\log \left(x + \left(x + \frac{-0.5}{x}\right)\right)
\]
| Alternative 4 |
|---|
| Accuracy | 96.8% |
|---|
| Cost | 3296 |
|---|
\[\log \left(x + x\right)
\]
| Alternative 5 |
|---|
| Accuracy | 18.7% |
|---|
| Cost | 3232 |
|---|
\[\mathsf{log1p}\left(0.125\right)
\]
| Alternative 6 |
|---|
| Accuracy | 19.9% |
|---|
| Cost | 3232 |
|---|
\[\mathsf{log1p}\left(0.5\right)
\]
| Alternative 7 |
|---|
| Accuracy | 21.2% |
|---|
| Cost | 3232 |
|---|
\[\mathsf{log1p}\left(2\right)
\]
| Alternative 8 |
|---|
| Accuracy | 44.3% |
|---|
| Cost | 3232 |
|---|
\[\mathsf{log1p}\left(x\right)
\]