Average Error: 8.0 → 0.2
Time: 6.8s
Precision: binary64
\[\left(x.re \cdot x.re - x.im \cdot x.im\right) \cdot x.re - \left(x.re \cdot x.im + x.im \cdot x.re\right) \cdot x.im \]
\[\begin{array}{l} t_0 := x.re \cdot x.im + x.re \cdot x.im\\ t_1 := x.im \cdot t_0\\ \mathsf{fma}\left(x.re + x.im, x.re \cdot \left(x.re - x.im\right), -t_1\right) + \mathsf{fma}\left(-x.im, t_0, t_1\right) \end{array} \]
\left(x.re \cdot x.re - x.im \cdot x.im\right) \cdot x.re - \left(x.re \cdot x.im + x.im \cdot x.re\right) \cdot x.im
\begin{array}{l}
t_0 := x.re \cdot x.im + x.re \cdot x.im\\
t_1 := x.im \cdot t_0\\
\mathsf{fma}\left(x.re + x.im, x.re \cdot \left(x.re - x.im\right), -t_1\right) + \mathsf{fma}\left(-x.im, t_0, t_1\right)
\end{array}
(FPCore (x.re x.im)
 :precision binary64
 (-
  (* (- (* x.re x.re) (* x.im x.im)) x.re)
  (* (+ (* x.re x.im) (* x.im x.re)) x.im)))
(FPCore (x.re x.im)
 :precision binary64
 (let* ((t_0 (+ (* x.re x.im) (* x.re x.im))) (t_1 (* x.im t_0)))
   (+
    (fma (+ x.re x.im) (* x.re (- x.re x.im)) (- t_1))
    (fma (- x.im) t_0 t_1))))
double code(double x_46_re, double x_46_im) {
	return (((x_46_re * x_46_re) - (x_46_im * x_46_im)) * x_46_re) - (((x_46_re * x_46_im) + (x_46_im * x_46_re)) * x_46_im);
}
double code(double x_46_re, double x_46_im) {
	double t_0 = (x_46_re * x_46_im) + (x_46_re * x_46_im);
	double t_1 = x_46_im * t_0;
	return fma((x_46_re + x_46_im), (x_46_re * (x_46_re - x_46_im)), -t_1) + fma(-x_46_im, t_0, t_1);
}

Error

Bits error versus x.re

Bits error versus x.im

Target

Original8.0
Target0.3
Herbie0.2
\[\left(x.re \cdot x.re\right) \cdot \left(x.re - x.im\right) + \left(x.re \cdot x.im\right) \cdot \left(x.re - 3 \cdot x.im\right) \]

Derivation

  1. Initial program 8.0

    \[\left(x.re \cdot x.re - x.im \cdot x.im\right) \cdot x.re - \left(x.re \cdot x.im + x.im \cdot x.re\right) \cdot x.im \]
  2. Applied difference-of-squares_binary648.0

    \[\leadsto \color{blue}{\left(\left(x.re + x.im\right) \cdot \left(x.re - x.im\right)\right)} \cdot x.re - \left(x.re \cdot x.im + x.im \cdot x.re\right) \cdot x.im \]
  3. Applied associate-*l*_binary640.3

    \[\leadsto \color{blue}{\left(x.re + x.im\right) \cdot \left(\left(x.re - x.im\right) \cdot x.re\right)} - \left(x.re \cdot x.im + x.im \cdot x.re\right) \cdot x.im \]
  4. Applied prod-diff_binary640.2

    \[\leadsto \color{blue}{\mathsf{fma}\left(x.re + x.im, \left(x.re - x.im\right) \cdot x.re, -x.im \cdot \left(x.re \cdot x.im + x.im \cdot x.re\right)\right) + \mathsf{fma}\left(-x.im, x.re \cdot x.im + x.im \cdot x.re, x.im \cdot \left(x.re \cdot x.im + x.im \cdot x.re\right)\right)} \]
  5. Final simplification0.2

    \[\leadsto \mathsf{fma}\left(x.re + x.im, x.re \cdot \left(x.re - x.im\right), -x.im \cdot \left(x.re \cdot x.im + x.re \cdot x.im\right)\right) + \mathsf{fma}\left(-x.im, x.re \cdot x.im + x.re \cdot x.im, x.im \cdot \left(x.re \cdot x.im + x.re \cdot x.im\right)\right) \]

Reproduce

herbie shell --seed 2021340 
(FPCore (x.re x.im)
  :name "math.cube on complex, real part"
  :precision binary64

  :herbie-target
  (+ (* (* x.re x.re) (- x.re x.im)) (* (* x.re x.im) (- x.re (* 3.0 x.im))))

  (- (* (- (* x.re x.re) (* x.im x.im)) x.re) (* (+ (* x.re x.im) (* x.im x.re)) x.im)))