\sqrt{1 - x \cdot x}\sqrt{\frac{{1}^{3} - {x}^{6}}{{x}^{4} + 1 \cdot \left(1 + x \cdot x\right)}}(FPCore (x) :precision binary64 (sqrt (- 1.0 (* x x))))
(FPCore (x) :precision binary64 (sqrt (/ (- (pow 1.0 3.0) (pow x 6.0)) (+ (pow x 4.0) (* 1.0 (+ 1.0 (* x x)))))))
double code(double x) {
return ((double) sqrt(((double) (1.0 - ((double) (x * x))))));
}
double code(double x) {
return ((double) sqrt((((double) (((double) pow(1.0, 3.0)) - ((double) pow(x, 6.0)))) / ((double) (((double) pow(x, 4.0)) + ((double) (1.0 * ((double) (1.0 + ((double) (x * x)))))))))));
}



Bits error versus x
Results
Initial program Error: 0.0 bits
rmApplied flip3--Error: 0.0 bits
SimplifiedError: 0.0 bits
SimplifiedError: 0.0 bits
Final simplificationError: 0.0 bits
herbie shell --seed 2020204
(FPCore (x)
:name "Diagrams.TwoD.Ellipse:ellipse from diagrams-lib-1.3.0.3"
:precision binary64
(sqrt (- 1.0 (* x x))))