\sqrt{0.5 \cdot \left(1 + \frac{x}{\sqrt{\left(4 \cdot p\right) \cdot p + x \cdot x}}\right)}\sqrt{0.5 \cdot \frac{1 + {\left(\frac{x}{\sqrt{p \cdot \left(p \cdot 4\right) + x \cdot x}}\right)}^{3}}{1 + \left(\frac{x \cdot x}{p \cdot \left(p \cdot 4\right) + x \cdot x} - \frac{x}{\sqrt{p \cdot \left(p \cdot 4\right) + x \cdot x}}\right)}}(FPCore (p x) :precision binary64 (sqrt (* 0.5 (+ 1.0 (/ x (sqrt (+ (* (* 4.0 p) p) (* x x))))))))
(FPCore (p x)
:precision binary64
(sqrt
(*
0.5
(/
(+ 1.0 (pow (/ x (sqrt (+ (* p (* p 4.0)) (* x x)))) 3.0))
(+
1.0
(-
(/ (* x x) (+ (* p (* p 4.0)) (* x x)))
(/ x (sqrt (+ (* p (* p 4.0)) (* x x))))))))))double code(double p, double x) {
return sqrt(0.5 * (1.0 + (x / sqrt(((4.0 * p) * p) + (x * x)))));
}
double code(double p, double x) {
return sqrt(0.5 * ((1.0 + pow((x / sqrt((p * (p * 4.0)) + (x * x))), 3.0)) / (1.0 + (((x * x) / ((p * (p * 4.0)) + (x * x))) - (x / sqrt((p * (p * 4.0)) + (x * x)))))));
}




Bits error versus p




Bits error versus x
Results
| Original | 13.0 |
|---|---|
| Target | 13.0 |
| Herbie | 13.0 |
Initial program 13.0
rmApplied flip3-+_binary64_246813.0
Simplified13.0
Simplified13.0
Final simplification13.0
herbie shell --seed 2020295
(FPCore (p x)
:name "Given's Rotation SVD example"
:precision binary64
:pre (< 1e-150 (fabs x) 1e+150)
:herbie-target
(sqrt (+ 0.5 (/ (copysign 0.5 x) (hypot 1.0 (/ (* 2.0 p) x)))))
(sqrt (* 0.5 (+ 1.0 (/ x (sqrt (+ (* (* 4.0 p) p) (* x x))))))))