Average Error: 0.1 → 0.1
Time: 11.2s
Precision: binary64
Cost: 19520
\[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));
}
function code(x, y, z)
	return Float64(Float64(x * sin(y)) + Float64(z * cos(y)))
end
function code(x, y, z)
	return fma(cos(y), z, Float64(sin(y) * x))
end
code[x_, y_, z_] := N[(N[(x * N[Sin[y], $MachinePrecision]), $MachinePrecision] + N[(z * N[Cos[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
code[x_, y_, z_] := N[(N[Cos[y], $MachinePrecision] * z + N[(N[Sin[y], $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision]
x \cdot \sin y + z \cdot \cos y
\mathsf{fma}\left(\cos y, z, \sin y \cdot x\right)

Error

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)} \]
    Proof
    (fma.f64 x (sin.f64 y) (*.f64 z (cos.f64 y))): 0 points increase in error, 0 points decrease in error
    (Rewrite<= fma-def_binary64 (+.f64 (*.f64 x (sin.f64 y)) (*.f64 z (cos.f64 y)))): 1 points increase in error, 0 points decrease in error
  3. Taylor expanded in x around 0 0.1

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

    \[\leadsto \color{blue}{\mathsf{fma}\left(\cos y, z, \sin y \cdot x\right)} \]
    Proof
    (fma.f64 (cos.f64 y) z (*.f64 (sin.f64 y) x)): 0 points increase in error, 0 points decrease in error
    (Rewrite<= fma-def_binary64 (+.f64 (*.f64 (cos.f64 y) z) (*.f64 (sin.f64 y) x))): 1 points increase in error, 0 points decrease in error
  5. Final simplification0.1

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

Alternatives

Alternative 1
Error0.1
Cost13248
\[\sin y \cdot x + \cos y \cdot z \]
Alternative 2
Error16.0
Cost7252
\[\begin{array}{l} t_0 := \cos y \cdot z\\ t_1 := \sin y \cdot x\\ \mathbf{if}\;y \leq -604415900.6623467:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq 9.761974989807316 \cdot 10^{-5}:\\ \;\;\;\;\mathsf{fma}\left(y, x, z\right)\\ \mathbf{elif}\;y \leq 2.5221648677339053 \cdot 10^{+61}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq 4.730321874199684 \cdot 10^{+105}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;y \leq 6.937114074321918 \cdot 10^{+167}:\\ \;\;\;\;t_1\\ \mathbf{else}:\\ \;\;\;\;t_0\\ \end{array} \]
Alternative 3
Error16.9
Cost6856
\[\begin{array}{l} t_0 := \sin y \cdot x\\ \mathbf{if}\;y \leq -604415900.6623467:\\ \;\;\;\;t_0\\ \mathbf{elif}\;y \leq 9.761974989807316 \cdot 10^{-5}:\\ \;\;\;\;z + y \cdot x\\ \mathbf{else}:\\ \;\;\;\;t_0\\ \end{array} \]
Alternative 4
Error16.9
Cost6856
\[\begin{array}{l} t_0 := \sin y \cdot x\\ \mathbf{if}\;y \leq -604415900.6623467:\\ \;\;\;\;t_0\\ \mathbf{elif}\;y \leq 9.761974989807316 \cdot 10^{-5}:\\ \;\;\;\;\mathsf{fma}\left(y, x, z\right)\\ \mathbf{else}:\\ \;\;\;\;t_0\\ \end{array} \]
Alternative 5
Error37.9
Cost456
\[\begin{array}{l} \mathbf{if}\;x \leq -2.211277618029156 \cdot 10^{+144}:\\ \;\;\;\;y \cdot x\\ \mathbf{elif}\;x \leq 5.1016843920844816 \cdot 10^{+70}:\\ \;\;\;\;z\\ \mathbf{else}:\\ \;\;\;\;y \cdot x\\ \end{array} \]
Alternative 6
Error30.8
Cost320
\[z + y \cdot x \]
Alternative 7
Error39.1
Cost64
\[z \]

Error

Reproduce

herbie shell --seed 2022316 
(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))))