Average Error: 0.1 → 0.1
Time: 1.3s
Precision: binary64
\[e^{\frac{1}{\sqrt{x}}}\]
\[e^{\frac{1}{\sqrt{x}}}\]
e^{\frac{1}{\sqrt{x}}}
e^{\frac{1}{\sqrt{x}}}
double code(double x) {
	return ((double) exp(((double) (1.0 / ((double) sqrt(x))))));
}
double code(double x) {
	return ((double) exp(((double) (1.0 / ((double) sqrt(x))))));
}

Error

Bits error versus x

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 0.1

    \[e^{\frac{1}{\sqrt{x}}}\]
  2. Final simplification0.1

    \[\leadsto e^{\frac{1}{\sqrt{x}}}\]

Reproduce

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