?

Average Error: 0.3 → 0.3
Time: 7.7s
Precision: binary64
Cost: 19392

?

\[\log x - \log \log x \]
\[\log x - \log \log x \]
(FPCore (x) :precision binary64 (- (log x) (log (log x))))
(FPCore (x) :precision binary64 (- (log x) (log (log x))))
double code(double x) {
	return log(x) - log(log(x));
}
double code(double x) {
	return log(x) - log(log(x));
}
real(8) function code(x)
    real(8), intent (in) :: x
    code = log(x) - log(log(x))
end function
real(8) function code(x)
    real(8), intent (in) :: x
    code = log(x) - log(log(x))
end function
public static double code(double x) {
	return Math.log(x) - Math.log(Math.log(x));
}
public static double code(double x) {
	return Math.log(x) - Math.log(Math.log(x));
}
def code(x):
	return math.log(x) - math.log(math.log(x))
def code(x):
	return math.log(x) - math.log(math.log(x))
function code(x)
	return Float64(log(x) - log(log(x)))
end
function code(x)
	return Float64(log(x) - log(log(x)))
end
function tmp = code(x)
	tmp = log(x) - log(log(x));
end
function tmp = code(x)
	tmp = log(x) - log(log(x));
end
code[x_] := N[(N[Log[x], $MachinePrecision] - N[Log[N[Log[x], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
code[x_] := N[(N[Log[x], $MachinePrecision] - N[Log[N[Log[x], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\log x - \log \log x
\log x - \log \log x

Error?

Try it out?

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation?

  1. Initial program 0.3

    \[\log x - \log \log x \]
  2. Final simplification0.3

    \[\leadsto \log x - \log \log x \]

Reproduce?

herbie shell --seed 2023092 
(FPCore (x)
  :name "Jmat.Real.lambertw, estimator"
  :precision binary64
  (- (log x) (log (log x))))