Average Error: 5.7 → 5.7
Time: 2.4s
Precision: binary64
\[e^{\log x + \log y}\]
\[e^{\log x + \log y}\]
e^{\log x + \log y}
e^{\log x + \log y}
double code(double x, double y) {
	return ((double) exp(((double) (((double) log(x)) + ((double) log(y))))));
}
double code(double x, double y) {
	return ((double) exp(((double) (((double) log(x)) + ((double) log(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 5.7

    \[e^{\log x + \log y}\]
  2. Final simplification5.7

    \[\leadsto e^{\log x + \log y}\]

Reproduce

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