Average Error: 0.2 → 0.2
Time: 4.5s
Precision: 64
\[\left(-x \cdot \frac{1}{\tan B}\right) + \frac{1}{\sin B}\]
\[1 \cdot \frac{1 - x \cdot \cos B}{\sin B}\]
\left(-x \cdot \frac{1}{\tan B}\right) + \frac{1}{\sin B}
1 \cdot \frac{1 - x \cdot \cos B}{\sin B}
double code(double B, double x) {
	return (-(x * (1.0 / tan(B))) + (1.0 / sin(B)));
}
double code(double B, double x) {
	return (1.0 * ((1.0 - (x * cos(B))) / sin(B)));
}

Error

Bits error versus B

Bits error versus x

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 0.2

    \[\left(-x \cdot \frac{1}{\tan B}\right) + \frac{1}{\sin B}\]
  2. Simplified0.2

    \[\leadsto \color{blue}{\mathsf{fma}\left(-x, \frac{1}{\tan B}, \frac{1}{\sin B}\right)}\]
  3. Taylor expanded around inf 0.2

    \[\leadsto \color{blue}{1 \cdot \frac{1}{\sin B} - 1 \cdot \frac{x \cdot \cos B}{\sin B}}\]
  4. Simplified0.2

    \[\leadsto \color{blue}{\frac{1}{\sin B} \cdot \left(1 - x \cdot \cos B\right)}\]
  5. Using strategy rm
  6. Applied div-inv0.2

    \[\leadsto \color{blue}{\left(1 \cdot \frac{1}{\sin B}\right)} \cdot \left(1 - x \cdot \cos B\right)\]
  7. Applied associate-*l*0.2

    \[\leadsto \color{blue}{1 \cdot \left(\frac{1}{\sin B} \cdot \left(1 - x \cdot \cos B\right)\right)}\]
  8. Simplified0.2

    \[\leadsto 1 \cdot \color{blue}{\frac{1 - x \cdot \cos B}{\sin B}}\]
  9. Final simplification0.2

    \[\leadsto 1 \cdot \frac{1 - x \cdot \cos B}{\sin B}\]

Reproduce

herbie shell --seed 2020100 +o rules:numerics
(FPCore (B x)
  :name "VandenBroeck and Keller, Equation (24)"
  :precision binary64
  (+ (- (* x (/ 1 (tan B)))) (/ 1 (sin B))))