Average Error: 0.1 → 0.1
Time: 10.1s
Precision: 64
\[\left(\left(\left(\left(x \cdot \log y + z\right) + t\right) + a\right) + \left(b - 0.5\right) \cdot \log c\right) + y \cdot i\]
\[\left(\left(\left(\left(\left(x \cdot \log y + z\right) + t\right) + a\right) + \log \left(\sqrt[3]{c} \cdot \sqrt[3]{c}\right) \cdot \left(b - 0.5\right)\right) + \log \left(1 \cdot {c}^{\frac{1}{3}}\right) \cdot \left(b - 0.5\right)\right) + y \cdot i\]
\left(\left(\left(\left(x \cdot \log y + z\right) + t\right) + a\right) + \left(b - 0.5\right) \cdot \log c\right) + y \cdot i
\left(\left(\left(\left(\left(x \cdot \log y + z\right) + t\right) + a\right) + \log \left(\sqrt[3]{c} \cdot \sqrt[3]{c}\right) \cdot \left(b - 0.5\right)\right) + \log \left(1 \cdot {c}^{\frac{1}{3}}\right) \cdot \left(b - 0.5\right)\right) + y \cdot i
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
	return ((((((x * log(y)) + z) + t) + a) + ((b - 0.5) * log(c))) + (y * i));
}
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
	return (((((((x * log(y)) + z) + t) + a) + (log((cbrt(c) * cbrt(c))) * (b - 0.5))) + (log((1.0 * pow(c, 0.3333333333333333))) * (b - 0.5))) + (y * i));
}

Error

Bits error versus x

Bits error versus y

Bits error versus z

Bits error versus t

Bits error versus a

Bits error versus b

Bits error versus c

Bits error versus i

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 0.1

    \[\left(\left(\left(\left(x \cdot \log y + z\right) + t\right) + a\right) + \left(b - 0.5\right) \cdot \log c\right) + y \cdot i\]
  2. Using strategy rm
  3. Applied add-cube-cbrt0.1

    \[\leadsto \left(\left(\left(\left(x \cdot \log y + z\right) + t\right) + a\right) + \left(b - 0.5\right) \cdot \log \color{blue}{\left(\left(\sqrt[3]{c} \cdot \sqrt[3]{c}\right) \cdot \sqrt[3]{c}\right)}\right) + y \cdot i\]
  4. Applied log-prod0.1

    \[\leadsto \left(\left(\left(\left(x \cdot \log y + z\right) + t\right) + a\right) + \left(b - 0.5\right) \cdot \color{blue}{\left(\log \left(\sqrt[3]{c} \cdot \sqrt[3]{c}\right) + \log \left(\sqrt[3]{c}\right)\right)}\right) + y \cdot i\]
  5. Applied distribute-rgt-in0.1

    \[\leadsto \left(\left(\left(\left(x \cdot \log y + z\right) + t\right) + a\right) + \color{blue}{\left(\log \left(\sqrt[3]{c} \cdot \sqrt[3]{c}\right) \cdot \left(b - 0.5\right) + \log \left(\sqrt[3]{c}\right) \cdot \left(b - 0.5\right)\right)}\right) + y \cdot i\]
  6. Applied associate-+r+0.1

    \[\leadsto \color{blue}{\left(\left(\left(\left(\left(x \cdot \log y + z\right) + t\right) + a\right) + \log \left(\sqrt[3]{c} \cdot \sqrt[3]{c}\right) \cdot \left(b - 0.5\right)\right) + \log \left(\sqrt[3]{c}\right) \cdot \left(b - 0.5\right)\right)} + y \cdot i\]
  7. Using strategy rm
  8. Applied *-un-lft-identity0.1

    \[\leadsto \left(\left(\left(\left(\left(x \cdot \log y + z\right) + t\right) + a\right) + \log \left(\sqrt[3]{c} \cdot \sqrt[3]{c}\right) \cdot \left(b - 0.5\right)\right) + \log \left(\sqrt[3]{\color{blue}{1 \cdot c}}\right) \cdot \left(b - 0.5\right)\right) + y \cdot i\]
  9. Applied cbrt-prod0.1

    \[\leadsto \left(\left(\left(\left(\left(x \cdot \log y + z\right) + t\right) + a\right) + \log \left(\sqrt[3]{c} \cdot \sqrt[3]{c}\right) \cdot \left(b - 0.5\right)\right) + \log \color{blue}{\left(\sqrt[3]{1} \cdot \sqrt[3]{c}\right)} \cdot \left(b - 0.5\right)\right) + y \cdot i\]
  10. Simplified0.1

    \[\leadsto \left(\left(\left(\left(\left(x \cdot \log y + z\right) + t\right) + a\right) + \log \left(\sqrt[3]{c} \cdot \sqrt[3]{c}\right) \cdot \left(b - 0.5\right)\right) + \log \left(\color{blue}{1} \cdot \sqrt[3]{c}\right) \cdot \left(b - 0.5\right)\right) + y \cdot i\]
  11. Simplified0.1

    \[\leadsto \left(\left(\left(\left(\left(x \cdot \log y + z\right) + t\right) + a\right) + \log \left(\sqrt[3]{c} \cdot \sqrt[3]{c}\right) \cdot \left(b - 0.5\right)\right) + \log \left(1 \cdot \color{blue}{{c}^{\frac{1}{3}}}\right) \cdot \left(b - 0.5\right)\right) + y \cdot i\]
  12. Final simplification0.1

    \[\leadsto \left(\left(\left(\left(\left(x \cdot \log y + z\right) + t\right) + a\right) + \log \left(\sqrt[3]{c} \cdot \sqrt[3]{c}\right) \cdot \left(b - 0.5\right)\right) + \log \left(1 \cdot {c}^{\frac{1}{3}}\right) \cdot \left(b - 0.5\right)\right) + y \cdot i\]

Reproduce

herbie shell --seed 2020058 
(FPCore (x y z t a b c i)
  :name "Numeric.SpecFunctions:logBeta from math-functions-0.1.5.2, B"
  :precision binary64
  (+ (+ (+ (+ (+ (* x (log y)) z) t) a) (* (- b 0.5) (log c))) (* y i)))