Average Error: 0.5 → 0.5
Time: 6.8s
Precision: 64
\[\frac{\cos th}{\sqrt{2}} \cdot \left(a1 \cdot a1\right) + \frac{\cos th}{\sqrt{2}} \cdot \left(a2 \cdot a2\right)\]
\[\cos th \cdot \frac{\mathsf{hypot}\left(a1, a2\right) \cdot \frac{\mathsf{hypot}\left(a1, a2\right)}{\sqrt{\sqrt{2}}}}{\sqrt{\sqrt{2}}}\]
\frac{\cos th}{\sqrt{2}} \cdot \left(a1 \cdot a1\right) + \frac{\cos th}{\sqrt{2}} \cdot \left(a2 \cdot a2\right)
\cos th \cdot \frac{\mathsf{hypot}\left(a1, a2\right) \cdot \frac{\mathsf{hypot}\left(a1, a2\right)}{\sqrt{\sqrt{2}}}}{\sqrt{\sqrt{2}}}
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) {
	return (cos(th) * ((hypot(a1, a2) * (hypot(a1, a2) / sqrt(sqrt(2.0)))) / sqrt(sqrt(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}{\frac{\cos th \cdot \mathsf{fma}\left(a1, a1, a2 \cdot a2\right)}{\sqrt{2}}}\]
  3. Using strategy rm
  4. Applied *-un-lft-identity0.5

    \[\leadsto \frac{\cos th \cdot \mathsf{fma}\left(a1, a1, a2 \cdot a2\right)}{\sqrt{\color{blue}{1 \cdot 2}}}\]
  5. Applied sqrt-prod0.5

    \[\leadsto \frac{\cos th \cdot \mathsf{fma}\left(a1, a1, a2 \cdot a2\right)}{\color{blue}{\sqrt{1} \cdot \sqrt{2}}}\]
  6. Applied times-frac0.5

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

    \[\leadsto \color{blue}{\cos th} \cdot \frac{\mathsf{fma}\left(a1, a1, a2 \cdot a2\right)}{\sqrt{2}}\]
  8. Using strategy rm
  9. Applied add-sqr-sqrt0.5

    \[\leadsto \cos th \cdot \frac{\mathsf{fma}\left(a1, a1, a2 \cdot a2\right)}{\sqrt{\color{blue}{\sqrt{2} \cdot \sqrt{2}}}}\]
  10. Applied sqrt-prod0.6

    \[\leadsto \cos th \cdot \frac{\mathsf{fma}\left(a1, a1, a2 \cdot a2\right)}{\color{blue}{\sqrt{\sqrt{2}} \cdot \sqrt{\sqrt{2}}}}\]
  11. Applied add-sqr-sqrt0.6

    \[\leadsto \cos th \cdot \frac{\color{blue}{\sqrt{\mathsf{fma}\left(a1, a1, a2 \cdot a2\right)} \cdot \sqrt{\mathsf{fma}\left(a1, a1, a2 \cdot a2\right)}}}{\sqrt{\sqrt{2}} \cdot \sqrt{\sqrt{2}}}\]
  12. Applied times-frac0.6

    \[\leadsto \cos th \cdot \color{blue}{\left(\frac{\sqrt{\mathsf{fma}\left(a1, a1, a2 \cdot a2\right)}}{\sqrt{\sqrt{2}}} \cdot \frac{\sqrt{\mathsf{fma}\left(a1, a1, a2 \cdot a2\right)}}{\sqrt{\sqrt{2}}}\right)}\]
  13. Simplified0.6

    \[\leadsto \cos th \cdot \left(\color{blue}{\frac{\mathsf{hypot}\left(a1, a2\right)}{\sqrt{\sqrt{2}}}} \cdot \frac{\sqrt{\mathsf{fma}\left(a1, a1, a2 \cdot a2\right)}}{\sqrt{\sqrt{2}}}\right)\]
  14. Simplified0.6

    \[\leadsto \cos th \cdot \left(\frac{\mathsf{hypot}\left(a1, a2\right)}{\sqrt{\sqrt{2}}} \cdot \color{blue}{\frac{\mathsf{hypot}\left(a1, a2\right)}{\sqrt{\sqrt{2}}}}\right)\]
  15. Using strategy rm
  16. Applied associate-*r/0.5

    \[\leadsto \cos th \cdot \color{blue}{\frac{\frac{\mathsf{hypot}\left(a1, a2\right)}{\sqrt{\sqrt{2}}} \cdot \mathsf{hypot}\left(a1, a2\right)}{\sqrt{\sqrt{2}}}}\]
  17. Simplified0.5

    \[\leadsto \cos th \cdot \frac{\color{blue}{\mathsf{hypot}\left(a1, a2\right) \cdot \frac{\mathsf{hypot}\left(a1, a2\right)}{\sqrt{\sqrt{2}}}}}{\sqrt{\sqrt{2}}}\]
  18. Final simplification0.5

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

Reproduce

herbie shell --seed 2020100 +o rules:numerics
(FPCore (a1 a2 th)
  :name "Migdal et al, Equation (64)"
  :precision binary64
  (+ (* (/ (cos th) (sqrt 2)) (* a1 a1)) (* (/ (cos th) (sqrt 2)) (* a2 a2))))