Average Error: 20.1 → 0.1
Time: 3.4s
Precision: binary64
\[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304}\]
\[\begin{array}{l} \mathbf{if}\;z \leq -3.2178271961500854 \cdot 10^{+37} \lor \neg \left(z \leq 744068.7366967004\right):\\ \;\;\;\;x + \left(y \cdot 0.0692910599291889 + \frac{y}{z} \cdot \left(0.07512208616047561 - \frac{0.4046220386999212}{z}\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x + y \cdot \frac{\left(z \cdot \left(z \cdot 0.0692910599291889\right) + z \cdot 0.4917317610505968\right) + 0.279195317918525}{z \cdot \left(z + 6.012459259764103\right) + 3.350343815022304}\\ \end{array}\]
x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304}
\begin{array}{l}
\mathbf{if}\;z \leq -3.2178271961500854 \cdot 10^{+37} \lor \neg \left(z \leq 744068.7366967004\right):\\
\;\;\;\;x + \left(y \cdot 0.0692910599291889 + \frac{y}{z} \cdot \left(0.07512208616047561 - \frac{0.4046220386999212}{z}\right)\right)\\

\mathbf{else}:\\
\;\;\;\;x + y \cdot \frac{\left(z \cdot \left(z \cdot 0.0692910599291889\right) + z \cdot 0.4917317610505968\right) + 0.279195317918525}{z \cdot \left(z + 6.012459259764103\right) + 3.350343815022304}\\

\end{array}
(FPCore (x y z)
 :precision binary64
 (+
  x
  (/
   (*
    y
    (+
     (* (+ (* z 0.0692910599291889) 0.4917317610505968) z)
     0.279195317918525))
   (+ (* (+ z 6.012459259764103) z) 3.350343815022304))))
(FPCore (x y z)
 :precision binary64
 (if (or (<= z -3.2178271961500854e+37) (not (<= z 744068.7366967004)))
   (+
    x
    (+
     (* y 0.0692910599291889)
     (* (/ y z) (- 0.07512208616047561 (/ 0.4046220386999212 z)))))
   (+
    x
    (*
     y
     (/
      (+
       (+ (* z (* z 0.0692910599291889)) (* z 0.4917317610505968))
       0.279195317918525)
      (+ (* z (+ z 6.012459259764103)) 3.350343815022304))))))
double code(double x, double y, double z) {
	return x + ((y * ((((z * 0.0692910599291889) + 0.4917317610505968) * z) + 0.279195317918525)) / (((z + 6.012459259764103) * z) + 3.350343815022304));
}
double code(double x, double y, double z) {
	double tmp;
	if ((z <= -3.2178271961500854e+37) || !(z <= 744068.7366967004)) {
		tmp = x + ((y * 0.0692910599291889) + ((y / z) * (0.07512208616047561 - (0.4046220386999212 / z))));
	} else {
		tmp = x + (y * ((((z * (z * 0.0692910599291889)) + (z * 0.4917317610505968)) + 0.279195317918525) / ((z * (z + 6.012459259764103)) + 3.350343815022304)));
	}
	return tmp;
}

Error

Bits error versus x

Bits error versus y

Bits error versus z

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Target

Original20.1
Target0.2
Herbie0.1
\[\begin{array}{l} \mathbf{if}\;z < -8120153.652456675:\\ \;\;\;\;\left(\frac{0.07512208616047561}{z} + 0.0692910599291889\right) \cdot y - \left(\frac{0.40462203869992125 \cdot y}{z \cdot z} - x\right)\\ \mathbf{elif}\;z < 6.576118972787377 \cdot 10^{+20}:\\ \;\;\;\;x + \left(y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)\right) \cdot \frac{1}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304}\\ \mathbf{else}:\\ \;\;\;\;\left(\frac{0.07512208616047561}{z} + 0.0692910599291889\right) \cdot y - \left(\frac{0.40462203869992125 \cdot y}{z \cdot z} - x\right)\\ \end{array}\]

Derivation

  1. Split input into 2 regimes
  2. if z < -3.21782719615008536e37 or 744068.736696700449 < z

    1. Initial program 42.7

      \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304}\]
    2. Taylor expanded around inf 0.0

      \[\leadsto x + \color{blue}{\left(\left(0.07512208616047561 \cdot \frac{y}{z} + 0.0692910599291889 \cdot y\right) - 0.4046220386999212 \cdot \frac{y}{{z}^{2}}\right)}\]
    3. Simplified0.0

      \[\leadsto x + \color{blue}{\left(y \cdot 0.0692910599291889 + \frac{y}{z} \cdot \left(0.07512208616047561 - \frac{0.4046220386999212}{z}\right)\right)}\]

    if -3.21782719615008536e37 < z < 744068.736696700449

    1. Initial program 0.2

      \[x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304}\]
    2. Using strategy rm
    3. Applied *-un-lft-identity_binary640.2

      \[\leadsto x + \frac{y \cdot \left(\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525\right)}{\color{blue}{1 \cdot \left(\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304\right)}}\]
    4. Applied times-frac_binary640.1

      \[\leadsto x + \color{blue}{\frac{y}{1} \cdot \frac{\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304}}\]
    5. Simplified0.1

      \[\leadsto x + \color{blue}{y} \cdot \frac{\left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) \cdot z + 0.279195317918525}{\left(z + 6.012459259764103\right) \cdot z + 3.350343815022304}\]
    6. Simplified0.1

      \[\leadsto x + y \cdot \color{blue}{\frac{z \cdot \left(z \cdot 0.0692910599291889 + 0.4917317610505968\right) + 0.279195317918525}{z \cdot \left(z + 6.012459259764103\right) + 3.350343815022304}}\]
    7. Using strategy rm
    8. Applied distribute-rgt-in_binary640.1

      \[\leadsto x + y \cdot \frac{\color{blue}{\left(\left(z \cdot 0.0692910599291889\right) \cdot z + 0.4917317610505968 \cdot z\right)} + 0.279195317918525}{z \cdot \left(z + 6.012459259764103\right) + 3.350343815022304}\]
    9. Simplified0.1

      \[\leadsto x + y \cdot \frac{\left(\color{blue}{z \cdot \left(z \cdot 0.0692910599291889\right)} + 0.4917317610505968 \cdot z\right) + 0.279195317918525}{z \cdot \left(z + 6.012459259764103\right) + 3.350343815022304}\]
    10. Simplified0.1

      \[\leadsto x + y \cdot \frac{\left(z \cdot \left(z \cdot 0.0692910599291889\right) + \color{blue}{z \cdot 0.4917317610505968}\right) + 0.279195317918525}{z \cdot \left(z + 6.012459259764103\right) + 3.350343815022304}\]
  3. Recombined 2 regimes into one program.
  4. Final simplification0.1

    \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq -3.2178271961500854 \cdot 10^{+37} \lor \neg \left(z \leq 744068.7366967004\right):\\ \;\;\;\;x + \left(y \cdot 0.0692910599291889 + \frac{y}{z} \cdot \left(0.07512208616047561 - \frac{0.4046220386999212}{z}\right)\right)\\ \mathbf{else}:\\ \;\;\;\;x + y \cdot \frac{\left(z \cdot \left(z \cdot 0.0692910599291889\right) + z \cdot 0.4917317610505968\right) + 0.279195317918525}{z \cdot \left(z + 6.012459259764103\right) + 3.350343815022304}\\ \end{array}\]

Reproduce

herbie shell --seed 2020232 
(FPCore (x y z)
  :name "Numeric.SpecFunctions:logGamma from math-functions-0.1.5.2, B"
  :precision binary64

  :herbie-target
  (if (< z -8120153.652456675) (- (* (+ (/ 0.07512208616047561 z) 0.0692910599291889) y) (- (/ (* 0.40462203869992125 y) (* z z)) x)) (if (< z 6.576118972787377e+20) (+ x (* (* y (+ (* (+ (* z 0.0692910599291889) 0.4917317610505968) z) 0.279195317918525)) (/ 1.0 (+ (* (+ z 6.012459259764103) z) 3.350343815022304)))) (- (* (+ (/ 0.07512208616047561 z) 0.0692910599291889) y) (- (/ (* 0.40462203869992125 y) (* z z)) x))))

  (+ x (/ (* y (+ (* (+ (* z 0.0692910599291889) 0.4917317610505968) z) 0.279195317918525)) (+ (* (+ z 6.012459259764103) z) 3.350343815022304))))