I have two random variables $X$ and $Y$ both being i.i.d. with a $U(0,1)$ distribution. I am trying to calculate the cumulative distribution function of $Z=X*Y$. Which would be the most efficient way to do this? Until now, I tried t put something together from here and try a similar approach: Finding distribution function of $Y/X$ and probability density function of $X+Y$
However, I am really unsure if I can work similarly in my case. So this is my approach:
$$ F_{Z}(z) = P(X*Y \leq z) = \int_0^1 P \left( Y \leq \frac{z}{x} \right)*\frac{1}{f_X(x)}dx $$
Is this approach still correct? Furthermore I am quite unsure how to continue from here, so any help is really appreciated.