Average Error: 14.9 → 14.9
Time: 1.0s
Precision: binary64
\[\frac{x}{\log \left(x \cdot y\right)}\]
\[\frac{x}{\log \left(x \cdot y\right)}\]
\frac{x}{\log \left(x \cdot y\right)}
\frac{x}{\log \left(x \cdot y\right)}
double code(double x, double y) {
	return ((double) (x / ((double) log(((double) (x * y))))));
}
double code(double x, double y) {
	return ((double) (x / ((double) log(((double) (x * y))))));
}

Error

Bits error versus x

Bits error versus y

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 14.9

    \[\frac{x}{\log \left(x \cdot y\right)}\]
  2. Final simplification14.9

    \[\leadsto \frac{x}{\log \left(x \cdot y\right)}\]

Reproduce

herbie shell --seed 2020153 
(FPCore (x y)
  :name "(/ x (log (* x y)))"
  :precision binary64
  (/ x (log (* x y))))