| Alternative 1 | |
|---|---|
| Accuracy | 99.1% |
| Cost | 712 |
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.86:\\
\;\;\;\;\frac{1}{x}\\
\mathbf{elif}\;x \leq 0.86:\\
\;\;\;\;x \cdot \left(1 - x \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{x}\\
\end{array}
\]

(FPCore (x) :precision binary64 (/ x (+ (* x x) 1.0)))
(FPCore (x) :precision binary64 (/ 1.0 (+ x (/ 1.0 x))))
double code(double x) {
return x / ((x * x) + 1.0);
}
double code(double x) {
return 1.0 / (x + (1.0 / x));
}
real(8) function code(x)
real(8), intent (in) :: x
code = x / ((x * x) + 1.0d0)
end function
real(8) function code(x)
real(8), intent (in) :: x
code = 1.0d0 / (x + (1.0d0 / x))
end function
public static double code(double x) {
return x / ((x * x) + 1.0);
}
public static double code(double x) {
return 1.0 / (x + (1.0 / x));
}
def code(x): return x / ((x * x) + 1.0)
def code(x): return 1.0 / (x + (1.0 / x))
function code(x) return Float64(x / Float64(Float64(x * x) + 1.0)) end
function code(x) return Float64(1.0 / Float64(x + Float64(1.0 / x))) end
function tmp = code(x) tmp = x / ((x * x) + 1.0); end
function tmp = code(x) tmp = 1.0 / (x + (1.0 / x)); end
code[x_] := N[(x / N[(N[(x * x), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision]
code[x_] := N[(1.0 / N[(x + N[(1.0 / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\frac{x}{x \cdot x + 1}
\frac{1}{x + \frac{1}{x}}
Herbie found 4 alternatives:
| Alternative | Accuracy | Speedup |
|---|
Results
| Original | 76.9% |
|---|---|
| Target | 99.8% |
| Herbie | 99.8% |
Initial program 76.7%
Applied egg-rr76.7%
[Start]76.7 | \[ \frac{x}{x \cdot x + 1}
\] |
|---|---|
clear-num [=>]76.7 | \[ \color{blue}{\frac{1}{\frac{x \cdot x + 1}{x}}}
\] |
inv-pow [=>]76.7 | \[ \color{blue}{{\left(\frac{x \cdot x + 1}{x}\right)}^{-1}}
\] |
fma-def [=>]76.7 | \[ {\left(\frac{\color{blue}{\mathsf{fma}\left(x, x, 1\right)}}{x}\right)}^{-1}
\] |
Taylor expanded in x around 0 99.9%
Applied egg-rr99.9%
[Start]99.9 | \[ {\left(\frac{1}{x} + x\right)}^{-1}
\] |
|---|---|
unpow-1 [=>]99.9 | \[ \color{blue}{\frac{1}{\frac{1}{x} + x}}
\] |
+-commutative [=>]99.9 | \[ \frac{1}{\color{blue}{x + \frac{1}{x}}}
\] |
Final simplification99.9%
| Alternative 1 | |
|---|---|
| Accuracy | 99.1% |
| Cost | 712 |
| Alternative 2 | |
|---|---|
| Accuracy | 98.9% |
| Cost | 456 |
| Alternative 3 | |
|---|---|
| Accuracy | 51.3% |
| Cost | 64 |
herbie shell --seed 2023160
(FPCore (x)
:name "x / (x^2 + 1)"
:precision binary64
:herbie-target
(/ 1.0 (+ x (/ 1.0 x)))
(/ x (+ (* x x) 1.0)))