Initial program 0.0
\[0.5 \cdot \left(x \cdot x - y\right)
\]
Taylor expanded in x around 0 0.0
\[\leadsto 0.5 \cdot \color{blue}{\left({x}^{2} + -1 \cdot y\right)}
\]
Simplified0.0
\[\leadsto 0.5 \cdot \color{blue}{\mathsf{fma}\left(x, x, -y\right)}
\]
Proof
(fma.f64 x x (neg.f64 y)): 0 points increase in error, 0 points decrease in error
(fma.f64 x x (Rewrite<= mul-1-neg_binary64 (*.f64 -1 y))): 0 points increase in error, 0 points decrease in error
(Rewrite<= fma-def_binary64 (+.f64 (*.f64 x x) (*.f64 -1 y))): 1 points increase in error, 1 points decrease in error
(+.f64 (Rewrite<= unpow2_binary64 (pow.f64 x 2)) (*.f64 -1 y)): 0 points increase in error, 0 points decrease in error
Final simplification0.0
\[\leadsto 0.5 \cdot \mathsf{fma}\left(x, x, -y\right)
\]