This is my first posting here and I will be grateful for any help.
Say, I have a 4-sided uneven dice. To describe it, we can define a discrete random variable X with the following outcomes:
$P(X=1) = 0.889; \\ P(X=2) = 0.1; \\ P(X=3) = 0.01; \\ P(X=4)=0.001$
Consider a series of three dice rolling. Given that $X$ is a discrete random variable we can compute probability for each set of outcomes (assuming that the order of the outcomes does not matter):
$$P('111') = 0.889\times0.889\times0.889 = 0.7026 \\ \vdots \\ \begin{align} P('123') & = P(x_1=1,x_2=2,x_3=3) + P(x_1=1,x_2=3,x_3=2) + P(x_1=2,x_2=1,x_3=3) + P(x_1=3,x_2=1,x_3=2) + P(x_1=2,x_2=3,x_3=1) + P(x_1=3,x_2=2,x_3=1) \\ & = 6 P(x_1=1,x_2=2,x_3=3) \\ & = 6\times0.889\times0.1\times0.01 = 0.005334 \end{align} \\ \vdots \\ P('444') = 0.001\times0.001\times0.001 = 10^{-9} $$
I hope my logic and calculations above are correct.
My question is, what should I do if I work with a continuous random variable?
For example, $Y \sim N(0,1)$ and I get three outcomes of $Y$: $y_1, y_2, y_3$. Using the Cumulative distribution function, CDF, I can compute the following probability of each outcome:
$$P(Y < y_1) = CDF_Y(y_1) \\ P(Y < y_2) = CDF_Y(y_2) \\ P(Y < y_3) = CDF_Y(y_3)$$
But how do I compute the joint probability of all three outcomes together, $P(Y < y_1, Y < y_2, Y < y_3)$? Am I allowed to simply multiply the three CDFs? Again, the order of the outcomes does not matter.
Thanks for your help,
Ivan