\[x \cdot \left(x \cdot x\right) + x \cdot x\]
Test:
Expression 3, p15
Bits:
128 bits
Bits error versus x
Time: 7.0 s
Input Error: 0.0
Output Error: 0.0
Log:
Profile: 🕒
\((\left({x}^2\right) * x + \left({x}^2\right))_*\)
  1. Started with
    \[x \cdot \left(x \cdot x\right) + x \cdot x\]
    0.0
  2. Applied simplify to get
    \[\color{red}{x \cdot \left(x \cdot x\right) + x \cdot x} \leadsto \color{blue}{(\left({x}^2\right) * x + \left({x}^2\right))_*}\]
    0.0

Original test:


(lambda ((x default))
  #:name "Expression 3, p15"
  (+ (* x (* x x)) (* x x))
  #:target
  (* (* (+ 1.0 x) x) x))