Average Error: 5.4 → 1.2
Time: 26.6s
Precision: binary64
Cost: 53440
\[ \begin{array}{c}[x, y, z, t] = \mathsf{sort}([x, y, z, t])\\ \end{array} \]
\[\left(\left(\left(\sqrt{x + 1} - \sqrt{x}\right) + \left(\sqrt{y + 1} - \sqrt{y}\right)\right) + \left(\sqrt{z + 1} - \sqrt{z}\right)\right) + \left(\sqrt{t + 1} - \sqrt{t}\right) \]
\[\left(\left(\frac{1 + \left(x - x\right)}{\sqrt{1 + x} + \sqrt{x}} + \frac{1 + \left(y - y\right)}{\sqrt{1 + y} + \sqrt{y}}\right) + \left(\sqrt{1 + z} - \sqrt{z}\right)\right) + \left(\sqrt{1 + t} - \sqrt{t}\right) \]
(FPCore (x y z t)
 :precision binary64
 (+
  (+
   (+ (- (sqrt (+ x 1.0)) (sqrt x)) (- (sqrt (+ y 1.0)) (sqrt y)))
   (- (sqrt (+ z 1.0)) (sqrt z)))
  (- (sqrt (+ t 1.0)) (sqrt t))))
(FPCore (x y z t)
 :precision binary64
 (+
  (+
   (+
    (/ (+ 1.0 (- x x)) (+ (sqrt (+ 1.0 x)) (sqrt x)))
    (/ (+ 1.0 (- y y)) (+ (sqrt (+ 1.0 y)) (sqrt y))))
   (- (sqrt (+ 1.0 z)) (sqrt z)))
  (- (sqrt (+ 1.0 t)) (sqrt t))))
double code(double x, double y, double z, double t) {
	return (((sqrt((x + 1.0)) - sqrt(x)) + (sqrt((y + 1.0)) - sqrt(y))) + (sqrt((z + 1.0)) - sqrt(z))) + (sqrt((t + 1.0)) - sqrt(t));
}
double code(double x, double y, double z, double t) {
	return ((((1.0 + (x - x)) / (sqrt((1.0 + x)) + sqrt(x))) + ((1.0 + (y - y)) / (sqrt((1.0 + y)) + sqrt(y)))) + (sqrt((1.0 + z)) - sqrt(z))) + (sqrt((1.0 + t)) - sqrt(t));
}
real(8) function code(x, y, z, t)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    code = (((sqrt((x + 1.0d0)) - sqrt(x)) + (sqrt((y + 1.0d0)) - sqrt(y))) + (sqrt((z + 1.0d0)) - sqrt(z))) + (sqrt((t + 1.0d0)) - sqrt(t))
end function
real(8) function code(x, y, z, t)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    code = ((((1.0d0 + (x - x)) / (sqrt((1.0d0 + x)) + sqrt(x))) + ((1.0d0 + (y - y)) / (sqrt((1.0d0 + y)) + sqrt(y)))) + (sqrt((1.0d0 + z)) - sqrt(z))) + (sqrt((1.0d0 + t)) - sqrt(t))
end function
public static double code(double x, double y, double z, double t) {
	return (((Math.sqrt((x + 1.0)) - Math.sqrt(x)) + (Math.sqrt((y + 1.0)) - Math.sqrt(y))) + (Math.sqrt((z + 1.0)) - Math.sqrt(z))) + (Math.sqrt((t + 1.0)) - Math.sqrt(t));
}
public static double code(double x, double y, double z, double t) {
	return ((((1.0 + (x - x)) / (Math.sqrt((1.0 + x)) + Math.sqrt(x))) + ((1.0 + (y - y)) / (Math.sqrt((1.0 + y)) + Math.sqrt(y)))) + (Math.sqrt((1.0 + z)) - Math.sqrt(z))) + (Math.sqrt((1.0 + t)) - Math.sqrt(t));
}
def code(x, y, z, t):
	return (((math.sqrt((x + 1.0)) - math.sqrt(x)) + (math.sqrt((y + 1.0)) - math.sqrt(y))) + (math.sqrt((z + 1.0)) - math.sqrt(z))) + (math.sqrt((t + 1.0)) - math.sqrt(t))
def code(x, y, z, t):
	return ((((1.0 + (x - x)) / (math.sqrt((1.0 + x)) + math.sqrt(x))) + ((1.0 + (y - y)) / (math.sqrt((1.0 + y)) + math.sqrt(y)))) + (math.sqrt((1.0 + z)) - math.sqrt(z))) + (math.sqrt((1.0 + t)) - math.sqrt(t))
function code(x, y, z, t)
	return Float64(Float64(Float64(Float64(sqrt(Float64(x + 1.0)) - sqrt(x)) + Float64(sqrt(Float64(y + 1.0)) - sqrt(y))) + Float64(sqrt(Float64(z + 1.0)) - sqrt(z))) + Float64(sqrt(Float64(t + 1.0)) - sqrt(t)))
end
function code(x, y, z, t)
	return Float64(Float64(Float64(Float64(Float64(1.0 + Float64(x - x)) / Float64(sqrt(Float64(1.0 + x)) + sqrt(x))) + Float64(Float64(1.0 + Float64(y - y)) / Float64(sqrt(Float64(1.0 + y)) + sqrt(y)))) + Float64(sqrt(Float64(1.0 + z)) - sqrt(z))) + Float64(sqrt(Float64(1.0 + t)) - sqrt(t)))
end
function tmp = code(x, y, z, t)
	tmp = (((sqrt((x + 1.0)) - sqrt(x)) + (sqrt((y + 1.0)) - sqrt(y))) + (sqrt((z + 1.0)) - sqrt(z))) + (sqrt((t + 1.0)) - sqrt(t));
end
function tmp = code(x, y, z, t)
	tmp = ((((1.0 + (x - x)) / (sqrt((1.0 + x)) + sqrt(x))) + ((1.0 + (y - y)) / (sqrt((1.0 + y)) + sqrt(y)))) + (sqrt((1.0 + z)) - sqrt(z))) + (sqrt((1.0 + t)) - sqrt(t));
end
code[x_, y_, z_, t_] := N[(N[(N[(N[(N[Sqrt[N[(x + 1.0), $MachinePrecision]], $MachinePrecision] - N[Sqrt[x], $MachinePrecision]), $MachinePrecision] + N[(N[Sqrt[N[(y + 1.0), $MachinePrecision]], $MachinePrecision] - N[Sqrt[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[Sqrt[N[(z + 1.0), $MachinePrecision]], $MachinePrecision] - N[Sqrt[z], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[Sqrt[N[(t + 1.0), $MachinePrecision]], $MachinePrecision] - N[Sqrt[t], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
code[x_, y_, z_, t_] := N[(N[(N[(N[(N[(1.0 + N[(x - x), $MachinePrecision]), $MachinePrecision] / N[(N[Sqrt[N[(1.0 + x), $MachinePrecision]], $MachinePrecision] + N[Sqrt[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(1.0 + N[(y - y), $MachinePrecision]), $MachinePrecision] / N[(N[Sqrt[N[(1.0 + y), $MachinePrecision]], $MachinePrecision] + N[Sqrt[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[Sqrt[N[(1.0 + z), $MachinePrecision]], $MachinePrecision] - N[Sqrt[z], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[Sqrt[N[(1.0 + t), $MachinePrecision]], $MachinePrecision] - N[Sqrt[t], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\left(\left(\left(\sqrt{x + 1} - \sqrt{x}\right) + \left(\sqrt{y + 1} - \sqrt{y}\right)\right) + \left(\sqrt{z + 1} - \sqrt{z}\right)\right) + \left(\sqrt{t + 1} - \sqrt{t}\right)
\left(\left(\frac{1 + \left(x - x\right)}{\sqrt{1 + x} + \sqrt{x}} + \frac{1 + \left(y - y\right)}{\sqrt{1 + y} + \sqrt{y}}\right) + \left(\sqrt{1 + z} - \sqrt{z}\right)\right) + \left(\sqrt{1 + t} - \sqrt{t}\right)

Error

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Target

Original5.4
Target0.4
Herbie1.2
\[\left(\left(\frac{1}{\sqrt{x + 1} + \sqrt{x}} + \frac{1}{\sqrt{y + 1} + \sqrt{y}}\right) + \frac{1}{\sqrt{z + 1} + \sqrt{z}}\right) + \left(\sqrt{t + 1} - \sqrt{t}\right) \]

Derivation

  1. Initial program 5.4

    \[\left(\left(\left(\sqrt{x + 1} - \sqrt{x}\right) + \left(\sqrt{y + 1} - \sqrt{y}\right)\right) + \left(\sqrt{z + 1} - \sqrt{z}\right)\right) + \left(\sqrt{t + 1} - \sqrt{t}\right) \]
  2. Applied egg-rr2.6

    \[\leadsto \left(\left(\color{blue}{\frac{1 + \left(x - x\right)}{\sqrt{1 + x} + \sqrt{x}}} + \left(\sqrt{y + 1} - \sqrt{y}\right)\right) + \left(\sqrt{z + 1} - \sqrt{z}\right)\right) + \left(\sqrt{t + 1} - \sqrt{t}\right) \]
  3. Applied egg-rr1.2

    \[\leadsto \left(\left(\frac{1 + \left(x - x\right)}{\sqrt{1 + x} + \sqrt{x}} + \color{blue}{\frac{1 + \left(y - y\right)}{\sqrt{1 + y} + \sqrt{y}}}\right) + \left(\sqrt{z + 1} - \sqrt{z}\right)\right) + \left(\sqrt{t + 1} - \sqrt{t}\right) \]
  4. Final simplification1.2

    \[\leadsto \left(\left(\frac{1 + \left(x - x\right)}{\sqrt{1 + x} + \sqrt{x}} + \frac{1 + \left(y - y\right)}{\sqrt{1 + y} + \sqrt{y}}\right) + \left(\sqrt{1 + z} - \sqrt{z}\right)\right) + \left(\sqrt{1 + t} - \sqrt{t}\right) \]

Alternatives

Alternative 1
Error1.8
Cost92612
\[\begin{array}{l} t_1 := \sqrt{1 + x}\\ t_2 := t_1 - \sqrt{x}\\ t_3 := \sqrt{1 + z} - \sqrt{z}\\ t_4 := \sqrt{1 + y}\\ \mathbf{if}\;t_3 + \left(\left(t_4 - \sqrt{y}\right) + t_2\right) \leq 0.01:\\ \;\;\;\;\frac{1 + \left(x - x\right)}{t_1 + \sqrt{x}}\\ \mathbf{else}:\\ \;\;\;\;\left(\sqrt{1 + t} - \sqrt{t}\right) + \left(t_3 + \left(\frac{1 + \left(y - y\right)}{t_4 + \sqrt{y}} + t_2\right)\right)\\ \end{array} \]
Alternative 2
Error2.0
Cost66116
\[\begin{array}{l} t_1 := \sqrt{1 + y}\\ t_2 := \sqrt{1 + x}\\ \mathbf{if}\;\left(t_1 - \sqrt{y}\right) + \left(t_2 - \sqrt{x}\right) \leq 0.99999999999998:\\ \;\;\;\;\frac{1 + \left(x - x\right)}{t_2 + \sqrt{x}}\\ \mathbf{else}:\\ \;\;\;\;\left(\sqrt{1 + t} - \sqrt{t}\right) + \left(\left(\sqrt{1 + z} - \sqrt{z}\right) + \left(1 + \frac{1}{t_1 + \sqrt{y}}\right)\right)\\ \end{array} \]
Alternative 3
Error2.6
Cost53056
\[\left(\sqrt{1 + t} - \sqrt{t}\right) + \left(\left(\sqrt{1 + z} - \sqrt{z}\right) + \left(\frac{1 + \left(x - x\right)}{\sqrt{1 + x} + \sqrt{x}} + \left(\sqrt{1 + y} - \sqrt{y}\right)\right)\right) \]
Alternative 4
Error6.8
Cost39368
\[\begin{array}{l} t_1 := \sqrt{1 + x}\\ \mathbf{if}\;y \leq 4.316721516833901 \cdot 10^{-34}:\\ \;\;\;\;\left(\sqrt{1 + z} - \sqrt{z}\right) + 2\\ \mathbf{elif}\;y \leq 7.711881075993128 \cdot 10^{+19}:\\ \;\;\;\;t_1 + \mathsf{expm1}\left(\mathsf{log1p}\left(\sqrt{1 + y} - \left(\sqrt{x} + \sqrt{y}\right)\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{1 + \left(x - x\right)}{t_1 + \sqrt{x}}\\ \end{array} \]
Alternative 5
Error6.7
Cost26568
\[\begin{array}{l} t_1 := \sqrt{1 + x}\\ \mathbf{if}\;y \leq 4.316721516833901 \cdot 10^{-34}:\\ \;\;\;\;\left(\sqrt{1 + z} - \sqrt{z}\right) + 2\\ \mathbf{elif}\;y \leq 7.711881075993128 \cdot 10^{+19}:\\ \;\;\;\;\left(t_1 + \left(\sqrt{1 + y} - \sqrt{x}\right)\right) - \sqrt{y}\\ \mathbf{else}:\\ \;\;\;\;\frac{1 + \left(x - x\right)}{t_1 + \sqrt{x}}\\ \end{array} \]
Alternative 6
Error6.7
Cost26568
\[\begin{array}{l} t_1 := \sqrt{1 + x}\\ \mathbf{if}\;y \leq 4.316721516833901 \cdot 10^{-34}:\\ \;\;\;\;\left(\sqrt{1 + z} - \sqrt{z}\right) + 2\\ \mathbf{elif}\;y \leq 7.711881075993128 \cdot 10^{+19}:\\ \;\;\;\;t_1 + \left(\sqrt{1 + y} - \left(\sqrt{x} + \sqrt{y}\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{1 + \left(x - x\right)}{t_1 + \sqrt{x}}\\ \end{array} \]
Alternative 7
Error6.9
Cost13768
\[\begin{array}{l} \mathbf{if}\;y \leq 4.316721516833901 \cdot 10^{-34}:\\ \;\;\;\;\left(\sqrt{1 + z} - \sqrt{z}\right) + 2\\ \mathbf{elif}\;y \leq 619624107024.4884:\\ \;\;\;\;1 + \left(\sqrt{1 + y} - \sqrt{y}\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{1 + \left(x - x\right)}{\sqrt{1 + x} + \sqrt{x}}\\ \end{array} \]
Alternative 8
Error6.8
Cost13512
\[\begin{array}{l} \mathbf{if}\;z \leq 4.7941979504710795 \cdot 10^{-28}:\\ \;\;\;\;1 + \left(\left(\sqrt{1 + t} - \sqrt{t}\right) + 2\right)\\ \mathbf{elif}\;z \leq 13573916016366.348:\\ \;\;\;\;\left(\sqrt{1 + z} - \sqrt{z}\right) + 2\\ \mathbf{else}:\\ \;\;\;\;1 + \left(\sqrt{1 + y} - \sqrt{y}\right)\\ \end{array} \]
Alternative 9
Error11.8
Cost13380
\[\begin{array}{l} \mathbf{if}\;y \leq 0.014271528232429635:\\ \;\;\;\;\left(\sqrt{1 + z} - \sqrt{z}\right) + 2\\ \mathbf{else}:\\ \;\;\;\;\sqrt{1 + x} - \sqrt{x}\\ \end{array} \]
Alternative 10
Error10.0
Cost13380
\[\begin{array}{l} \mathbf{if}\;z \leq 13573916016366.348:\\ \;\;\;\;\left(\sqrt{1 + z} - \sqrt{z}\right) + 2\\ \mathbf{else}:\\ \;\;\;\;1 + \left(\sqrt{1 + y} - \sqrt{y}\right)\\ \end{array} \]
Alternative 11
Error41.3
Cost13120
\[\sqrt{1 + x} - \sqrt{x} \]
Alternative 12
Error42.0
Cost64
\[1 \]

Error

Reproduce

herbie shell --seed 2022308 
(FPCore (x y z t)
  :name "Main:z from "
  :precision binary64

  :herbie-target
  (+ (+ (+ (/ 1.0 (+ (sqrt (+ x 1.0)) (sqrt x))) (/ 1.0 (+ (sqrt (+ y 1.0)) (sqrt y)))) (/ 1.0 (+ (sqrt (+ z 1.0)) (sqrt z)))) (- (sqrt (+ t 1.0)) (sqrt t)))

  (+ (+ (+ (- (sqrt (+ x 1.0)) (sqrt x)) (- (sqrt (+ y 1.0)) (sqrt y))) (- (sqrt (+ z 1.0)) (sqrt z))) (- (sqrt (+ t 1.0)) (sqrt t))))