Average Error: 0.0 → 0.0
Time: 5.2s
Precision: binary64
Cost: 6720
\[x + y \cdot \left(z - x\right) \]
\[\mathsf{fma}\left(y, z - x, x\right) \]
(FPCore (x y z) :precision binary64 (+ x (* y (- z x))))
(FPCore (x y z) :precision binary64 (fma y (- z x) x))
double code(double x, double y, double z) {
	return x + (y * (z - x));
}
double code(double x, double y, double z) {
	return fma(y, (z - x), x);
}
function code(x, y, z)
	return Float64(x + Float64(y * Float64(z - x)))
end
function code(x, y, z)
	return fma(y, Float64(z - x), x)
end
code[x_, y_, z_] := N[(x + N[(y * N[(z - x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
code[x_, y_, z_] := N[(y * N[(z - x), $MachinePrecision] + x), $MachinePrecision]
x + y \cdot \left(z - x\right)
\mathsf{fma}\left(y, z - x, x\right)

Error

Derivation

  1. Initial program 0.0

    \[x + y \cdot \left(z - x\right) \]
  2. Simplified0.0

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

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

Alternatives

Alternative 1
Error7.6
Cost848
\[\begin{array}{l} t_0 := x + y \cdot z\\ t_1 := x \cdot \left(1 - y\right)\\ \mathbf{if}\;z \leq -3.3592749841645476 \cdot 10^{-28}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;z \leq -9.855772828028339 \cdot 10^{-82}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;z \leq -2.502741836063844 \cdot 10^{-138}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;z \leq 1.0343945609214596 \cdot 10^{-132}:\\ \;\;\;\;t_1\\ \mathbf{else}:\\ \;\;\;\;t_0\\ \end{array} \]
Alternative 2
Error24.6
Cost652
\[\begin{array}{l} t_0 := x \cdot \left(-y\right)\\ \mathbf{if}\;y \leq -138842662116.10696:\\ \;\;\;\;t_0\\ \mathbf{elif}\;y \leq 6.201687979891976 \cdot 10^{-82}:\\ \;\;\;\;x\\ \mathbf{elif}\;y \leq 5.137485141644613 \cdot 10^{+21}:\\ \;\;\;\;y \cdot z\\ \mathbf{else}:\\ \;\;\;\;t_0\\ \end{array} \]
Alternative 3
Error11.5
Cost584
\[\begin{array}{l} t_0 := x \cdot \left(-y\right)\\ \mathbf{if}\;y \leq -4.3 \cdot 10^{+32}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;y \leq 5.137485141644613 \cdot 10^{+21}:\\ \;\;\;\;x + y \cdot z\\ \mathbf{else}:\\ \;\;\;\;t_0\\ \end{array} \]
Alternative 4
Error0.9
Cost584
\[\begin{array}{l} t_0 := y \cdot \left(z - x\right)\\ \mathbf{if}\;y \leq -138842662116.10696:\\ \;\;\;\;t_0\\ \mathbf{elif}\;y \leq 0.004803542289403861:\\ \;\;\;\;x + y \cdot z\\ \mathbf{else}:\\ \;\;\;\;t_0\\ \end{array} \]
Alternative 5
Error25.1
Cost456
\[\begin{array}{l} \mathbf{if}\;x \leq -1.6283931163812133 \cdot 10^{-17}:\\ \;\;\;\;x\\ \mathbf{elif}\;x \leq 2.1466825154183923 \cdot 10^{-117}:\\ \;\;\;\;y \cdot z\\ \mathbf{else}:\\ \;\;\;\;x\\ \end{array} \]
Alternative 6
Error0.0
Cost448
\[x + y \cdot \left(z - x\right) \]
Alternative 7
Error34.9
Cost64
\[x \]

Error

Reproduce

herbie shell --seed 2022294 
(FPCore (x y z)
  :name "SynthBasics:oscSampleBasedAux from YampaSynth-0.2"
  :precision binary64
  (+ x (* y (- z x))))