Average Error: 20.9 → 0.7
Time: 3.0s
Precision: binary64
Cost: 6984
\[\sqrt{x \cdot x + y} \]
\[\begin{array}{l} \mathbf{if}\;x \leq -4 \cdot 10^{+155}:\\ \;\;\;\;-x\\ \mathbf{elif}\;x \leq 2 \cdot 10^{+47}:\\ \;\;\;\;\sqrt{x \cdot x + y}\\ \mathbf{else}:\\ \;\;\;\;x\\ \end{array} \]
(FPCore (x y) :precision binary64 (sqrt (+ (* x x) y)))
(FPCore (x y)
 :precision binary64
 (if (<= x -4e+155) (- x) (if (<= x 2e+47) (sqrt (+ (* x x) y)) x)))
double code(double x, double y) {
	return sqrt(((x * x) + y));
}
double code(double x, double y) {
	double tmp;
	if (x <= -4e+155) {
		tmp = -x;
	} else if (x <= 2e+47) {
		tmp = sqrt(((x * x) + y));
	} else {
		tmp = x;
	}
	return tmp;
}
real(8) function code(x, y)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    code = sqrt(((x * x) + y))
end function
real(8) function code(x, y)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8) :: tmp
    if (x <= (-4d+155)) then
        tmp = -x
    else if (x <= 2d+47) then
        tmp = sqrt(((x * x) + y))
    else
        tmp = x
    end if
    code = tmp
end function
public static double code(double x, double y) {
	return Math.sqrt(((x * x) + y));
}
public static double code(double x, double y) {
	double tmp;
	if (x <= -4e+155) {
		tmp = -x;
	} else if (x <= 2e+47) {
		tmp = Math.sqrt(((x * x) + y));
	} else {
		tmp = x;
	}
	return tmp;
}
def code(x, y):
	return math.sqrt(((x * x) + y))
def code(x, y):
	tmp = 0
	if x <= -4e+155:
		tmp = -x
	elif x <= 2e+47:
		tmp = math.sqrt(((x * x) + y))
	else:
		tmp = x
	return tmp
function code(x, y)
	return sqrt(Float64(Float64(x * x) + y))
end
function code(x, y)
	tmp = 0.0
	if (x <= -4e+155)
		tmp = Float64(-x);
	elseif (x <= 2e+47)
		tmp = sqrt(Float64(Float64(x * x) + y));
	else
		tmp = x;
	end
	return tmp
end
function tmp = code(x, y)
	tmp = sqrt(((x * x) + y));
end
function tmp_2 = code(x, y)
	tmp = 0.0;
	if (x <= -4e+155)
		tmp = -x;
	elseif (x <= 2e+47)
		tmp = sqrt(((x * x) + y));
	else
		tmp = x;
	end
	tmp_2 = tmp;
end
code[x_, y_] := N[Sqrt[N[(N[(x * x), $MachinePrecision] + y), $MachinePrecision]], $MachinePrecision]
code[x_, y_] := If[LessEqual[x, -4e+155], (-x), If[LessEqual[x, 2e+47], N[Sqrt[N[(N[(x * x), $MachinePrecision] + y), $MachinePrecision]], $MachinePrecision], x]]
\sqrt{x \cdot x + y}
\begin{array}{l}
\mathbf{if}\;x \leq -4 \cdot 10^{+155}:\\
\;\;\;\;-x\\

\mathbf{elif}\;x \leq 2 \cdot 10^{+47}:\\
\;\;\;\;\sqrt{x \cdot x + y}\\

\mathbf{else}:\\
\;\;\;\;x\\


\end{array}

Error

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Target

Original20.9
Target0.4
Herbie0.7
\[\begin{array}{l} \mathbf{if}\;x < -1.5097698010472593 \cdot 10^{+153}:\\ \;\;\;\;-\left(0.5 \cdot \frac{y}{x} + x\right)\\ \mathbf{elif}\;x < 5.582399551122541 \cdot 10^{+57}:\\ \;\;\;\;\sqrt{x \cdot x + y}\\ \mathbf{else}:\\ \;\;\;\;0.5 \cdot \frac{y}{x} + x\\ \end{array} \]

Derivation

  1. Split input into 3 regimes
  2. if x < -4.00000000000000003e155

    1. Initial program 64.0

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

      \[\leadsto \color{blue}{-1 \cdot x} \]
    3. Simplified0

      \[\leadsto \color{blue}{-x} \]
      Proof
      (neg.f64 x): 0 points increase in error, 0 points decrease in error
      (Rewrite<= mul-1-neg_binary64 (*.f64 -1 x)): 2 points increase in error, 0 points decrease in error

    if -4.00000000000000003e155 < x < 2.0000000000000001e47

    1. Initial program 0.2

      \[\sqrt{x \cdot x + y} \]

    if 2.0000000000000001e47 < x

    1. Initial program 37.9

      \[\sqrt{x \cdot x + y} \]
    2. Taylor expanded in x around inf 2.3

      \[\leadsto \color{blue}{x} \]
  3. Recombined 3 regimes into one program.
  4. Final simplification0.7

    \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -4 \cdot 10^{+155}:\\ \;\;\;\;-x\\ \mathbf{elif}\;x \leq 2 \cdot 10^{+47}:\\ \;\;\;\;\sqrt{x \cdot x + y}\\ \mathbf{else}:\\ \;\;\;\;x\\ \end{array} \]

Alternatives

Alternative 1
Error7.3
Cost6728
\[\begin{array}{l} \mathbf{if}\;x \leq -6.1 \cdot 10^{-99}:\\ \;\;\;\;y \cdot \frac{-0.5}{x} - x\\ \mathbf{elif}\;x \leq 6.2 \cdot 10^{-66}:\\ \;\;\;\;\sqrt{y}\\ \mathbf{else}:\\ \;\;\;\;x + 0.5 \cdot \frac{y}{x}\\ \end{array} \]
Alternative 2
Error20.6
Cost580
\[\begin{array}{l} \mathbf{if}\;x \leq -1.55 \cdot 10^{-217}:\\ \;\;\;\;y \cdot \frac{-0.5}{x} - x\\ \mathbf{else}:\\ \;\;\;\;x\\ \end{array} \]
Alternative 3
Error20.7
Cost260
\[\begin{array}{l} \mathbf{if}\;x \leq -2 \cdot 10^{-311}:\\ \;\;\;\;-x\\ \mathbf{else}:\\ \;\;\;\;x\\ \end{array} \]
Alternative 4
Error42.2
Cost64
\[x \]

Error

Reproduce

herbie shell --seed 2022340 
(FPCore (x y)
  :name "Linear.Quaternion:$clog from linear-1.19.1.3"
  :precision binary64

  :herbie-target
  (if (< x -1.5097698010472593e+153) (- (+ (* 0.5 (/ y x)) x)) (if (< x 5.582399551122541e+57) (sqrt (+ (* x x) y)) (+ (* 0.5 (/ y x)) x)))

  (sqrt (+ (* x x) y)))