Let $x_1,x_2,...,x_n $ be independent uniformly distributed on $(0,1)$.
How to find $P(x_2/x_3 \leq a)$?
Can I consider $$ x_2, x_3 $$ as two random variables or do I need to do something special? my attempt is below
$$f(x_2, x_3) = 1$$
$$P(\frac {x_2}{x_3} \leq a) = \int _0^{1} \int _0^{a*x_3} dx_2 dx_3 = \frac{a}{2} $$
Edit, I need to find the probability by conditioning. S my approach is not right.
Update: after reviewing the comments below, I summarized them into:
$$P\left(\frac {x_2}{x_3} \leq a\right) = \begin{cases} \int_0^1 \int_0^{a*x_3} dx_2 dx_3 = a/2 && a \le 1\\ \int_0^1 \int_1^{x_2/a} dx_3 dx_2 = 1 - \frac{1}{2*a} && a > 1 \end{cases} $$
these results are somewhat different from some of the comments below and they are not obtained by conditioning, however, they seem to be aligned with Mathematica results
I'm still thinking of the best way to get these results using conditional probability
Hint: You should reason that (for positive a) $$P\left(\frac {x_2}{x_3} \leq a\right) = \int _0^{1} \min(a \,x_3, 1) \, dx_3 = \begin{cases} \int_0^1 a \, x_3 \, dx_3 && a \le 1\\ \int _0^{\frac1a} a \, x_3 \, dx_3 + \int _{\frac1a}^{1} 1 \, dx_3 && a > 1 \end{cases} $$