Average Error: 11.9 → 11.9
Time: 724.0ms
Precision: binary64
\[\frac{y}{x \cdot y - z \cdot z}\]
\[\frac{y}{x \cdot y - z \cdot z}\]
\frac{y}{x \cdot y - z \cdot z}
\frac{y}{x \cdot y - z \cdot z}
double code(double y, double x, double z) {
	return ((double) (y / ((double) (((double) (x * y)) - ((double) (z * z))))));
}
double code(double y, double x, double z) {
	return ((double) (y / ((double) (((double) (x * y)) - ((double) (z * z))))));
}

Error

Bits error versus y

Bits error versus x

Bits error versus z

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 11.9

    \[\frac{y}{x \cdot y - z \cdot z}\]
  2. Final simplification11.9

    \[\leadsto \frac{y}{x \cdot y - z \cdot z}\]

Reproduce

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