Average Error: 63.2 → 63.2
Time: 50.9s
Precision: binary64
\[\frac{\tan \left({x}^{\left(\log y\right)}\right)}{\tan^{-1} \left({y}^{\left(\log x\right)}\right)}\]
\[\frac{\tan \left({x}^{\left(\log y\right)}\right)}{\tan^{-1} \left({y}^{\left(\log x\right)}\right)}\]
\frac{\tan \left({x}^{\left(\log y\right)}\right)}{\tan^{-1} \left({y}^{\left(\log x\right)}\right)}
\frac{\tan \left({x}^{\left(\log y\right)}\right)}{\tan^{-1} \left({y}^{\left(\log x\right)}\right)}
double code(double x, double y) {
	return ((double) (((double) tan(((double) pow(x, ((double) log(y)))))) / ((double) atan(((double) pow(y, ((double) log(x))))))));
}
double code(double x, double y) {
	return ((double) (((double) tan(((double) pow(x, ((double) log(y)))))) / ((double) atan(((double) pow(y, ((double) log(x))))))));
}

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 63.2

    \[\frac{\tan \left({x}^{\left(\log y\right)}\right)}{\tan^{-1} \left({y}^{\left(\log x\right)}\right)}\]
  2. Final simplification63.2

    \[\leadsto \frac{\tan \left({x}^{\left(\log y\right)}\right)}{\tan^{-1} \left({y}^{\left(\log x\right)}\right)}\]

Reproduce

herbie shell --seed 2020152 
(FPCore (x y)
  :name "(/ (tan (pow x (log y))) (atan (pow y (log x))))"
  :precision binary64
  (/ (tan (pow x (log y))) (atan (pow y (log x)))))