?

Average Error: 45.41% → 0.23%
Time: 8.9s
Precision: binary64
Cost: 7168

?

\[\frac{\left(x \cdot x + y \cdot y\right) - z \cdot z}{y \cdot 2} \]
\[\mathsf{fma}\left(\frac{x + z}{y}, z - x, -y\right) \cdot -0.5 \]
(FPCore (x y z)
 :precision binary64
 (/ (- (+ (* x x) (* y y)) (* z z)) (* y 2.0)))
(FPCore (x y z) :precision binary64 (* (fma (/ (+ x z) y) (- z x) (- y)) -0.5))
double code(double x, double y, double z) {
	return (((x * x) + (y * y)) - (z * z)) / (y * 2.0);
}
double code(double x, double y, double z) {
	return fma(((x + z) / y), (z - x), -y) * -0.5;
}
function code(x, y, z)
	return Float64(Float64(Float64(Float64(x * x) + Float64(y * y)) - Float64(z * z)) / Float64(y * 2.0))
end
function code(x, y, z)
	return Float64(fma(Float64(Float64(x + z) / y), Float64(z - x), Float64(-y)) * -0.5)
end
code[x_, y_, z_] := N[(N[(N[(N[(x * x), $MachinePrecision] + N[(y * y), $MachinePrecision]), $MachinePrecision] - N[(z * z), $MachinePrecision]), $MachinePrecision] / N[(y * 2.0), $MachinePrecision]), $MachinePrecision]
code[x_, y_, z_] := N[(N[(N[(N[(x + z), $MachinePrecision] / y), $MachinePrecision] * N[(z - x), $MachinePrecision] + (-y)), $MachinePrecision] * -0.5), $MachinePrecision]
\frac{\left(x \cdot x + y \cdot y\right) - z \cdot z}{y \cdot 2}
\mathsf{fma}\left(\frac{x + z}{y}, z - x, -y\right) \cdot -0.5

Error?

Target

Original45.41%
Target0.24%
Herbie0.23%
\[y \cdot 0.5 - \left(\frac{0.5}{y} \cdot \left(z + x\right)\right) \cdot \left(z - x\right) \]

Derivation?

  1. Initial program 45.41

    \[\frac{\left(x \cdot x + y \cdot y\right) - z \cdot z}{y \cdot 2} \]
  2. Simplified0.23

    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{x + z}{y}, z - x, -y\right) \cdot -0.5} \]
    Proof

    [Start]45.41

    \[ \frac{\left(x \cdot x + y \cdot y\right) - z \cdot z}{y \cdot 2} \]

    sub-neg [=>]45.41

    \[ \frac{\color{blue}{\left(x \cdot x + y \cdot y\right) + \left(-z \cdot z\right)}}{y \cdot 2} \]

    +-commutative [=>]45.41

    \[ \frac{\color{blue}{\left(-z \cdot z\right) + \left(x \cdot x + y \cdot y\right)}}{y \cdot 2} \]

    neg-sub0 [=>]45.41

    \[ \frac{\color{blue}{\left(0 - z \cdot z\right)} + \left(x \cdot x + y \cdot y\right)}{y \cdot 2} \]

    associate-+l- [=>]45.41

    \[ \frac{\color{blue}{0 - \left(z \cdot z - \left(x \cdot x + y \cdot y\right)\right)}}{y \cdot 2} \]

    sub0-neg [=>]45.41

    \[ \frac{\color{blue}{-\left(z \cdot z - \left(x \cdot x + y \cdot y\right)\right)}}{y \cdot 2} \]

    neg-mul-1 [=>]45.41

    \[ \frac{\color{blue}{-1 \cdot \left(z \cdot z - \left(x \cdot x + y \cdot y\right)\right)}}{y \cdot 2} \]

    *-commutative [=>]45.41

    \[ \frac{\color{blue}{\left(z \cdot z - \left(x \cdot x + y \cdot y\right)\right) \cdot -1}}{y \cdot 2} \]

    times-frac [=>]45.42

    \[ \color{blue}{\frac{z \cdot z - \left(x \cdot x + y \cdot y\right)}{y} \cdot \frac{-1}{2}} \]
  3. Final simplification0.23

    \[\leadsto \mathsf{fma}\left(\frac{x + z}{y}, z - x, -y\right) \cdot -0.5 \]

Alternatives

Alternative 1
Error23.12%
Cost1105
\[\begin{array}{l} t_0 := 0.5 \cdot \left(y + x \cdot \frac{x}{y}\right)\\ \mathbf{if}\;y \leq -1.2 \cdot 10^{-190}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;y \leq 6.8 \cdot 10^{-252}:\\ \;\;\;\;-0.5 \cdot \frac{z}{\frac{y}{z}}\\ \mathbf{elif}\;y \leq 9.5 \cdot 10^{-152} \lor \neg \left(y \leq 1.2 \cdot 10^{-90}\right):\\ \;\;\;\;t_0\\ \mathbf{else}:\\ \;\;\;\;\frac{-0.5}{\frac{y}{z \cdot z}}\\ \end{array} \]
Alternative 2
Error36.88%
Cost976
\[\begin{array}{l} t_0 := z \cdot \frac{z \cdot -0.5}{y}\\ \mathbf{if}\;y \leq -9.5 \cdot 10^{-104}:\\ \;\;\;\;y \cdot 0.5\\ \mathbf{elif}\;y \leq 9.2 \cdot 10^{-251}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;y \leq 8.5 \cdot 10^{-153}:\\ \;\;\;\;\frac{0.5}{y} \cdot \left(x \cdot x\right)\\ \mathbf{elif}\;y \leq 6 \cdot 10^{-90}:\\ \;\;\;\;t_0\\ \mathbf{else}:\\ \;\;\;\;y \cdot 0.5\\ \end{array} \]
Alternative 3
Error36.88%
Cost976
\[\begin{array}{l} t_0 := -0.5 \cdot \frac{z}{\frac{y}{z}}\\ \mathbf{if}\;y \leq -2.9 \cdot 10^{-103}:\\ \;\;\;\;y \cdot 0.5\\ \mathbf{elif}\;y \leq 2.6 \cdot 10^{-251}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;y \leq 2.25 \cdot 10^{-151}:\\ \;\;\;\;\frac{0.5}{y} \cdot \left(x \cdot x\right)\\ \mathbf{elif}\;y \leq 2.6 \cdot 10^{-90}:\\ \;\;\;\;t_0\\ \mathbf{else}:\\ \;\;\;\;y \cdot 0.5\\ \end{array} \]
Alternative 4
Error36.9%
Cost976
\[\begin{array}{l} \mathbf{if}\;y \leq -6 \cdot 10^{-104}:\\ \;\;\;\;y \cdot 0.5\\ \mathbf{elif}\;y \leq 6.3 \cdot 10^{-251}:\\ \;\;\;\;-0.5 \cdot \frac{z}{\frac{y}{z}}\\ \mathbf{elif}\;y \leq 10^{-152}:\\ \;\;\;\;\frac{0.5}{y} \cdot \left(x \cdot x\right)\\ \mathbf{elif}\;y \leq 1.75 \cdot 10^{-90}:\\ \;\;\;\;\frac{-0.5}{\frac{y}{z \cdot z}}\\ \mathbf{else}:\\ \;\;\;\;y \cdot 0.5\\ \end{array} \]
Alternative 5
Error10.27%
Cost841
\[\begin{array}{l} \mathbf{if}\;z \leq -6.6 \cdot 10^{-101} \lor \neg \left(z \leq 8.5 \cdot 10^{-17}\right):\\ \;\;\;\;-0.5 \cdot \left(\frac{z}{\frac{y}{z}} - y\right)\\ \mathbf{else}:\\ \;\;\;\;0.5 \cdot \left(y + x \cdot \frac{x}{y}\right)\\ \end{array} \]
Alternative 6
Error0.24%
Cost832
\[-0.5 \cdot \left(\frac{z - x}{\frac{y}{x + z}} - y\right) \]
Alternative 7
Error36.8%
Cost713
\[\begin{array}{l} \mathbf{if}\;y \leq -6.5 \cdot 10^{-103} \lor \neg \left(y \leq 1.35 \cdot 10^{-89}\right):\\ \;\;\;\;y \cdot 0.5\\ \mathbf{else}:\\ \;\;\;\;z \cdot \frac{z \cdot -0.5}{y}\\ \end{array} \]
Alternative 8
Error36.83%
Cost712
\[\begin{array}{l} \mathbf{if}\;y \leq -6 \cdot 10^{-103}:\\ \;\;\;\;y \cdot 0.5\\ \mathbf{elif}\;y \leq 6.8 \cdot 10^{-90}:\\ \;\;\;\;z \cdot \left(z \cdot \frac{-0.5}{y}\right)\\ \mathbf{else}:\\ \;\;\;\;y \cdot 0.5\\ \end{array} \]
Alternative 9
Error42.75%
Cost192
\[y \cdot 0.5 \]

Error

Reproduce?

herbie shell --seed 2023088 
(FPCore (x y z)
  :name "Diagrams.TwoD.Apollonian:initialConfig from diagrams-contrib-1.3.0.5, A"
  :precision binary64

  :herbie-target
  (- (* y 0.5) (* (* (/ 0.5 y) (+ z x)) (- z x)))

  (/ (- (+ (* x x) (* y y)) (* z z)) (* y 2.0)))