Average Error: 19.8 → 19.8
Time: 6.3s
Precision: binary64
\[[x, y, z] = \mathsf{sort}([x, y, z]) \\]
\[2 \cdot \sqrt{\left(x \cdot y + x \cdot z\right) + y \cdot z} \]
\[2 \cdot \sqrt{\mathsf{fma}\left(y, x, \left(y + x\right) \cdot z\right)} \]
2 \cdot \sqrt{\left(x \cdot y + x \cdot z\right) + y \cdot z}
2 \cdot \sqrt{\mathsf{fma}\left(y, x, \left(y + x\right) \cdot z\right)}
(FPCore (x y z)
 :precision binary64
 (* 2.0 (sqrt (+ (+ (* x y) (* x z)) (* y z)))))
(FPCore (x y z) :precision binary64 (* 2.0 (sqrt (fma y x (* (+ y x) z)))))
double code(double x, double y, double z) {
	return 2.0 * sqrt(((x * y) + (x * z)) + (y * z));
}
double code(double x, double y, double z) {
	return 2.0 * sqrt(fma(y, x, ((y + x) * z)));
}

Error

Bits error versus x

Bits error versus y

Bits error versus z

Target

Original19.8
Target11.5
Herbie19.8
\[\begin{array}{l} \mathbf{if}\;z < 7.636950090573675 \cdot 10^{+176}:\\ \;\;\;\;2 \cdot \sqrt{\left(x + y\right) \cdot z + x \cdot y}\\ \mathbf{else}:\\ \;\;\;\;\left(\left(0.25 \cdot \left(\left({y}^{-0.75} \cdot \left({z}^{-0.75} \cdot x\right)\right) \cdot \left(y + z\right)\right) + {z}^{0.25} \cdot {y}^{0.25}\right) \cdot \left(0.25 \cdot \left(\left({y}^{-0.75} \cdot \left({z}^{-0.75} \cdot x\right)\right) \cdot \left(y + z\right)\right) + {z}^{0.25} \cdot {y}^{0.25}\right)\right) \cdot 2\\ \end{array} \]

Derivation

  1. Initial program 19.8

    \[2 \cdot \sqrt{\left(x \cdot y + x \cdot z\right) + y \cdot z} \]
  2. Simplified19.8

    \[\leadsto \color{blue}{2 \cdot \sqrt{\mathsf{fma}\left(x, y + z, y \cdot z\right)}} \]
  3. Taylor expanded in x around 0 19.8

    \[\leadsto 2 \cdot \sqrt{\color{blue}{y \cdot x + \left(y \cdot z + z \cdot x\right)}} \]
  4. Simplified19.8

    \[\leadsto 2 \cdot \sqrt{\color{blue}{\mathsf{fma}\left(y, x, z \cdot \left(y + x\right)\right)}} \]
  5. Applied *-commutative_binary6419.8

    \[\leadsto 2 \cdot \sqrt{\mathsf{fma}\left(y, x, \color{blue}{\left(y + x\right) \cdot z}\right)} \]
  6. Final simplification19.8

    \[\leadsto 2 \cdot \sqrt{\mathsf{fma}\left(y, x, \left(y + x\right) \cdot z\right)} \]

Reproduce

herbie shell --seed 2022081 
(FPCore (x y z)
  :name "Diagrams.TwoD.Apollonian:descartes from diagrams-contrib-1.3.0.5"
  :precision binary64

  :herbie-target
  (if (< z 7.636950090573675e+176) (* 2.0 (sqrt (+ (* (+ x y) z) (* x y)))) (* (* (+ (* 0.25 (* (* (pow y -0.75) (* (pow z -0.75) x)) (+ y z))) (* (pow z 0.25) (pow y 0.25))) (+ (* 0.25 (* (* (pow y -0.75) (* (pow z -0.75) x)) (+ y z))) (* (pow z 0.25) (pow y 0.25)))) 2.0))

  (* 2.0 (sqrt (+ (+ (* x y) (* x z)) (* y z)))))