\frac{e \cdot \sin v}{1 + e \cdot \cos v}\left(e \cdot \sin v\right) \cdot \left(\frac{1}{\sqrt[3]{{\left(e \cdot \cos v\right)}^{6}} + -1} \cdot \left(e \cdot \cos v + -1\right)\right)(FPCore (e v) :precision binary64 (/ (* e (sin v)) (+ 1.0 (* e (cos v)))))
(FPCore (e v) :precision binary64 (* (* e (sin v)) (* (/ 1.0 (+ (cbrt (pow (* e (cos v)) 6.0)) -1.0)) (+ (* e (cos v)) -1.0))))
double code(double e, double v) {
return (e * sin(v)) / (1.0 + (e * cos(v)));
}
double code(double e, double v) {
return (e * sin(v)) * ((1.0 / (cbrt(pow((e * cos(v)), 6.0)) + -1.0)) * ((e * cos(v)) + -1.0));
}



Bits error versus e



Bits error versus v
Results
Initial program 0.1
rmApplied div-inv_binary640.1
Simplified0.1
rmApplied flip-+_binary640.1
Applied associate-/r/_binary640.1
Simplified0.1
rmApplied add-cbrt-cube_binary640.1
Simplified0.1
Final simplification0.1
herbie shell --seed 2021118
(FPCore (e v)
:name "Trigonometry A"
:precision binary64
:pre (<= 0.0 e 1.0)
(/ (* e (sin v)) (+ 1.0 (* e (cos v)))))