Let $X$, $Y$, and $Z$ be three independent uniform random variables on $[0, 1]$. Compute the probability $P(XY < Z^2)$.
I used the following approach :
Step 1 : Calculated the Probability distribution for $XY$. It turns out to be $P(XY \leq K) = \frac 1K$.
Step 2 : Calculated the Probability distribution for $Z^2$. It turns out to be $P(Z^2 \leq L) = P(-\root \of{L} \leq Z \leq \root \of{L}) = \root \of{L}$.
Step 3: Calculate the joint density function by multiplying the above functions and differentiating. I get $$f_{Q_1Q_2} (q_1,q_2) = \frac {-1}{2q_1^2\root\of{q_2}}$$. where $Q_1 = XY$ , $Q_2 =Z^2$.
Step 4: Calculate the probability using the integral below. $$\int_{0}^{1}\int_{q_1}^{1}\frac{-1}{2q_1^2\root\of{q_2}}dq_2dq_1$$
There is definitely something wrong with this procedure. Any help will be appreciated.