?

Average Accuracy: 56.7% → 99.0%
Time: 21.0s
Precision: binary32
Cost: 19872

?

\[\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(\mathsf{log1p}\left(\mathsf{expm1}\left(uy \cdot \left(2 \cdot \pi\right)\right)\right)\right) \cdot \sqrt{ux \cdot \left(2 \cdot \left(1 - maxCos\right)\right) - ux \cdot \left(ux \cdot {\left(1 - maxCos\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 (log1p (expm1 (* uy (* 2.0 PI)))))
  (sqrt
   (- (* ux (* 2.0 (- 1.0 maxCos))) (* ux (* ux (pow (- 1.0 maxCos) 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(log1pf(expm1f((uy * (2.0f * ((float) M_PI)))))) * sqrtf(((ux * (2.0f * (1.0f - maxCos))) - (ux * (ux * powf((1.0f - maxCos), 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(log1p(expm1(Float32(uy * Float32(Float32(2.0) * Float32(pi)))))) * sqrt(Float32(Float32(ux * Float32(Float32(2.0) * Float32(Float32(1.0) - maxCos))) - Float32(ux * Float32(ux * (Float32(Float32(1.0) - maxCos) ^ 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(\mathsf{log1p}\left(\mathsf{expm1}\left(uy \cdot \left(2 \cdot \pi\right)\right)\right)\right) \cdot \sqrt{ux \cdot \left(2 \cdot \left(1 - maxCos\right)\right) - ux \cdot \left(ux \cdot {\left(1 - maxCos\right)}^{2}\right)}

Error?

Try it out?

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation?

  1. Initial program 56.7%

    \[\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. Simplified56.7%

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

    [Start]56.7

    \[ \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)} \]

    associate-*l* [=>]56.7

    \[ \cos \color{blue}{\left(uy \cdot \left(2 \cdot \pi\right)\right)} \cdot \sqrt{1 - \left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)} \]

    cancel-sign-sub-inv [=>]56.7

    \[ \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{\color{blue}{1 + \left(-\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right)}} \]

    +-commutative [=>]56.7

    \[ \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{\color{blue}{\left(-\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right) \cdot \left(\left(1 - ux\right) + ux \cdot maxCos\right) + 1}} \]

    *-commutative [=>]56.7

    \[ \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{\color{blue}{\left(\left(1 - ux\right) + ux \cdot maxCos\right) \cdot \left(-\left(\left(1 - ux\right) + ux \cdot maxCos\right)\right)} + 1} \]

    fma-def [=>]56.8

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

    +-commutative [=>]56.8

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

    associate-+r- [=>]56.9

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

    fma-def [=>]56.9

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

    neg-sub0 [=>]56.9

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

    +-commutative [=>]56.9

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

    associate-+r- [=>]56.7

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

    associate--r- [=>]56.7

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

    +-commutative [=>]56.7

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

    sub0-neg [=>]56.7

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

    sub-neg [<=]56.7

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

    fma-def [=>]56.7

    \[ \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{\mathsf{fma}\left(\mathsf{fma}\left(ux, maxCos, 1\right) - ux, ux - \color{blue}{\mathsf{fma}\left(ux, maxCos, 1\right)}, 1\right)} \]
  3. Taylor expanded in ux around -inf 99.0%

    \[\leadsto \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{\color{blue}{-1 \cdot \left({ux}^{2} \cdot {\left(1 + -1 \cdot maxCos\right)}^{2}\right) + 2 \cdot \left(ux \cdot \left(1 + -1 \cdot maxCos\right)\right)}} \]
  4. Simplified99.0%

    \[\leadsto \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{\color{blue}{ux \cdot \left(\left(1 - maxCos\right) \cdot 2\right) - ux \cdot \left(ux \cdot {\left(1 - maxCos\right)}^{2}\right)}} \]
    Proof

    [Start]99.0

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

    +-commutative [=>]99.0

    \[ \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{\color{blue}{2 \cdot \left(ux \cdot \left(1 + -1 \cdot maxCos\right)\right) + -1 \cdot \left({ux}^{2} \cdot {\left(1 + -1 \cdot maxCos\right)}^{2}\right)}} \]

    mul-1-neg [=>]99.0

    \[ \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{2 \cdot \left(ux \cdot \left(1 + -1 \cdot maxCos\right)\right) + \color{blue}{\left(-{ux}^{2} \cdot {\left(1 + -1 \cdot maxCos\right)}^{2}\right)}} \]

    unsub-neg [=>]99.0

    \[ \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{\color{blue}{2 \cdot \left(ux \cdot \left(1 + -1 \cdot maxCos\right)\right) - {ux}^{2} \cdot {\left(1 + -1 \cdot maxCos\right)}^{2}}} \]

    *-commutative [=>]99.0

    \[ \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{\color{blue}{\left(ux \cdot \left(1 + -1 \cdot maxCos\right)\right) \cdot 2} - {ux}^{2} \cdot {\left(1 + -1 \cdot maxCos\right)}^{2}} \]

    mul-1-neg [=>]99.0

    \[ \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{\left(ux \cdot \left(1 + \color{blue}{\left(-maxCos\right)}\right)\right) \cdot 2 - {ux}^{2} \cdot {\left(1 + -1 \cdot maxCos\right)}^{2}} \]

    sub-neg [<=]99.0

    \[ \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{\left(ux \cdot \color{blue}{\left(1 - maxCos\right)}\right) \cdot 2 - {ux}^{2} \cdot {\left(1 + -1 \cdot maxCos\right)}^{2}} \]

    associate-*l* [=>]99.0

    \[ \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{\color{blue}{ux \cdot \left(\left(1 - maxCos\right) \cdot 2\right)} - {ux}^{2} \cdot {\left(1 + -1 \cdot maxCos\right)}^{2}} \]

    unpow2 [=>]99.0

    \[ \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{ux \cdot \left(\left(1 - maxCos\right) \cdot 2\right) - \color{blue}{\left(ux \cdot ux\right)} \cdot {\left(1 + -1 \cdot maxCos\right)}^{2}} \]

    associate-*l* [=>]99.0

    \[ \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{ux \cdot \left(\left(1 - maxCos\right) \cdot 2\right) - \color{blue}{ux \cdot \left(ux \cdot {\left(1 + -1 \cdot maxCos\right)}^{2}\right)}} \]

    mul-1-neg [=>]99.0

    \[ \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{ux \cdot \left(\left(1 - maxCos\right) \cdot 2\right) - ux \cdot \left(ux \cdot {\left(1 + \color{blue}{\left(-maxCos\right)}\right)}^{2}\right)} \]

    sub-neg [<=]99.0

    \[ \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{ux \cdot \left(\left(1 - maxCos\right) \cdot 2\right) - ux \cdot \left(ux \cdot {\color{blue}{\left(1 - maxCos\right)}}^{2}\right)} \]
  5. Applied egg-rr99.0%

    \[\leadsto \cos \color{blue}{\left(\mathsf{log1p}\left(\mathsf{expm1}\left(uy \cdot \left(2 \cdot \pi\right)\right)\right)\right)} \cdot \sqrt{ux \cdot \left(\left(1 - maxCos\right) \cdot 2\right) - ux \cdot \left(ux \cdot {\left(1 - maxCos\right)}^{2}\right)} \]
    Proof

    [Start]99.0

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

    log1p-expm1-u [=>]99.0

    \[ \cos \color{blue}{\left(\mathsf{log1p}\left(\mathsf{expm1}\left(uy \cdot \left(2 \cdot \pi\right)\right)\right)\right)} \cdot \sqrt{ux \cdot \left(\left(1 - maxCos\right) \cdot 2\right) - ux \cdot \left(ux \cdot {\left(1 - maxCos\right)}^{2}\right)} \]
  6. Final simplification99.0%

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

Alternatives

Alternative 1
Accuracy99.0%
Cost13440
\[\begin{array}{l} t_0 := ux \cdot \left(1 - maxCos\right)\\ \cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot {\left(2 \cdot t_0 - {t_0}^{2}\right)}^{0.5} \end{array} \]
Alternative 2
Accuracy99.0%
Cost10176
\[\sqrt{ux \cdot \left(\left(1 - maxCos\right) \cdot \left(2 + ux \cdot \left(maxCos + -1\right)\right)\right)} \cdot \cos \left(\pi \cdot \left(uy \cdot 2\right)\right) \]
Alternative 3
Accuracy89.4%
Cost9988
\[\begin{array}{l} \mathbf{if}\;uy \cdot 2 \leq 0.001500000013038516:\\ \;\;\;\;\sqrt{\mathsf{fma}\left(maxCos + -1, ux \cdot \left(ux - ux \cdot maxCos\right), ux + ux \cdot \left(\left(1 - maxCos\right) - maxCos\right)\right)}\\ \mathbf{else}:\\ \;\;\;\;\cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{ux + ux}\\ \end{array} \]
Alternative 4
Accuracy92.6%
Cost9984
\[\cos \left(uy \cdot \left(2 \cdot \pi\right)\right) \cdot \sqrt{2 \cdot ux - ux \cdot ux} \]
Alternative 5
Accuracy92.6%
Cost9920
\[\sqrt{ux \cdot \left(2 - ux\right)} \cdot \cos \left(2 \cdot \left(uy \cdot \pi\right)\right) \]
Alternative 6
Accuracy80.3%
Cost7008
\[\sqrt{\mathsf{fma}\left(maxCos + -1, ux \cdot \left(ux - ux \cdot maxCos\right), ux + ux \cdot \left(\left(1 - maxCos\right) - maxCos\right)\right)} \]
Alternative 7
Accuracy80.3%
Cost6912
\[\sqrt{2 \cdot \left(ux \cdot \left(1 - maxCos\right)\right) - {\left(1 - maxCos\right)}^{2} \cdot \left(ux \cdot ux\right)} \]
Alternative 8
Accuracy80.2%
Cost3616
\[\sqrt{ux \cdot \left(\left(1 - maxCos\right) \cdot \left(2 + ux \cdot \left(maxCos + -1\right)\right)\right)} \]
Alternative 9
Accuracy79.2%
Cost3552
\[\sqrt{ux \cdot \left(2 \cdot \left(1 - maxCos\right)\right) - ux \cdot ux} \]
Alternative 10
Accuracy75.8%
Cost3424
\[\sqrt{2 \cdot ux - ux \cdot ux} \]
Alternative 11
Accuracy75.8%
Cost3360
\[\sqrt{ux \cdot \left(2 - ux\right)} \]
Alternative 12
Accuracy62.4%
Cost3296
\[\sqrt{2 \cdot ux} \]

Error

Reproduce?

herbie shell --seed 2023137 
(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)))))))