Average Error: 0.0 → 0.0
Time: 7.2s
Precision: 64
\[{x}^{4} - {y}^{4}\]
\[{x}^{4} - {y}^{4}\]
{x}^{4} - {y}^{4}
{x}^{4} - {y}^{4}
double f(double x, double y) {
        double r34865 = x;
        double r34866 = 4.0;
        double r34867 = pow(r34865, r34866);
        double r34868 = y;
        double r34869 = pow(r34868, r34866);
        double r34870 = r34867 - r34869;
        return r34870;
}

double f(double x, double y) {
        double r34871 = x;
        double r34872 = 4.0;
        double r34873 = pow(r34871, r34872);
        double r34874 = y;
        double r34875 = pow(r34874, r34872);
        double r34876 = r34873 - r34875;
        return r34876;
}

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 0.0

    \[{x}^{4} - {y}^{4}\]
  2. Final simplification0.0

    \[\leadsto {x}^{4} - {y}^{4}\]

Reproduce

herbie shell --seed 2019350 
(FPCore (x y)
  :name "Radioactive exchange between two surfaces"
  :precision binary64
  (- (pow x 4) (pow y 4)))