Average Error: 0.4 → 0.2
Time: 11.8s
Precision: binary64
Cost: 32512
\[\left(0 \leq u1 \land u1 \leq 1\right) \land \left(0 \leq u2 \land u2 \leq 1\right)\]
\[\left(\frac{1}{6} \cdot {\left(-2 \cdot \log u1\right)}^{0.5}\right) \cdot \cos \left(\left(2 \cdot \pi\right) \cdot u2\right) + 0.5 \]
\[\mathsf{fma}\left(\sqrt{\log u1 \cdot -0.05555555555555555}, \cos \left(\pi \cdot \left(2 \cdot u2\right)\right), 0.5\right) \]
(FPCore (u1 u2)
 :precision binary64
 (+
  (* (* (/ 1.0 6.0) (pow (* -2.0 (log u1)) 0.5)) (cos (* (* 2.0 PI) u2)))
  0.5))
(FPCore (u1 u2)
 :precision binary64
 (fma (sqrt (* (log u1) -0.05555555555555555)) (cos (* PI (* 2.0 u2))) 0.5))
double code(double u1, double u2) {
	return (((1.0 / 6.0) * pow((-2.0 * log(u1)), 0.5)) * cos(((2.0 * ((double) M_PI)) * u2))) + 0.5;
}
double code(double u1, double u2) {
	return fma(sqrt((log(u1) * -0.05555555555555555)), cos((((double) M_PI) * (2.0 * u2))), 0.5);
}
function code(u1, u2)
	return Float64(Float64(Float64(Float64(1.0 / 6.0) * (Float64(-2.0 * log(u1)) ^ 0.5)) * cos(Float64(Float64(2.0 * pi) * u2))) + 0.5)
end
function code(u1, u2)
	return fma(sqrt(Float64(log(u1) * -0.05555555555555555)), cos(Float64(pi * Float64(2.0 * u2))), 0.5)
end
code[u1_, u2_] := N[(N[(N[(N[(1.0 / 6.0), $MachinePrecision] * N[Power[N[(-2.0 * N[Log[u1], $MachinePrecision]), $MachinePrecision], 0.5], $MachinePrecision]), $MachinePrecision] * N[Cos[N[(N[(2.0 * Pi), $MachinePrecision] * u2), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] + 0.5), $MachinePrecision]
code[u1_, u2_] := N[(N[Sqrt[N[(N[Log[u1], $MachinePrecision] * -0.05555555555555555), $MachinePrecision]], $MachinePrecision] * N[Cos[N[(Pi * N[(2.0 * u2), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] + 0.5), $MachinePrecision]
\left(\frac{1}{6} \cdot {\left(-2 \cdot \log u1\right)}^{0.5}\right) \cdot \cos \left(\left(2 \cdot \pi\right) \cdot u2\right) + 0.5
\mathsf{fma}\left(\sqrt{\log u1 \cdot -0.05555555555555555}, \cos \left(\pi \cdot \left(2 \cdot u2\right)\right), 0.5\right)

Error

Derivation

  1. Initial program 0.4

    \[\left(\frac{1}{6} \cdot {\left(-2 \cdot \log u1\right)}^{0.5}\right) \cdot \cos \left(\left(2 \cdot \pi\right) \cdot u2\right) + 0.5 \]
  2. Applied egg-rr32.1

    \[\leadsto \color{blue}{\sqrt{\log \left({u1}^{-2}\right) \cdot 0.027777777777777776}} \cdot \cos \left(\left(2 \cdot \pi\right) \cdot u2\right) + 0.5 \]
  3. Taylor expanded in u1 around 0 0.2

    \[\leadsto \sqrt{\color{blue}{-0.05555555555555555 \cdot \log u1}} \cdot \cos \left(\left(2 \cdot \pi\right) \cdot u2\right) + 0.5 \]
  4. Simplified0.2

    \[\leadsto \sqrt{\color{blue}{\log u1 \cdot -0.05555555555555555}} \cdot \cos \left(\left(2 \cdot \pi\right) \cdot u2\right) + 0.5 \]
    Proof
    (*.f64 (log.f64 u1) -1/18): 0 points increase in error, 0 points decrease in error
    (Rewrite<= *-commutative_binary64 (*.f64 -1/18 (log.f64 u1))): 0 points increase in error, 0 points decrease in error
  5. Applied egg-rr0.2

    \[\leadsto \color{blue}{\mathsf{fma}\left(\sqrt{\log u1 \cdot -0.05555555555555555}, \cos \left(\pi \cdot \left(2 \cdot u2\right)\right), 0.5\right)} \]
  6. Final simplification0.2

    \[\leadsto \mathsf{fma}\left(\sqrt{\log u1 \cdot -0.05555555555555555}, \cos \left(\pi \cdot \left(2 \cdot u2\right)\right), 0.5\right) \]

Alternatives

Alternative 1
Error0.2
Cost26240
\[0.5 + \sqrt{\log u1 \cdot -0.05555555555555555} \cdot \cos \left(u2 \cdot \left(\pi \cdot 2\right)\right) \]
Alternative 2
Error1.0
Cost13120
\[\sqrt{\log u1 \cdot -0.05555555555555555} + 0.5 \]

Error

Reproduce

herbie shell --seed 2022291 
(FPCore (u1 u2)
  :name "normal distribution"
  :precision binary64
  :pre (and (and (<= 0.0 u1) (<= u1 1.0)) (and (<= 0.0 u2) (<= u2 1.0)))
  (+ (* (* (/ 1.0 6.0) (pow (* -2.0 (log u1)) 0.5)) (cos (* (* 2.0 PI) u2))) 0.5))