\[{\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: 9.0 s
Input Error: 13.1
Output Error: 13.2
Log:
Profile: 🕒
\(e^{\log \left({\left(x + 1\right)}^{\left(\frac{1}{3}\right)} - {\left(\sqrt{{x}^{\left(\frac{1}{3}\right)}}\right)}^2\right)}\)
  1. Started with
    \[{\left(x + 1\right)}^{\left(\frac{1}{3}\right)} - {x}^{\left(\frac{1}{3}\right)}\]
    13.1
  2. Using strategy rm
    13.1
  3. Applied add-exp-log to get
    \[\color{red}{{\left(x + 1\right)}^{\left(\frac{1}{3}\right)} - {x}^{\left(\frac{1}{3}\right)}} \leadsto \color{blue}{e^{\log \left({\left(x + 1\right)}^{\left(\frac{1}{3}\right)} - {x}^{\left(\frac{1}{3}\right)}\right)}}\]
    13.1
  4. Using strategy rm
    13.1
  5. Applied add-sqr-sqrt to get
    \[e^{\log \left({\left(x + 1\right)}^{\left(\frac{1}{3}\right)} - \color{red}{{x}^{\left(\frac{1}{3}\right)}}\right)} \leadsto e^{\log \left({\left(x + 1\right)}^{\left(\frac{1}{3}\right)} - \color{blue}{{\left(\sqrt{{x}^{\left(\frac{1}{3}\right)}}\right)}^2}\right)}\]
    13.2

  6. Removed slow pow expressions

Original test:


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