Average Error: 13.8 → 0.3
Time: 7.1s
Precision: binary32
\[\left(\left(2.328306437 \cdot 10^{-10} \leq ux \land ux \leq 1\right) \land \left(2.328306437 \cdot 10^{-10} \leq uy \land uy \leq 1\right)\right) \land \left(0 \leq maxCos \land maxCos \leq 1\right)\]
\[\cos \left(\left(uy \cdot 2\right) \cdot \pi\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
\[\cos \left(\pi \cdot \left(2 \cdot uy\right)\right) \cdot \sqrt{\mathsf{fma}\left(2 + -2 \cdot maxCos, ux, -{\left(ux \cdot \left(maxCos + -1\right)\right)}^{2}\right)} \]
(FPCore (ux uy maxCos)
 :precision binary32
 (*
  (cos (* (* uy 2.0) PI))
  (sqrt
   (- 1.0 (* (+ (- 1.0 ux) (* ux maxCos)) (+ (- 1.0 ux) (* ux maxCos)))))))
(FPCore (ux uy maxCos)
 :precision binary32
 (*
  (cos (* PI (* 2.0 uy)))
  (sqrt
   (fma (+ 2.0 (* -2.0 maxCos)) ux (- (pow (* ux (+ maxCos -1.0)) 2.0))))))
float code(float ux, float uy, float maxCos) {
	return cosf(((uy * 2.0f) * ((float) M_PI))) * sqrtf((1.0f - (((1.0f - ux) + (ux * maxCos)) * ((1.0f - ux) + (ux * maxCos)))));
}
float code(float ux, float uy, float maxCos) {
	return cosf((((float) M_PI) * (2.0f * uy))) * sqrtf(fmaf((2.0f + (-2.0f * maxCos)), ux, -powf((ux * (maxCos + -1.0f)), 2.0f)));
}
function code(ux, uy, maxCos)
	return Float32(cos(Float32(Float32(uy * Float32(2.0)) * Float32(pi))) * sqrt(Float32(Float32(1.0) - Float32(Float32(Float32(Float32(1.0) - ux) + Float32(ux * maxCos)) * Float32(Float32(Float32(1.0) - ux) + Float32(ux * maxCos))))))
end
function code(ux, uy, maxCos)
	return Float32(cos(Float32(Float32(pi) * Float32(Float32(2.0) * uy))) * sqrt(fma(Float32(Float32(2.0) + Float32(Float32(-2.0) * maxCos)), ux, Float32(-(Float32(ux * Float32(maxCos + Float32(-1.0))) ^ Float32(2.0))))))
end
\cos \left(\left(uy \cdot 2\right) \cdot \pi\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}
\cos \left(\pi \cdot \left(2 \cdot uy\right)\right) \cdot \sqrt{\mathsf{fma}\left(2 + -2 \cdot maxCos, ux, -{\left(ux \cdot \left(maxCos + -1\right)\right)}^{2}\right)}

Error

Bits error versus ux

Bits error versus uy

Bits error versus maxCos

Derivation

  1. Initial program 13.8

    \[\cos \left(\left(uy \cdot 2\right) \cdot \pi\right) \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]
  2. Taylor expanded in ux around 0 0.3

    \[\leadsto \cos \left(\left(uy \cdot 2\right) \cdot \pi\right) \cdot \sqrt{\color{blue}{\left(2 - 2 \cdot maxCos\right) \cdot ux + -1 \cdot \left({\left(maxCos - 1\right)}^{2} \cdot {ux}^{2}\right)}} \]
  3. Applied egg-rr0.4

    \[\leadsto \cos \color{blue}{\log \left({\left({\left(e^{2}\right)}^{uy}\right)}^{\pi}\right)} \cdot \sqrt{\left(2 - 2 \cdot maxCos\right) \cdot ux + -1 \cdot \left({\left(maxCos - 1\right)}^{2} \cdot {ux}^{2}\right)} \]
  4. Applied egg-rr0.3

    \[\leadsto \color{blue}{{\left(\cos \left(\pi \cdot \left(2 \cdot uy\right)\right) \cdot \sqrt{\mathsf{fma}\left(2 + -2 \cdot maxCos, ux, -{\left(\left(maxCos + -1\right) \cdot ux\right)}^{2}\right)}\right)}^{1}} \]
  5. Final simplification0.3

    \[\leadsto \cos \left(\pi \cdot \left(2 \cdot uy\right)\right) \cdot \sqrt{\mathsf{fma}\left(2 + -2 \cdot maxCos, ux, -{\left(ux \cdot \left(maxCos + -1\right)\right)}^{2}\right)} \]

Reproduce

herbie shell --seed 2022170 
(FPCore (ux uy maxCos)
  :name "UniformSampleCone, x"
  :precision binary32
  :pre (and (and (and (<= 2.328306437e-10 ux) (<= ux 1.0)) (and (<= 2.328306437e-10 uy) (<= uy 1.0))) (and (<= 0.0 maxCos) (<= maxCos 1.0)))
  (* (cos (* (* uy 2.0) PI)) (sqrt (- 1.0 (* (+ (- 1.0 ux) (* ux maxCos)) (+ (- 1.0 ux) (* ux maxCos)))))))