Average Error: 24.5 → 0.4
Time: 7.9s
Precision: binary64
Cost: 964
\[x \cdot \sqrt{y \cdot y - z \cdot z} \]
\[\begin{array}{l} \mathbf{if}\;y \leq -2.909707230010062 \cdot 10^{-251}:\\ \;\;\;\;\left(\frac{z}{y} \cdot \left(z \cdot 0.5\right) - y\right) \cdot x\\ \mathbf{else}:\\ \;\;\;\;\left(z \cdot \frac{z}{y}\right) \cdot \left(x \cdot -0.5\right) + y \cdot x\\ \end{array} \]
(FPCore (x y z) :precision binary64 (* x (sqrt (- (* y y) (* z z)))))
(FPCore (x y z)
 :precision binary64
 (if (<= y -2.909707230010062e-251)
   (* (- (* (/ z y) (* z 0.5)) y) x)
   (+ (* (* z (/ z y)) (* x -0.5)) (* y x))))
double code(double x, double y, double z) {
	return x * sqrt(((y * y) - (z * z)));
}
double code(double x, double y, double z) {
	double tmp;
	if (y <= -2.909707230010062e-251) {
		tmp = (((z / y) * (z * 0.5)) - y) * x;
	} else {
		tmp = ((z * (z / y)) * (x * -0.5)) + (y * x);
	}
	return tmp;
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = x * sqrt(((y * y) - (z * z)))
end function
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8) :: tmp
    if (y <= (-2.909707230010062d-251)) then
        tmp = (((z / y) * (z * 0.5d0)) - y) * x
    else
        tmp = ((z * (z / y)) * (x * (-0.5d0))) + (y * x)
    end if
    code = tmp
end function
public static double code(double x, double y, double z) {
	return x * Math.sqrt(((y * y) - (z * z)));
}
public static double code(double x, double y, double z) {
	double tmp;
	if (y <= -2.909707230010062e-251) {
		tmp = (((z / y) * (z * 0.5)) - y) * x;
	} else {
		tmp = ((z * (z / y)) * (x * -0.5)) + (y * x);
	}
	return tmp;
}
def code(x, y, z):
	return x * math.sqrt(((y * y) - (z * z)))
def code(x, y, z):
	tmp = 0
	if y <= -2.909707230010062e-251:
		tmp = (((z / y) * (z * 0.5)) - y) * x
	else:
		tmp = ((z * (z / y)) * (x * -0.5)) + (y * x)
	return tmp
function code(x, y, z)
	return Float64(x * sqrt(Float64(Float64(y * y) - Float64(z * z))))
end
function code(x, y, z)
	tmp = 0.0
	if (y <= -2.909707230010062e-251)
		tmp = Float64(Float64(Float64(Float64(z / y) * Float64(z * 0.5)) - y) * x);
	else
		tmp = Float64(Float64(Float64(z * Float64(z / y)) * Float64(x * -0.5)) + Float64(y * x));
	end
	return tmp
end
function tmp = code(x, y, z)
	tmp = x * sqrt(((y * y) - (z * z)));
end
function tmp_2 = code(x, y, z)
	tmp = 0.0;
	if (y <= -2.909707230010062e-251)
		tmp = (((z / y) * (z * 0.5)) - y) * x;
	else
		tmp = ((z * (z / y)) * (x * -0.5)) + (y * x);
	end
	tmp_2 = tmp;
end
code[x_, y_, z_] := N[(x * N[Sqrt[N[(N[(y * y), $MachinePrecision] - N[(z * z), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
code[x_, y_, z_] := If[LessEqual[y, -2.909707230010062e-251], N[(N[(N[(N[(z / y), $MachinePrecision] * N[(z * 0.5), $MachinePrecision]), $MachinePrecision] - y), $MachinePrecision] * x), $MachinePrecision], N[(N[(N[(z * N[(z / y), $MachinePrecision]), $MachinePrecision] * N[(x * -0.5), $MachinePrecision]), $MachinePrecision] + N[(y * x), $MachinePrecision]), $MachinePrecision]]
x \cdot \sqrt{y \cdot y - z \cdot z}
\begin{array}{l}
\mathbf{if}\;y \leq -2.909707230010062 \cdot 10^{-251}:\\
\;\;\;\;\left(\frac{z}{y} \cdot \left(z \cdot 0.5\right) - y\right) \cdot x\\

\mathbf{else}:\\
\;\;\;\;\left(z \cdot \frac{z}{y}\right) \cdot \left(x \cdot -0.5\right) + y \cdot x\\


\end{array}

Error

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Target

Original24.5
Target0.6
Herbie0.4
\[\begin{array}{l} \mathbf{if}\;y < 2.5816096488251695 \cdot 10^{-278}:\\ \;\;\;\;-x \cdot y\\ \mathbf{else}:\\ \;\;\;\;x \cdot \left(\sqrt{y + z} \cdot \sqrt{y - z}\right)\\ \end{array} \]

Derivation

  1. Split input into 2 regimes
  2. if y < -2.90970723001006191e-251

    1. Initial program 24.0

      \[x \cdot \sqrt{y \cdot y - z \cdot z} \]
    2. Taylor expanded in y around -inf 3.2

      \[\leadsto x \cdot \color{blue}{\left(0.5 \cdot \frac{{z}^{2}}{y} + -1 \cdot y\right)} \]
    3. Simplified0.2

      \[\leadsto x \cdot \color{blue}{\mathsf{fma}\left(0.5, \frac{z}{\frac{y}{z}}, -y\right)} \]
      Proof
      (*.f64 x (fma.f64 1/2 (/.f64 z (/.f64 y z)) (neg.f64 y))): 0 points increase in error, 0 points decrease in error
      (*.f64 x (fma.f64 1/2 (Rewrite<= associate-/l*_binary64 (/.f64 (*.f64 z z) y)) (neg.f64 y))): 5 points increase in error, 0 points decrease in error
      (*.f64 x (fma.f64 1/2 (/.f64 (Rewrite<= unpow2_binary64 (pow.f64 z 2)) y) (neg.f64 y))): 0 points increase in error, 5 points decrease in error
      (*.f64 x (fma.f64 1/2 (/.f64 (pow.f64 z 2) y) (Rewrite<= mul-1-neg_binary64 (*.f64 -1 y)))): 5 points increase in error, 0 points decrease in error
      (*.f64 x (Rewrite<= fma-def_binary64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 z 2) y)) (*.f64 -1 y)))): 0 points increase in error, 5 points decrease in error
    4. Taylor expanded in x around 0 3.2

      \[\leadsto \color{blue}{\left(0.5 \cdot \frac{{z}^{2}}{y} - y\right) \cdot x} \]
    5. Simplified0.2

      \[\leadsto \color{blue}{\left(\frac{z}{y} \cdot \left(z \cdot 0.5\right) - y\right) \cdot x} \]
      Proof
      (*.f64 (-.f64 (*.f64 (/.f64 z y) (*.f64 z 1/2)) y) x): 0 points increase in error, 0 points decrease in error
      (*.f64 (-.f64 (Rewrite<= associate-*l*_binary64 (*.f64 (*.f64 (/.f64 z y) z) 1/2)) y) x): 5 points increase in error, 0 points decrease in error
      (*.f64 (-.f64 (*.f64 (Rewrite=> associate-*l/_binary64 (/.f64 (*.f64 z z) y)) 1/2) y) x): 0 points increase in error, 5 points decrease in error
      (*.f64 (-.f64 (*.f64 (/.f64 (Rewrite<= unpow2_binary64 (pow.f64 z 2)) y) 1/2) y) x): 5 points increase in error, 0 points decrease in error
      (*.f64 (-.f64 (Rewrite<= *-commutative_binary64 (*.f64 1/2 (/.f64 (pow.f64 z 2) y))) y) x): 0 points increase in error, 5 points decrease in error

    if -2.90970723001006191e-251 < y

    1. Initial program 25.0

      \[x \cdot \sqrt{y \cdot y - z \cdot z} \]
    2. Taylor expanded in y around inf 4.0

      \[\leadsto x \cdot \color{blue}{\left(y + -0.5 \cdot \frac{{z}^{2}}{y}\right)} \]
    3. Simplified4.0

      \[\leadsto x \cdot \color{blue}{\left(y + -0.5 \cdot \frac{z \cdot z}{y}\right)} \]
      Proof
      (*.f64 x (fma.f64 1/2 (/.f64 z (/.f64 y z)) (neg.f64 y))): 0 points increase in error, 0 points decrease in error
      (*.f64 x (fma.f64 1/2 (Rewrite<= associate-/l*_binary64 (/.f64 (*.f64 z z) y)) (neg.f64 y))): 5 points increase in error, 0 points decrease in error
      (*.f64 x (fma.f64 1/2 (/.f64 (Rewrite<= unpow2_binary64 (pow.f64 z 2)) y) (neg.f64 y))): 0 points increase in error, 5 points decrease in error
      (*.f64 x (fma.f64 1/2 (/.f64 (pow.f64 z 2) y) (Rewrite<= mul-1-neg_binary64 (*.f64 -1 y)))): 5 points increase in error, 0 points decrease in error
      (*.f64 x (Rewrite<= fma-def_binary64 (+.f64 (*.f64 1/2 (/.f64 (pow.f64 z 2) y)) (*.f64 -1 y)))): 0 points increase in error, 5 points decrease in error
    4. Applied egg-rr0.6

      \[\leadsto \color{blue}{\left(z \cdot \frac{z}{y}\right) \cdot \left(-0.5 \cdot x\right) + y \cdot x} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification0.4

    \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq -2.909707230010062 \cdot 10^{-251}:\\ \;\;\;\;\left(\frac{z}{y} \cdot \left(z \cdot 0.5\right) - y\right) \cdot x\\ \mathbf{else}:\\ \;\;\;\;\left(z \cdot \frac{z}{y}\right) \cdot \left(x \cdot -0.5\right) + y \cdot x\\ \end{array} \]

Alternatives

Alternative 1
Error0.6
Cost836
\[\begin{array}{l} \mathbf{if}\;y \leq -2.909707230010062 \cdot 10^{-251}:\\ \;\;\;\;y \cdot \left(-x\right)\\ \mathbf{else}:\\ \;\;\;\;x \cdot \left(y + \frac{z \cdot -0.5}{\frac{y}{z}}\right)\\ \end{array} \]
Alternative 2
Error0.3
Cost836
\[\begin{array}{l} \mathbf{if}\;y \leq 1.3078481459448914 \cdot 10^{-293}:\\ \;\;\;\;\left(\frac{z}{y} \cdot \left(z \cdot 0.5\right) - y\right) \cdot x\\ \mathbf{else}:\\ \;\;\;\;x \cdot \left(y + \frac{z \cdot -0.5}{\frac{y}{z}}\right)\\ \end{array} \]
Alternative 3
Error0.8
Cost388
\[\begin{array}{l} \mathbf{if}\;y \leq -2.909707230010062 \cdot 10^{-251}:\\ \;\;\;\;y \cdot \left(-x\right)\\ \mathbf{else}:\\ \;\;\;\;y \cdot x\\ \end{array} \]
Alternative 4
Error30.0
Cost192
\[y \cdot x \]

Error

Reproduce

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

  :herbie-target
  (if (< y 2.5816096488251695e-278) (- (* x y)) (* x (* (sqrt (+ y z)) (sqrt (- y z)))))

  (* x (sqrt (- (* y y) (* z z)))))