Average Error: 0.0 → 0.0
Time: 6.8s
Precision: 64
\[x - \frac{2.30753 + x \cdot 0.27061000000000002}{1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x}\]
\[x - \sqrt[3]{{\left(\left(2.30753 + x \cdot 0.27061000000000002\right) \cdot \frac{1}{1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x}\right)}^{3}}\]
x - \frac{2.30753 + x \cdot 0.27061000000000002}{1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x}
x - \sqrt[3]{{\left(\left(2.30753 + x \cdot 0.27061000000000002\right) \cdot \frac{1}{1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x}\right)}^{3}}
double f(double x) {
        double r92721 = x;
        double r92722 = 2.30753;
        double r92723 = 0.27061;
        double r92724 = r92721 * r92723;
        double r92725 = r92722 + r92724;
        double r92726 = 1.0;
        double r92727 = 0.99229;
        double r92728 = 0.04481;
        double r92729 = r92721 * r92728;
        double r92730 = r92727 + r92729;
        double r92731 = r92730 * r92721;
        double r92732 = r92726 + r92731;
        double r92733 = r92725 / r92732;
        double r92734 = r92721 - r92733;
        return r92734;
}

double f(double x) {
        double r92735 = x;
        double r92736 = 2.30753;
        double r92737 = 0.27061;
        double r92738 = r92735 * r92737;
        double r92739 = r92736 + r92738;
        double r92740 = 1.0;
        double r92741 = 1.0;
        double r92742 = 0.99229;
        double r92743 = 0.04481;
        double r92744 = r92735 * r92743;
        double r92745 = r92742 + r92744;
        double r92746 = r92745 * r92735;
        double r92747 = r92741 + r92746;
        double r92748 = r92740 / r92747;
        double r92749 = r92739 * r92748;
        double r92750 = 3.0;
        double r92751 = pow(r92749, r92750);
        double r92752 = cbrt(r92751);
        double r92753 = r92735 - r92752;
        return r92753;
}

Error

Bits error versus x

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 0.0

    \[x - \frac{2.30753 + x \cdot 0.27061000000000002}{1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x}\]
  2. Using strategy rm
  3. Applied add-cbrt-cube0.0

    \[\leadsto x - \frac{2.30753 + x \cdot 0.27061000000000002}{\color{blue}{\sqrt[3]{\left(\left(1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x\right) \cdot \left(1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x\right)\right) \cdot \left(1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x\right)}}}\]
  4. Applied add-cbrt-cube21.7

    \[\leadsto x - \frac{\color{blue}{\sqrt[3]{\left(\left(2.30753 + x \cdot 0.27061000000000002\right) \cdot \left(2.30753 + x \cdot 0.27061000000000002\right)\right) \cdot \left(2.30753 + x \cdot 0.27061000000000002\right)}}}{\sqrt[3]{\left(\left(1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x\right) \cdot \left(1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x\right)\right) \cdot \left(1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x\right)}}\]
  5. Applied cbrt-undiv21.7

    \[\leadsto x - \color{blue}{\sqrt[3]{\frac{\left(\left(2.30753 + x \cdot 0.27061000000000002\right) \cdot \left(2.30753 + x \cdot 0.27061000000000002\right)\right) \cdot \left(2.30753 + x \cdot 0.27061000000000002\right)}{\left(\left(1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x\right) \cdot \left(1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x\right)\right) \cdot \left(1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x\right)}}}\]
  6. Simplified0.0

    \[\leadsto x - \sqrt[3]{\color{blue}{{\left(\frac{2.30753 + x \cdot 0.27061000000000002}{1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x}\right)}^{3}}}\]
  7. Using strategy rm
  8. Applied div-inv0.0

    \[\leadsto x - \sqrt[3]{{\color{blue}{\left(\left(2.30753 + x \cdot 0.27061000000000002\right) \cdot \frac{1}{1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x}\right)}}^{3}}\]
  9. Final simplification0.0

    \[\leadsto x - \sqrt[3]{{\left(\left(2.30753 + x \cdot 0.27061000000000002\right) \cdot \frac{1}{1 + \left(0.992290000000000005 + x \cdot 0.044810000000000003\right) \cdot x}\right)}^{3}}\]

Reproduce

herbie shell --seed 2020047 
(FPCore (x)
  :name "Numeric.SpecFunctions:invIncompleteBetaWorker from math-functions-0.1.5.2, D"
  :precision binary64
  (- x (/ (+ 2.30753 (* x 0.27061)) (+ 1 (* (+ 0.99229 (* x 0.04481)) x)))))