The probability of an event or element in a sample space is written as $P(A)$, where $A$ is the event or element in the sample space. Answer the following problems symbolically and simplified. Each problem is worth 1 point.
[2 points] Our sample space contains three elements: $Q = \{A, B, C\}$. What is the probability of observing $P(A \,\textrm{OR} \,\textrm{B}\, \textrm{OR}\, C)$
[1 points] If we observe two sequential independent samples with the same sample space as above, what is the probability of observing $A$ and then $B$?
[2 points] You have a sample space with the numbers 1-10, where each element in the sample space has the same probability. If event $E$ is elements $\{2, 5, 7\}$, then what is the probability of the event $E$, $P(E)$?
[2 points] What is the probability of not event $E$ from the previous question?
[4 points] State the number of observations/samples for the probabilities specified in questions 1.1-1.4.
You are rolling a die with 6 sides. Event $A$ is that you roll a number less than 5. Event $B$ is that you roll a $6$. Event $C$ rolling a number less than 2. Answer these problems using python code. Each problem is worth 1 point.
In [1]:
4 / 6
Out[1]:
In [2]:
4 / 6 + 1 / 6 - 1/6
Out[2]:
In [3]:
1/6
Out[3]:
In [4]:
(1 / 6) * (4 / 6) + (4 / 6) * (1 / 6)
Out[4]:
In [5]:
(1 / 6) * ( 4 / 6)
Out[5]:
Answers these problems symbolically
Each problem is worth 4 points