Average Error: 58.2 → 58.2
Time: 8.3s
Precision: binary64
\[{\left(\log \left(x + 1\right)\right)}^{x}\]
\[{\left(\log \left(x + 1\right)\right)}^{x}\]
{\left(\log \left(x + 1\right)\right)}^{x}
{\left(\log \left(x + 1\right)\right)}^{x}
double code(double x) {
	return ((double) pow(((double) log(((double) (x + 1.0)))), x));
}
double code(double x) {
	return ((double) pow(((double) log(((double) (x + 1.0)))), x));
}

Error

Bits error versus x

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 58.2

    \[{\left(\log \left(x + 1\right)\right)}^{x}\]
  2. Final simplification58.2

    \[\leadsto {\left(\log \left(x + 1\right)\right)}^{x}\]

Reproduce

herbie shell --seed 2020152 
(FPCore (x)
  :name "(pow (log (+ x 1)) x)"
  :precision binary64
  (pow (log (+ x 1.0)) x))