\[{\left(x + 1\right)}^{\left(\frac{1}{3}\right)} - {x}^{\left(\frac{1}{3}\right)}\]
Test:
NMSE problem 3.3.4
Bits:
128 bits
Bits error versus x
Time: 16.0 s
Input Error: 29.3
Output Error: 29.3
Log:
Profile: 🕒
\(\sqrt[3]{{\left({\left(x + 1\right)}^{\left(\frac{1}{3}\right)}\right)}^3} - {x}^{\left(\frac{1}{3}\right)}\)
  1. Started with
    \[{\left(x + 1\right)}^{\left(\frac{1}{3}\right)} - {x}^{\left(\frac{1}{3}\right)}\]
    29.3
  2. Using strategy rm
    29.3
  3. Applied add-cbrt-cube to get
    \[\color{red}{{\left(x + 1\right)}^{\left(\frac{1}{3}\right)}} - {x}^{\left(\frac{1}{3}\right)} \leadsto \color{blue}{\sqrt[3]{{\left({\left(x + 1\right)}^{\left(\frac{1}{3}\right)}\right)}^3}} - {x}^{\left(\frac{1}{3}\right)}\]
    29.3

  4. Removed slow pow expressions

Original test:


(lambda ((x default))
  #:name "NMSE problem 3.3.4"
  (- (pow (+ x 1) (/ 1 3)) (pow x (/ 1 3))))