Average Error: 0.0 → 0.0
Time: 4.1s
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 r147366 = x;
        double r147367 = 4.0;
        double r147368 = pow(r147366, r147367);
        double r147369 = y;
        double r147370 = pow(r147369, r147367);
        double r147371 = r147368 - r147370;
        return r147371;
}

double f(double x, double y) {
        double r147372 = x;
        double r147373 = 4.0;
        double r147374 = pow(r147372, r147373);
        double r147375 = y;
        double r147376 = pow(r147375, r147373);
        double r147377 = r147374 - r147376;
        return r147377;
}

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 2019163 
(FPCore (x y)
  :name "Radioactive exchange between two surfaces"
  (- (pow x 4) (pow y 4)))