\[\left(x \cdot x\right) \cdot x\]
Test:
math.cube on real
Bits:
128 bits
Bits error versus x
Time: 1.3 s
Input Error: 0.1
Output Error: 0
Log:
Profile: 🕒
\({x}^{3}\)
  1. Started with
    \[\left(x \cdot x\right) \cdot x\]
    0.1
  2. Applied simplify to get
    \[\color{red}{\left(x \cdot x\right) \cdot x} \leadsto \color{blue}{{x}^3}\]
    0.1
  3. Using strategy rm
    0.1
  4. Applied pow3 to get
    \[\color{red}{{x}^3} \leadsto \color{blue}{{x}^{3}}\]
    0

Original test:


(lambda ((x default))
  #:name "math.cube on real"
  (* (* x x) x)
  #:target
  (pow x 3))