\left(x + y\right) \cdot \left(x - y\right)
{x}^{2} - {y}^{2}double f(double x, double y) {
double r102640 = x;
double r102641 = y;
double r102642 = r102640 + r102641;
double r102643 = r102640 - r102641;
double r102644 = r102642 * r102643;
return r102644;
}
double f(double x, double y) {
double r102645 = x;
double r102646 = 2.0;
double r102647 = pow(r102645, r102646);
double r102648 = y;
double r102649 = pow(r102648, r102646);
double r102650 = r102647 - r102649;
return r102650;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied pow10.0
Applied pow10.0
Applied pow-prod-down0.0
Simplified0.0
Final simplification0.0
herbie shell --seed 2019323
(FPCore (x y)
:name "Examples.Basics.BasicTests:f1 from sbv-4.4"
:precision binary64
(* (+ x y) (- x y)))