Assignment - Module 4

01 August 2021

Group 23: Aman Jindal | Yuhang Jiang | Daniel Gabriel Tan | Qining Liu


Q1.There are 10 people. What are the number of ways in which you can split them into a team of 6 and a team of 4? Additionally, what are the number of ways in which you can split them into two teams of 5 each?

Answer 1:

$$^{10}C_6\,=\,^{10}C_4 = 210$$ $$\frac{^{10}C_5}{2} = 126$$

This is because the two groups have identical count of people. Hence, the division by two.


Q2. Prove $P(A \cup B) = P(A) + P(B) - P(A \cap B)$. Hint: The goal is to prove this mathematically (not using Venn diagrams). Try writing $A \cup B$ as union of three disjoint sets and then apply axiom 3 that we discussed in class.

Answer 2:

$$P(A) + P(B) = P(AB^c) + P(A^cB) +2*P(AB) \qquad(4)$$


Q.E.D.


Q3. Two people take turns trying to sink a basketball into a net. Person 1 succeeds with probability 1/3 and person 2 succeeds with probability 1/4. What is the probability that person 2 succeeds before person 1. Additionally, compute the probability that person 1 succeeds before person 2.

Answer 3:

Thus,

$$x = \frac{1}{3} + \frac{2}{3}(1-y) \qquad (1)$$$$y = \frac{1}{4} + \frac{3}{4}(1-x) \qquad (2)$$

Thus, Probability of Person 2 succeeding first is $\frac{1}{2}$.
Probability of Person 1 succeeding first is $\frac{2}{3}$.


Q4. Suppose we toss a fair coin until we get exactly two heads. Describe the sample space S. What is the probability that exactly k tosses are required?

Answer 4:

$$S = \{X_1, X_2, X_3, ...., X_n\}$$

Where,

Probability that exactly k tosses are required is the product of the following:

$$P =\,^{k-1}C_{k-2}*{\left(\frac{1}{2}\right)}^{k-2}*\frac{1}{2}*\frac{1}{2}$$$$\implies P = \frac{k-1}{2^k}$$

Q5. Birth Month Problem - This is a variation of the birthday problem. How many people are needed in a room to make it possible that atleast two people have the same birth month with a probability of 50%. There are 12 months in a year and probability of being born in any month is the same. Hint: Try expressing the probability of atleast 2 people having the same birth month as a complementary event.

Answer 5:

Thus, $$P(\bar{A}) = \frac{12}{12}*\frac{11}{12}*\text{.....}*\frac{12-n+1}{12} \qquad (1)$$

Thus, $$P(A) = 1- \frac{12}{12}*\frac{11}{12}*\text{.....}*\frac{12-n+1}{12} \qquad (2)$$

Our answer would be the lowest value of n (number of people in the room) for which the probability in $(2)$ becomes greater than 0.5


From the above, we can see that for n = 5 the probability value crosses the threshold of 0.5.

Thus, there should be atleast 5 people in the room to make it possible that atleast two people have the same birth month with a probability of 50%


The End.