Average Error: 0.5 → 0.4
Time: 10.3s
Precision: binary64
\[\frac{\cos th}{\sqrt{2}} \cdot \left(a1 \cdot a1\right) + \frac{\cos th}{\sqrt{2}} \cdot \left(a2 \cdot a2\right) \]
\[\begin{array}{l} t_1 := a2 \cdot a2 + a1 \cdot a1\\ \left(\cos th \cdot \sqrt{t_1}\right) \cdot \sqrt{\frac{t_1}{2}} \end{array} \]
\frac{\cos th}{\sqrt{2}} \cdot \left(a1 \cdot a1\right) + \frac{\cos th}{\sqrt{2}} \cdot \left(a2 \cdot a2\right)
\begin{array}{l}
t_1 := a2 \cdot a2 + a1 \cdot a1\\
\left(\cos th \cdot \sqrt{t_1}\right) \cdot \sqrt{\frac{t_1}{2}}
\end{array}
(FPCore (a1 a2 th)
 :precision binary64
 (+
  (* (/ (cos th) (sqrt 2.0)) (* a1 a1))
  (* (/ (cos th) (sqrt 2.0)) (* a2 a2))))
(FPCore (a1 a2 th)
 :precision binary64
 (let* ((t_1 (+ (* a2 a2) (* a1 a1))))
   (* (* (cos th) (sqrt t_1)) (sqrt (/ t_1 2.0)))))
double code(double a1, double a2, double th) {
	return ((cos(th) / sqrt(2.0)) * (a1 * a1)) + ((cos(th) / sqrt(2.0)) * (a2 * a2));
}
double code(double a1, double a2, double th) {
	double t_1 = (a2 * a2) + (a1 * a1);
	return (cos(th) * sqrt(t_1)) * sqrt(t_1 / 2.0);
}

Error

Bits error versus a1

Bits error versus a2

Bits error versus th

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 0.5

    \[\frac{\cos th}{\sqrt{2}} \cdot \left(a1 \cdot a1\right) + \frac{\cos th}{\sqrt{2}} \cdot \left(a2 \cdot a2\right) \]
  2. Simplified0.5

    \[\leadsto \color{blue}{\cos th \cdot \frac{a1 \cdot a1 + a2 \cdot a2}{\sqrt{2}}} \]
  3. Using strategy rm
  4. Applied *-un-lft-identity_binary640.5

    \[\leadsto \cos th \cdot \frac{a1 \cdot a1 + a2 \cdot a2}{\sqrt{\color{blue}{1 \cdot 2}}} \]
  5. Applied sqrt-prod_binary640.5

    \[\leadsto \cos th \cdot \frac{a1 \cdot a1 + a2 \cdot a2}{\color{blue}{\sqrt{1} \cdot \sqrt{2}}} \]
  6. Applied add-sqr-sqrt_binary640.5

    \[\leadsto \cos th \cdot \frac{\color{blue}{\sqrt{a1 \cdot a1 + a2 \cdot a2} \cdot \sqrt{a1 \cdot a1 + a2 \cdot a2}}}{\sqrt{1} \cdot \sqrt{2}} \]
  7. Applied times-frac_binary640.5

    \[\leadsto \cos th \cdot \color{blue}{\left(\frac{\sqrt{a1 \cdot a1 + a2 \cdot a2}}{\sqrt{1}} \cdot \frac{\sqrt{a1 \cdot a1 + a2 \cdot a2}}{\sqrt{2}}\right)} \]
  8. Applied associate-*r*_binary640.5

    \[\leadsto \color{blue}{\left(\cos th \cdot \frac{\sqrt{a1 \cdot a1 + a2 \cdot a2}}{\sqrt{1}}\right) \cdot \frac{\sqrt{a1 \cdot a1 + a2 \cdot a2}}{\sqrt{2}}} \]
  9. Simplified0.5

    \[\leadsto \color{blue}{\left(\cos th \cdot \sqrt{a2 \cdot a2 + a1 \cdot a1}\right)} \cdot \frac{\sqrt{a1 \cdot a1 + a2 \cdot a2}}{\sqrt{2}} \]
  10. Using strategy rm
  11. Applied sqrt-undiv_binary640.4

    \[\leadsto \left(\cos th \cdot \sqrt{a2 \cdot a2 + a1 \cdot a1}\right) \cdot \color{blue}{\sqrt{\frac{a1 \cdot a1 + a2 \cdot a2}{2}}} \]
  12. Final simplification0.4

    \[\leadsto \left(\cos th \cdot \sqrt{a2 \cdot a2 + a1 \cdot a1}\right) \cdot \sqrt{\frac{a2 \cdot a2 + a1 \cdot a1}{2}} \]

Reproduce

herbie shell --seed 2021190 
(FPCore (a1 a2 th)
  :name "Migdal et al, Equation (64)"
  :precision binary64
  (+ (* (/ (cos th) (sqrt 2.0)) (* a1 a1)) (* (/ (cos th) (sqrt 2.0)) (* a2 a2))))