Better way to do this probability problem?

  • Thread starter Thread starter Gridvvk
  • Start date Start date
  • Tags Tags
    Probability
AI Thread Summary
The discussion revolves around calculating probabilities involving the outcomes of tossing a fair die four times, specifically focusing on the random variables X (number of times 1 or 2 appears) and Y (number of times 3, 4, or 5 appears). The participants initially approached the problem using binomial distributions, calculating P(X = 1, Y = 2) and P(X = Y) through combinatorial reasoning and case analysis. A more efficient method using the trinomial distribution was suggested, which simplifies the calculations by directly applying a formula for multiple outcomes. This approach highlights the advantages of using established statistical methods to streamline probability problems. The conversation emphasizes the importance of recognizing when to apply different probability distributions for efficiency.
Gridvvk
Messages
54
Reaction score
1

Homework Statement


You toss a fair die 4 times. You let the random variable X denote the number of times a toss results in 1 or 2, and Y denote the number of time a toss results in 3,4, or 5.

a) Find P(X = 1, Y = 2)
b) Find P(X = Y)

Homework Equations


None that I know of.

The Attempt at a Solution


I defined a third r.v. Z := number of times a toss results in a 6.
X ~ Bin(4,1/3), Y~Bin(4,1/2), Z~Bin(4,1/6).

a) P(X = 1, Y = 2) = P(X = 1, Y=2, Z = 1) = (4 choose 1)(3 choose 1)(1/3)(1/2)^2(1/6) = 1/6

You needed to take the groupings into account. There are 12 such orderings, one being
XYYZ, my reasoning was there are (4 choose 1) ways to move that Z around, and (3 choose 1 ways) to move X in XYY, giving 4 * 3 = 12 different possibilities.

b) P(X = Y).
Case 1: X=Y=0, Z = 4
P(Case 1) = (1/6)^4

Case 2: X=Y=1, Z = 2
P(Case 2) = 2(4 choose 2)(1/3)(1/2)(1/6)^2 = 1/18
Where you have 12 orderings again here, one such is XYZZ, two ways to shift the XY, and (4 choose 2) ways to work with the ZZ.

Case 3: X = Y = 2, Z = 0.
P(Case 3) = (3 choose 1)(2 choose 1)(1/3)^2(1/2)^2 = 1/6

Where you have 6 groupings, one such is XXYY, my reasoning was you can move the second X in XYY (3 choose 1) ways and the outer X would then have (2 choose 1) ways.

So I got P(X = Y) = P(Case 1) + P(Case 2) + P(Case 3) = 289 / 1296.

-----------------------------------
I think my answer is correct (I could be wrong though). However, is there a better way to do this problem using our knowledge that X,Y, and Z are binomial? I only ask because I was a bit uncertain on the number of arrangements and just did it solely on intuition and oftentimes enumerated all possibilities to see if I was correct, so is there a better way to count the number of possibilities as well?
 
Physics news on Phys.org
Gridvvk said:

Homework Statement


You toss a fair die 4 times. You let the random variable X denote the number of times a toss results in 1 or 2, and Y denote the number of time a toss results in 3,4, or 5.

a) Find P(X = 1, Y = 2)
b) Find P(X = Y)


Homework Equations


None that I know of.


The Attempt at a Solution


I defined a third r.v. Z := number of times a toss results in a 6.
X ~ Bin(4,1/3), Y~Bin(4,1/2), Z~Bin(4,1/6).

a) P(X = 1, Y = 2) = P(X = 1, Y=2, Z = 1) = (4 choose 1)(3 choose 1)(1/3)(1/2)^2(1/6) = 1/6

You needed to take the groupings into account. There are 12 such orderings, one being
XYYZ, my reasoning was there are (4 choose 1) ways to move that Z around, and (3 choose 1 ways) to move X in XYY, giving 4 * 3 = 12 different possibilities.

b) P(X = Y).
Case 1: X=Y=0, Z = 4
P(Case 1) = (1/6)^4

Case 2: X=Y=1, Z = 2
P(Case 2) = 2(4 choose 2)(1/3)(1/2)(1/6)^2 = 1/18
Where you have 12 orderings again here, one such is XYZZ, two ways to shift the XY, and (4 choose 2) ways to work with the ZZ.

Case 3: X = Y = 2, Z = 0.
P(Case 3) = (3 choose 1)(2 choose 1)(1/3)^2(1/2)^2 = 1/6

Where you have 6 groupings, one such is XXYY, my reasoning was you can move the second X in XYY (3 choose 1) ways and the outer X would then have (2 choose 1) ways.

So I got P(X = Y) = P(Case 1) + P(Case 2) + P(Case 3) = 289 / 1296.

-----------------------------------
I think my answer is correct (I could be wrong though). However, is there a better way to do this problem using our knowledge that X,Y, and Z are binomial? I only ask because I was a bit uncertain on the number of arrangements and just did it solely on intuition and oftentimes enumerated all possibilities to see if I was correct, so is there a better way to count the number of possibilities as well?

Both of your answers are correct. You could have saved a bit of time by using the trinomial distribution: if each 'trial' results in either outcomes A, B or C with respective probabilities ##p_A,\: p_B, \: p_C \; (p_A + p_B + p_C = 1)##, then for n independent trials, we have
P\{ N_A = a, N_B = b, N_C = c\}<br /> = \frac{n!}{a! \: b! \: c!}\, p_A^a \, p_B^b \, p_C^c
where ##a+b+c=n##.

You can easily derive this by successive application of the binomial:
P\{N_A=a, N_B=b, N_C=c \} = P\{N_A=a\} P\{N_B=b, N_C=c | N_A = a\}.
We have
P\{N_A=a\} = {n \choose a} p_A^a \; (p_B + p_C)^{n-a},
and
P\{N_B=b, N_C=c | N_A = a\} = {n-a \choose b} q_B^b \, q_C^c,
where
q_B = P\{B| B \text{ or }C\} = \frac{p_B}{p_B + p_C} \\<br /> q_c = P\{C| B \text{ or }C\} = \frac{p_C}{p_B + p_C}.
If you put all these together you get the trinomial formula.
 
  • Like
Likes 1 person
Gridvvk said:

Homework Statement


You toss a fair die 4 times. You let the random variable X denote the number of times a toss results in 1 or 2, and Y denote the number of time a toss results in 3,4, or 5.

a) Find P(X = 1, Y = 2)
b) Find P(X = Y)


Homework Equations


None that I know of.

I haven't worked your problem, but you can use the trinomial distribution:$$
P(X=x,Y=y) = \frac {4!}{x!y!(4-x-y)!}\left(\frac 1 3\right)^x\left(\frac 1 2\right)^y
\left(1-\frac 1 3 -\frac 1 2\right)^{(4-x-y)}$$

[Edit]: I see Ray beat me to it by a full minute. :smile:
 
Last edited:
  • Like
Likes 1 person
Thanks! That does make the calculations easier and helps me on another similar problem.
 
I tried to combine those 2 formulas but it didn't work. I tried using another case where there are 2 red balls and 2 blue balls only so when combining the formula I got ##\frac{(4-1)!}{2!2!}=\frac{3}{2}## which does not make sense. Is there any formula to calculate cyclic permutation of identical objects or I have to do it by listing all the possibilities? Thanks
Since ##px^9+q## is the factor, then ##x^9=\frac{-q}{p}## will be one of the roots. Let ##f(x)=27x^{18}+bx^9+70##, then: $$27\left(\frac{-q}{p}\right)^2+b\left(\frac{-q}{p}\right)+70=0$$ $$b=27 \frac{q}{p}+70 \frac{p}{q}$$ $$b=\frac{27q^2+70p^2}{pq}$$ From this expression, it looks like there is no greatest value of ##b## because increasing the value of ##p## and ##q## will also increase the value of ##b##. How to find the greatest value of ##b##? Thanks

Similar threads

Back
Top