?

Average Accuracy: 99.8% → 99.8%
Time: 11.5s
Precision: binary64
Cost: 19520

?

\[x \cdot \cos y + z \cdot \sin y \]
\[\mathsf{fma}\left(\sin y, z, x \cdot \cos y\right) \]
(FPCore (x y z) :precision binary64 (+ (* x (cos y)) (* z (sin y))))
(FPCore (x y z) :precision binary64 (fma (sin y) z (* x (cos y))))
double code(double x, double y, double z) {
	return (x * cos(y)) + (z * sin(y));
}
double code(double x, double y, double z) {
	return fma(sin(y), z, (x * cos(y)));
}
function code(x, y, z)
	return Float64(Float64(x * cos(y)) + Float64(z * sin(y)))
end
function code(x, y, z)
	return fma(sin(y), z, Float64(x * cos(y)))
end
code[x_, y_, z_] := N[(N[(x * N[Cos[y], $MachinePrecision]), $MachinePrecision] + N[(z * N[Sin[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
code[x_, y_, z_] := N[(N[Sin[y], $MachinePrecision] * z + N[(x * N[Cos[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
x \cdot \cos y + z \cdot \sin y
\mathsf{fma}\left(\sin y, z, x \cdot \cos y\right)

Error?

Derivation?

  1. Initial program 99.8%

    \[x \cdot \cos y + z \cdot \sin y \]
  2. Applied egg-rr99.8%

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

    [Start]99.8

    \[ x \cdot \cos y + z \cdot \sin y \]

    +-commutative [=>]99.8

    \[ \color{blue}{z \cdot \sin y + x \cdot \cos y} \]

    *-commutative [=>]99.8

    \[ \color{blue}{\sin y \cdot z} + x \cdot \cos y \]

    fma-def [=>]99.8

    \[ \color{blue}{\mathsf{fma}\left(\sin y, z, x \cdot \cos y\right)} \]
  3. Final simplification99.8%

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

Alternatives

Alternative 1
Accuracy99.8%
Cost13248
\[\sin y \cdot z + x \cdot \cos y \]
Alternative 2
Accuracy74.4%
Cost7252
\[\begin{array}{l} t_0 := x \cdot \cos y\\ t_1 := \sin y \cdot z\\ \mathbf{if}\;y \leq -5.8 \cdot 10^{+225}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;y \leq -3.8 \cdot 10^{+192}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq -0.04:\\ \;\;\;\;t_0\\ \mathbf{elif}\;y \leq 0.0126:\\ \;\;\;\;\left(x + \left(x \cdot -0.5\right) \cdot \left(y \cdot y\right)\right) + y \cdot z\\ \mathbf{elif}\;y \leq 3.7 \cdot 10^{+130}:\\ \;\;\;\;t_1\\ \mathbf{else}:\\ \;\;\;\;t_0\\ \end{array} \]
Alternative 3
Accuracy86.0%
Cost6985
\[\begin{array}{l} \mathbf{if}\;x \leq -1.76 \cdot 10^{+14} \lor \neg \left(x \leq 5000000000\right):\\ \;\;\;\;x \cdot \cos y\\ \mathbf{else}:\\ \;\;\;\;x + \sin y \cdot z\\ \end{array} \]
Alternative 4
Accuracy74.9%
Cost6857
\[\begin{array}{l} \mathbf{if}\;y \leq -0.0034 \lor \neg \left(y \leq 0.049\right):\\ \;\;\;\;\sin y \cdot z\\ \mathbf{else}:\\ \;\;\;\;\left(x + \left(x \cdot -0.5\right) \cdot \left(y \cdot y\right)\right) + y \cdot z\\ \end{array} \]
Alternative 5
Accuracy41.1%
Cost456
\[\begin{array}{l} \mathbf{if}\;x \leq -4.6 \cdot 10^{-167}:\\ \;\;\;\;x\\ \mathbf{elif}\;x \leq 1.15 \cdot 10^{-154}:\\ \;\;\;\;y \cdot z\\ \mathbf{else}:\\ \;\;\;\;x\\ \end{array} \]
Alternative 6
Accuracy51.5%
Cost320
\[x + y \cdot z \]
Alternative 7
Accuracy38.4%
Cost64
\[x \]

Error

Reproduce?

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