I have the random variable X that returns the result the thrown of one dice such that:
$P(1) = P(3) = P(4) = p_1, \\ P(5) = P(6) = p_2, \\ P(2) = \frac{1}{2}P(5)$
Determine the values of $p_1$ and $p_2$:
I have considered the definition of discrete random variable:
$$\sum_{\forall x} P(X=x) = 1 $$
therefore I have done:
$p_1 + \frac{1}{2}p_2 + p_1 + p_1 + p_2 + p_2 = 1 \\ 3p_1 + \frac{5}{2}p_2 = 1$
by attempts I have found that possible values can be:
$p_1 = \frac{1}{3} \land p_2=0$,
$p_1 = 0 \land p_2 = \frac{2}{5}$
Do exist other possible values?
Is there any algorithm to calculate that values without attempts?
Thanks!