0

Let's suppose we are considering the experiment of rolling two dice and X is the random variable that tracks the number of one die and Y the number of the other die.

--> What are the distributions of X (and Y) ?

Lea67
  • 79

1 Answers1

1

Since (I presume) the dice are uncorollated, i.e., are independent of one another, we obtain that $X$ and $Y$ are independent random variables that attain the values $1$ until $6$ with probability $1/6$ (assuming that the dice are fair and have $6$ faces).

Edit based on comment:

In other words, we have $$\mathbb P(X=k)=\mathbb P(Y=k)=\frac16,\quad k\in\{1,2,3,4,5,6\}.$$ Observe, for example, that $$\sum_{k=1}^6\mathbb P(X=k)=\mathbb P\left(\bigcup_{k=1}^6\{X=k\}\right)=\mathbb P(X\in\{1,2,3,4,5,6\})=1.$$

Mark
  • 589