Average Error: 0.1 → 0.1
Time: 5.7s
Precision: binary64
\[x \cdot \sin y + z \cdot \cos y \]
\[\mathsf{fma}\left(\cos y, z, \sin y \cdot x\right) \]
x \cdot \sin y + z \cdot \cos y
\mathsf{fma}\left(\cos y, z, \sin y \cdot x\right)
(FPCore (x y z) :precision binary64 (+ (* x (sin y)) (* z (cos y))))
(FPCore (x y z) :precision binary64 (fma (cos y) z (* (sin y) x)))
double code(double x, double y, double z) {
	return (x * sin(y)) + (z * cos(y));
}
double code(double x, double y, double z) {
	return fma(cos(y), z, (sin(y) * x));
}

Error

Bits error versus x

Bits error versus y

Bits error versus z

Derivation

  1. Initial program 0.1

    \[x \cdot \sin y + z \cdot \cos y \]
  2. Simplified0.1

    \[\leadsto \color{blue}{\mathsf{fma}\left(x, \sin y, z \cdot \cos y\right)} \]
  3. Taylor expanded in x around 0 0.1

    \[\leadsto \color{blue}{\sin y \cdot x + \cos y \cdot z} \]
  4. Simplified0.1

    \[\leadsto \color{blue}{\mathsf{fma}\left(\cos y, z, \sin y \cdot x\right)} \]
  5. Final simplification0.1

    \[\leadsto \mathsf{fma}\left(\cos y, z, \sin y \cdot x\right) \]

Reproduce

herbie shell --seed 2022020 
(FPCore (x y z)
  :name "Diagrams.ThreeD.Transform:aboutX from diagrams-lib-1.3.0.3, B"
  :precision binary64
  (+ (* x (sin y)) (* z (cos y))))