
(FPCore (x eps) :precision binary64 (- x (sqrt (- (* x x) eps))))
double code(double x, double eps) {
return x - sqrt(((x * x) - eps));
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
code = x - sqrt(((x * x) - eps))
end function
public static double code(double x, double eps) {
return x - Math.sqrt(((x * x) - eps));
}
def code(x, eps): return x - math.sqrt(((x * x) - eps))
function code(x, eps) return Float64(x - sqrt(Float64(Float64(x * x) - eps))) end
function tmp = code(x, eps) tmp = x - sqrt(((x * x) - eps)); end
code[x_, eps_] := N[(x - N[Sqrt[N[(N[(x * x), $MachinePrecision] - eps), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x - \sqrt{x \cdot x - \varepsilon}
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 6 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x eps) :precision binary64 (- x (sqrt (- (* x x) eps))))
double code(double x, double eps) {
return x - sqrt(((x * x) - eps));
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
code = x - sqrt(((x * x) - eps))
end function
public static double code(double x, double eps) {
return x - Math.sqrt(((x * x) - eps));
}
def code(x, eps): return x - math.sqrt(((x * x) - eps))
function code(x, eps) return Float64(x - sqrt(Float64(Float64(x * x) - eps))) end
function tmp = code(x, eps) tmp = x - sqrt(((x * x) - eps)); end
code[x_, eps_] := N[(x - N[Sqrt[N[(N[(x * x), $MachinePrecision] - eps), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x - \sqrt{x \cdot x - \varepsilon}
\end{array}
(FPCore (x eps) :precision binary64 (let* ((t_0 (- (* x x) eps))) (/ eps (+ (/ t_0 (sqrt t_0)) x))))
double code(double x, double eps) {
double t_0 = (x * x) - eps;
return eps / ((t_0 / sqrt(t_0)) + x);
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
real(8) :: t_0
t_0 = (x * x) - eps
code = eps / ((t_0 / sqrt(t_0)) + x)
end function
public static double code(double x, double eps) {
double t_0 = (x * x) - eps;
return eps / ((t_0 / Math.sqrt(t_0)) + x);
}
def code(x, eps): t_0 = (x * x) - eps return eps / ((t_0 / math.sqrt(t_0)) + x)
function code(x, eps) t_0 = Float64(Float64(x * x) - eps) return Float64(eps / Float64(Float64(t_0 / sqrt(t_0)) + x)) end
function tmp = code(x, eps) t_0 = (x * x) - eps; tmp = eps / ((t_0 / sqrt(t_0)) + x); end
code[x_, eps_] := Block[{t$95$0 = N[(N[(x * x), $MachinePrecision] - eps), $MachinePrecision]}, N[(eps / N[(N[(t$95$0 / N[Sqrt[t$95$0], $MachinePrecision]), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := x \cdot x - \varepsilon\\
\frac{\varepsilon}{\frac{t\_0}{\sqrt{t\_0}} + x}
\end{array}
\end{array}
Initial program 60.6%
lift-sqrt.f64N/A
pow1/2N/A
metadata-evalN/A
metadata-evalN/A
pow-divN/A
metadata-evalN/A
unpow1N/A
pow1/2N/A
lift-sqrt.f64N/A
lower-/.f6460.2
Applied rewrites60.2%
lift--.f64N/A
lift-/.f64N/A
lift--.f64N/A
div-subN/A
associate--r-N/A
lower-+.f64N/A
lower--.f64N/A
lower-/.f64N/A
lower-/.f6465.3
Applied rewrites65.3%
Applied rewrites99.5%
lift-sqrt.f64N/A
lift--.f64N/A
lift-*.f64N/A
pow1/2N/A
metadata-evalN/A
metadata-evalN/A
pow-divN/A
metadata-evalN/A
unpow1N/A
pow1/2N/A
lower-/.f64N/A
lift-*.f64N/A
lift--.f64N/A
lift-*.f64N/A
lift--.f64N/A
lift-sqrt.f6499.9
Applied rewrites99.9%
Final simplification99.9%
(FPCore (x eps) :precision binary64 (let* ((t_0 (- x (sqrt (- (* x x) eps))))) (if (<= t_0 -1e-154) t_0 (* 0.5 (/ eps x)))))
double code(double x, double eps) {
double t_0 = x - sqrt(((x * x) - eps));
double tmp;
if (t_0 <= -1e-154) {
tmp = t_0;
} else {
tmp = 0.5 * (eps / x);
}
return tmp;
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
real(8) :: t_0
real(8) :: tmp
t_0 = x - sqrt(((x * x) - eps))
if (t_0 <= (-1d-154)) then
tmp = t_0
else
tmp = 0.5d0 * (eps / x)
end if
code = tmp
end function
public static double code(double x, double eps) {
double t_0 = x - Math.sqrt(((x * x) - eps));
double tmp;
if (t_0 <= -1e-154) {
tmp = t_0;
} else {
tmp = 0.5 * (eps / x);
}
return tmp;
}
def code(x, eps): t_0 = x - math.sqrt(((x * x) - eps)) tmp = 0 if t_0 <= -1e-154: tmp = t_0 else: tmp = 0.5 * (eps / x) return tmp
function code(x, eps) t_0 = Float64(x - sqrt(Float64(Float64(x * x) - eps))) tmp = 0.0 if (t_0 <= -1e-154) tmp = t_0; else tmp = Float64(0.5 * Float64(eps / x)); end return tmp end
function tmp_2 = code(x, eps) t_0 = x - sqrt(((x * x) - eps)); tmp = 0.0; if (t_0 <= -1e-154) tmp = t_0; else tmp = 0.5 * (eps / x); end tmp_2 = tmp; end
code[x_, eps_] := Block[{t$95$0 = N[(x - N[Sqrt[N[(N[(x * x), $MachinePrecision] - eps), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$0, -1e-154], t$95$0, N[(0.5 * N[(eps / x), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := x - \sqrt{x \cdot x - \varepsilon}\\
\mathbf{if}\;t\_0 \leq -1 \cdot 10^{-154}:\\
\;\;\;\;t\_0\\
\mathbf{else}:\\
\;\;\;\;0.5 \cdot \frac{\varepsilon}{x}\\
\end{array}
\end{array}
if (-.f64 x (sqrt.f64 (-.f64 (*.f64 x x) eps))) < -9.9999999999999997e-155Initial program 98.7%
if -9.9999999999999997e-155 < (-.f64 x (sqrt.f64 (-.f64 (*.f64 x x) eps))) Initial program 8.4%
Taylor expanded in x around inf
associate-*r/N/A
associate-*l/N/A
metadata-evalN/A
associate-*r/N/A
lower-*.f64N/A
associate-*r/N/A
metadata-evalN/A
lower-/.f6497.1
Applied rewrites97.1%
Applied rewrites97.4%
(FPCore (x eps) :precision binary64 (if (<= (- x (sqrt (- (* x x) eps))) -1e-154) (- x (sqrt (- eps))) (* 0.5 (/ eps x))))
double code(double x, double eps) {
double tmp;
if ((x - sqrt(((x * x) - eps))) <= -1e-154) {
tmp = x - sqrt(-eps);
} else {
tmp = 0.5 * (eps / x);
}
return tmp;
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
real(8) :: tmp
if ((x - sqrt(((x * x) - eps))) <= (-1d-154)) then
tmp = x - sqrt(-eps)
else
tmp = 0.5d0 * (eps / x)
end if
code = tmp
end function
public static double code(double x, double eps) {
double tmp;
if ((x - Math.sqrt(((x * x) - eps))) <= -1e-154) {
tmp = x - Math.sqrt(-eps);
} else {
tmp = 0.5 * (eps / x);
}
return tmp;
}
def code(x, eps): tmp = 0 if (x - math.sqrt(((x * x) - eps))) <= -1e-154: tmp = x - math.sqrt(-eps) else: tmp = 0.5 * (eps / x) return tmp
function code(x, eps) tmp = 0.0 if (Float64(x - sqrt(Float64(Float64(x * x) - eps))) <= -1e-154) tmp = Float64(x - sqrt(Float64(-eps))); else tmp = Float64(0.5 * Float64(eps / x)); end return tmp end
function tmp_2 = code(x, eps) tmp = 0.0; if ((x - sqrt(((x * x) - eps))) <= -1e-154) tmp = x - sqrt(-eps); else tmp = 0.5 * (eps / x); end tmp_2 = tmp; end
code[x_, eps_] := If[LessEqual[N[(x - N[Sqrt[N[(N[(x * x), $MachinePrecision] - eps), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], -1e-154], N[(x - N[Sqrt[(-eps)], $MachinePrecision]), $MachinePrecision], N[(0.5 * N[(eps / x), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x - \sqrt{x \cdot x - \varepsilon} \leq -1 \cdot 10^{-154}:\\
\;\;\;\;x - \sqrt{-\varepsilon}\\
\mathbf{else}:\\
\;\;\;\;0.5 \cdot \frac{\varepsilon}{x}\\
\end{array}
\end{array}
if (-.f64 x (sqrt.f64 (-.f64 (*.f64 x x) eps))) < -9.9999999999999997e-155Initial program 98.7%
Taylor expanded in x around 0
mul-1-negN/A
lower-neg.f6496.0
Applied rewrites96.0%
if -9.9999999999999997e-155 < (-.f64 x (sqrt.f64 (-.f64 (*.f64 x x) eps))) Initial program 8.4%
Taylor expanded in x around inf
associate-*r/N/A
associate-*l/N/A
metadata-evalN/A
associate-*r/N/A
lower-*.f64N/A
associate-*r/N/A
metadata-evalN/A
lower-/.f6497.1
Applied rewrites97.1%
Applied rewrites97.4%
(FPCore (x eps) :precision binary64 (/ eps (+ (sqrt (- (* x x) eps)) x)))
double code(double x, double eps) {
return eps / (sqrt(((x * x) - eps)) + x);
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
code = eps / (sqrt(((x * x) - eps)) + x)
end function
public static double code(double x, double eps) {
return eps / (Math.sqrt(((x * x) - eps)) + x);
}
def code(x, eps): return eps / (math.sqrt(((x * x) - eps)) + x)
function code(x, eps) return Float64(eps / Float64(sqrt(Float64(Float64(x * x) - eps)) + x)) end
function tmp = code(x, eps) tmp = eps / (sqrt(((x * x) - eps)) + x); end
code[x_, eps_] := N[(eps / N[(N[Sqrt[N[(N[(x * x), $MachinePrecision] - eps), $MachinePrecision]], $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{\varepsilon}{\sqrt{x \cdot x - \varepsilon} + x}
\end{array}
Initial program 60.6%
lift-sqrt.f64N/A
pow1/2N/A
metadata-evalN/A
metadata-evalN/A
pow-divN/A
metadata-evalN/A
unpow1N/A
pow1/2N/A
lift-sqrt.f64N/A
lower-/.f6460.2
Applied rewrites60.2%
lift--.f64N/A
lift-/.f64N/A
lift--.f64N/A
div-subN/A
associate--r-N/A
lower-+.f64N/A
lower--.f64N/A
lower-/.f64N/A
lower-/.f6465.3
Applied rewrites65.3%
Applied rewrites99.5%
lift-+.f64N/A
lift-/.f64N/A
lift-/.f64N/A
div-add-revN/A
lift--.f64N/A
+-inversesN/A
+-lft-identityN/A
lift-/.f6499.5
Applied rewrites99.5%
(FPCore (x eps) :precision binary64 (- x (sqrt (- eps))))
double code(double x, double eps) {
return x - sqrt(-eps);
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
code = x - sqrt(-eps)
end function
public static double code(double x, double eps) {
return x - Math.sqrt(-eps);
}
def code(x, eps): return x - math.sqrt(-eps)
function code(x, eps) return Float64(x - sqrt(Float64(-eps))) end
function tmp = code(x, eps) tmp = x - sqrt(-eps); end
code[x_, eps_] := N[(x - N[Sqrt[(-eps)], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x - \sqrt{-\varepsilon}
\end{array}
Initial program 60.6%
Taylor expanded in x around 0
mul-1-negN/A
lower-neg.f6456.0
Applied rewrites56.0%
(FPCore (x eps) :precision binary64 (- x (- x)))
double code(double x, double eps) {
return x - -x;
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
code = x - -x
end function
public static double code(double x, double eps) {
return x - -x;
}
def code(x, eps): return x - -x
function code(x, eps) return Float64(x - Float64(-x)) end
function tmp = code(x, eps) tmp = x - -x; end
code[x_, eps_] := N[(x - (-x)), $MachinePrecision]
\begin{array}{l}
\\
x - \left(-x\right)
\end{array}
Initial program 60.6%
Taylor expanded in x around -inf
mul-1-negN/A
lower-neg.f643.6
Applied rewrites3.6%
(FPCore (x eps) :precision binary64 (/ eps (+ x (sqrt (- (* x x) eps)))))
double code(double x, double eps) {
return eps / (x + sqrt(((x * x) - eps)));
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
code = eps / (x + sqrt(((x * x) - eps)))
end function
public static double code(double x, double eps) {
return eps / (x + Math.sqrt(((x * x) - eps)));
}
def code(x, eps): return eps / (x + math.sqrt(((x * x) - eps)))
function code(x, eps) return Float64(eps / Float64(x + sqrt(Float64(Float64(x * x) - eps)))) end
function tmp = code(x, eps) tmp = eps / (x + sqrt(((x * x) - eps))); end
code[x_, eps_] := N[(eps / N[(x + N[Sqrt[N[(N[(x * x), $MachinePrecision] - eps), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{\varepsilon}{x + \sqrt{x \cdot x - \varepsilon}}
\end{array}
herbie shell --seed 2024344
(FPCore (x eps)
:name "ENA, Section 1.4, Exercise 4d"
:precision binary64
:pre (and (and (<= 0.0 x) (<= x 1000000000.0)) (and (<= -1.0 eps) (<= eps 1.0)))
:alt
(! :herbie-platform default (/ eps (+ x (sqrt (- (* x x) eps)))))
(- x (sqrt (- (* x x) eps))))