Average Error: 0 → 0
Time: 848.0ms
Precision: binary64
\[{exp}^{1} - x\]
\[{exp}^{1} - x\]
{exp}^{1} - x
{exp}^{1} - x
double code(double exp, double x) {
	return ((double) (((double) pow(exp, 1.0)) - x));
}
double code(double exp, double x) {
	return ((double) (((double) pow(exp, 1.0)) - x));
}

Error

Bits error versus exp

Bits error versus x

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 0

    \[{exp}^{1} - x\]
  2. Final simplification0

    \[\leadsto {exp}^{1} - x\]

Reproduce

herbie shell --seed 2020153 
(FPCore (exp x)
  :name "(- (pow exp 1) x)"
  :precision binary64
  (- (pow exp 1.0) x))