\[\frac{x \cdot e^{\left(y \cdot \log z + \left(t - 1.0\right) \cdot \log a\right) - b}}{y}\]
Test:
Numeric.SpecFunctions:incompleteBetaWorker from math-functions-0.1.5.2
Bits:
128 bits
Bits error versus x
Bits error versus y
Bits error versus z
Bits error versus t
Bits error versus a
Bits error versus b
Time: 27.8 s
Input Error: 51.2
Output Error: 0.3
Log:
Profile: 🕒
\(\begin{cases} {0}^2 & \text{when } t \le -4.8392898094319444 \cdot 10^{+23} \\ \frac{\left(x \cdot {z}^{y}\right) \cdot \frac{{a}^{t} \cdot {a}^{\left(-1.0\right)}}{e^{b}}}{y} & \text{when } t \le 3.474470972037018 \cdot 10^{-101} \\ {0}^2 & \text{otherwise} \end{cases}\)

    if t < -4.8392898094319444e+23 or 3.474470972037018e-101 < t

    1. Started with
      \[\frac{x \cdot e^{\left(y \cdot \log z + \left(t - 1.0\right) \cdot \log a\right) - b}}{y}\]
      55.5
    2. Applied simplify to get
      \[\color{red}{\frac{x \cdot e^{\left(y \cdot \log z + \left(t - 1.0\right) \cdot \log a\right) - b}}{y}} \leadsto \color{blue}{\left(\frac{x}{y} \cdot {z}^{y}\right) \cdot \frac{{a}^{\left(t - 1.0\right)}}{e^{b}}}\]
      52.6
    3. Using strategy rm
      52.6
    4. Applied add-sqr-sqrt to get
      \[\color{red}{\left(\frac{x}{y} \cdot {z}^{y}\right) \cdot \frac{{a}^{\left(t - 1.0\right)}}{e^{b}}} \leadsto \color{blue}{{\left(\sqrt{\left(\frac{x}{y} \cdot {z}^{y}\right) \cdot \frac{{a}^{\left(t - 1.0\right)}}{e^{b}}}\right)}^2}\]
      52.7
    5. Applied taylor to get
      \[{\left(\sqrt{\left(\frac{x}{y} \cdot {z}^{y}\right) \cdot \frac{{a}^{\left(t - 1.0\right)}}{e^{b}}}\right)}^2 \leadsto {0}^2\]
      0
    6. Taylor expanded around inf to get
      \[{\color{red}{0}}^2 \leadsto {\color{blue}{0}}^2\]
      0
    7. Applied simplify to get
      \[{0}^2 \leadsto {0}^2\]
      0

    8. Applied final simplification

    if -4.8392898094319444e+23 < t < 3.474470972037018e-101

    1. Started with
      \[\frac{x \cdot e^{\left(y \cdot \log z + \left(t - 1.0\right) \cdot \log a\right) - b}}{y}\]
      20.2
    2. Applied simplify to get
      \[\color{red}{\frac{x \cdot e^{\left(y \cdot \log z + \left(t - 1.0\right) \cdot \log a\right) - b}}{y}} \leadsto \color{blue}{\left(\frac{x}{y} \cdot {z}^{y}\right) \cdot \frac{{a}^{\left(t - 1.0\right)}}{e^{b}}}\]
      6.0
    3. Using strategy rm
      6.0
    4. Applied associate-*l/ to get
      \[\color{red}{\left(\frac{x}{y} \cdot {z}^{y}\right)} \cdot \frac{{a}^{\left(t - 1.0\right)}}{e^{b}} \leadsto \color{blue}{\frac{x \cdot {z}^{y}}{y}} \cdot \frac{{a}^{\left(t - 1.0\right)}}{e^{b}}\]
      6.0
    5. Applied associate-*l/ to get
      \[\color{red}{\frac{x \cdot {z}^{y}}{y} \cdot \frac{{a}^{\left(t - 1.0\right)}}{e^{b}}} \leadsto \color{blue}{\frac{\left(x \cdot {z}^{y}\right) \cdot \frac{{a}^{\left(t - 1.0\right)}}{e^{b}}}{y}}\]
      2.4
    6. Using strategy rm
      2.4
    7. Applied sub-neg to get
      \[\frac{\left(x \cdot {z}^{y}\right) \cdot \frac{{a}^{\color{red}{\left(t - 1.0\right)}}}{e^{b}}}{y} \leadsto \frac{\left(x \cdot {z}^{y}\right) \cdot \frac{{a}^{\color{blue}{\left(t + \left(-1.0\right)\right)}}}{e^{b}}}{y}\]
      2.4
    8. Applied unpow-prod-up to get
      \[\frac{\left(x \cdot {z}^{y}\right) \cdot \frac{\color{red}{{a}^{\left(t + \left(-1.0\right)\right)}}}{e^{b}}}{y} \leadsto \frac{\left(x \cdot {z}^{y}\right) \cdot \frac{\color{blue}{{a}^{t} \cdot {a}^{\left(-1.0\right)}}}{e^{b}}}{y}\]
      2.4

  1. Removed slow pow expressions

Original test:


(lambda ((x default) (y default) (z default) (t default) (a default) (b default))
  #:name "Numeric.SpecFunctions:incompleteBetaWorker from math-functions-0.1.5.2"
  (/ (* x (exp (- (+ (* y (log z)) (* (- t 1.0) (log a))) b))) y))