?

Average Accuracy: 99.9% → 100.0%
Time: 7.1s
Precision: binary64
Cost: 6848

?

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

Error?

Target

Original99.9%
Target99.9%
Herbie100.0%
\[\left(x + 5\right) \cdot z + x \cdot y \]

Derivation?

  1. Initial program 99.9%

    \[x \cdot \left(y + z\right) + z \cdot 5 \]
  2. Simplified99.9%

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

    [Start]99.9

    \[ x \cdot \left(y + z\right) + z \cdot 5 \]

    distribute-rgt-in [=>]99.9

    \[ \color{blue}{\left(y \cdot x + z \cdot x\right)} + z \cdot 5 \]

    associate-+l+ [=>]99.9

    \[ \color{blue}{y \cdot x + \left(z \cdot x + z \cdot 5\right)} \]

    *-commutative [=>]99.9

    \[ \color{blue}{x \cdot y} + \left(z \cdot x + z \cdot 5\right) \]

    fma-def [=>]99.9

    \[ \color{blue}{\mathsf{fma}\left(x, y, z \cdot x + z \cdot 5\right)} \]

    distribute-lft-out [=>]99.9

    \[ \mathsf{fma}\left(x, y, \color{blue}{z \cdot \left(x + 5\right)}\right) \]
  3. Taylor expanded in x around 0 99.9%

    \[\leadsto \color{blue}{\left(y + z\right) \cdot x + 5 \cdot z} \]
  4. Simplified100.0%

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

    [Start]99.9

    \[ \left(y + z\right) \cdot x + 5 \cdot z \]

    +-commutative [=>]99.9

    \[ \color{blue}{5 \cdot z + \left(y + z\right) \cdot x} \]

    *-commutative [=>]99.9

    \[ \color{blue}{z \cdot 5} + \left(y + z\right) \cdot x \]

    *-commutative [<=]99.9

    \[ z \cdot 5 + \color{blue}{x \cdot \left(y + z\right)} \]

    fma-def [=>]100.0

    \[ \color{blue}{\mathsf{fma}\left(z, 5, x \cdot \left(y + z\right)\right)} \]

    +-commutative [=>]100.0

    \[ \mathsf{fma}\left(z, 5, x \cdot \color{blue}{\left(z + y\right)}\right) \]
  5. Final simplification100.0%

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

Alternatives

Alternative 1
Accuracy99.9%
Cost6848
\[\mathsf{fma}\left(x, y, z \cdot \left(5 + x\right)\right) \]
Alternative 2
Accuracy74.2%
Cost850
\[\begin{array}{l} \mathbf{if}\;z \leq -2.6 \cdot 10^{-122} \lor \neg \left(z \leq 1.9 \cdot 10^{-168}\right) \land \left(z \leq 2.4 \cdot 10^{-54} \lor \neg \left(z \leq 8.6 \cdot 10^{-26}\right)\right):\\ \;\;\;\;z \cdot \left(5 + x\right)\\ \mathbf{else}:\\ \;\;\;\;x \cdot y\\ \end{array} \]
Alternative 3
Accuracy98.6%
Cost713
\[\begin{array}{l} \mathbf{if}\;x \leq -5 \lor \neg \left(x \leq 0.0135\right):\\ \;\;\;\;x \cdot \left(z + y\right)\\ \mathbf{else}:\\ \;\;\;\;z \cdot 5 + x \cdot y\\ \end{array} \]
Alternative 4
Accuracy62.7%
Cost588
\[\begin{array}{l} \mathbf{if}\;x \leq -5:\\ \;\;\;\;z \cdot x\\ \mathbf{elif}\;x \leq 5.6 \cdot 10^{-38}:\\ \;\;\;\;z \cdot 5\\ \mathbf{elif}\;x \leq 2400000000000:\\ \;\;\;\;x \cdot y\\ \mathbf{else}:\\ \;\;\;\;z \cdot x\\ \end{array} \]
Alternative 5
Accuracy79.3%
Cost585
\[\begin{array}{l} \mathbf{if}\;z \leq -1.45 \cdot 10^{-118} \lor \neg \left(z \leq 8.5 \cdot 10^{-16}\right):\\ \;\;\;\;z \cdot \left(5 + x\right)\\ \mathbf{else}:\\ \;\;\;\;x \cdot \left(z + y\right)\\ \end{array} \]
Alternative 6
Accuracy99.9%
Cost576
\[z \cdot 5 + x \cdot \left(z + y\right) \]
Alternative 7
Accuracy61.2%
Cost456
\[\begin{array}{l} \mathbf{if}\;z \leq -2.35 \cdot 10^{-119}:\\ \;\;\;\;z \cdot 5\\ \mathbf{elif}\;z \leq 8.5 \cdot 10^{-16}:\\ \;\;\;\;x \cdot y\\ \mathbf{else}:\\ \;\;\;\;z \cdot 5\\ \end{array} \]
Alternative 8
Accuracy45.3%
Cost192
\[z \cdot 5 \]

Error

Reproduce?

herbie shell --seed 2023137 
(FPCore (x y z)
  :name "Graphics.Rendering.Plot.Render.Plot.Legend:renderLegendOutside from plot-0.2.3.4, C"
  :precision binary64

  :herbie-target
  (+ (* (+ x 5.0) z) (* x y))

  (+ (* x (+ y z)) (* z 5.0)))