Given, $X$, $Y$, $Z$ are three Rayleigh distributed independent random variables. I need to calculate the product CDF of the variables, i.e. $F_\lambda(x)=\text{?}$ where, $\lambda = XYZ$.
I am trying to solve the problem as follows.
\begin{align} F_\lambda(p) & = \Pr(\lambda < p) \\[8pt] & = \Pr(XYZ < p) \\[8pt] & = \Pr(X < \frac{p}{YZ}) \\[8pt] & = 1 - \int_0^\infty \int_0^\infty e^{-p/(YZ\delta_1)} \frac 1 {\delta_1} f_{1/Y}(a) f_{1/Z}(b) \, da\,db \end{align}
I didn't go further as I think the way I am solving might not be correct.
Could you please help? Thank you.
dist = TransformedDistribution[x y z, {x \[Distributed] RayleighDistribution[s], y \[Distributed] RayleighDistribution[s], z \[Distributed] RayleighDistribution[s]}]; CDF[dist, p]
. – JimB Jul 01 '21 at 04:33