Average Error: 0.6 → 0.6
Time: 1.6s
Precision: binary64
\[{\left({x}^{0.5}\right)}^{3}\]
\[{\left({x}^{0.5}\right)}^{3}\]
{\left({x}^{0.5}\right)}^{3}
{\left({x}^{0.5}\right)}^{3}
double code(double x) {
	return ((double) pow(((double) pow(x, 0.5)), 3.0));
}
double code(double x) {
	return ((double) pow(((double) pow(x, 0.5)), 3.0));
}

Error

Bits error versus x

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 0.6

    \[{\left({x}^{0.5}\right)}^{3}\]
  2. Final simplification0.6

    \[\leadsto {\left({x}^{0.5}\right)}^{3}\]

Reproduce

herbie shell --seed 2020153 
(FPCore (x)
  :name "(pow (pow x 0.5) 3)"
  :precision binary64
  (pow (pow x 0.5) 3.0))