MAT prob&stat1 discrete random variables Flashcards
What is a probability distribution?
A probability distribution lists the exhaustive and mutually exclusive outcomes of an experiment and their associated probabilities.
What is a discrete random variable?
A discrete random variable maps an experiment to a set of discrete numerical outcomes, such as X={1,2,3,…}.
How is the probability P(X=x) defined?
P(X = x) is the probability that the random variable X takes the value x.
What are the properties of a probability distribution?
- The probabilities for all possible outcomes must sum to 1.
- Each outcome is mutually exclusive.
- Probabilities indicate how likely each outcome is.
How do you represent a (discrete) probability distribution visually?
Probability distributions can be represented using vertical line graphs, where each line corresponds to an outcome and its probability.
What is the probability distribution for summing the values of two spins of a six-sided spinner?
find ans
x: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12
P(X = x): 1/36, 2/36, 3/36, 4/36, 5/36, 6/36, 5/36, 4/36, 3/36, 2/36, 1/36
How do you verify if a (discrete) probability distribution is valid?
Ensure that the sum of all probabilities equals 1, i.e., sum P(X = x) = 1
How do you find a constant c in a probability distribution?
Use the condition 𝛴P(X = x) = 1, solve for c, and substitute it back into the probabilities.
Example: A discrete random variable X has probabilities P(X = r) = r/15 for r = 1, 3, 4, 7. What is the probability distribution?
find ans
r: 1, 3, 4, 7
P(X = r): 1/15, 3/15, 4/15, 7/15
Example: A random variable Y has P(Y = 1) = c, P(Y = 2) = 4c, P(Y = 3) = 3c, P(Y = 4) = 4c. Find c.
Using 𝛴 P(Y = y) = 1:
c + 4c + 3c + 4c = 1 implies 12c = 1, so c = 1/12
The probabilities are 1/12, 4/12, 3/12, 4/12.
A bag has 4 blue discs and 3 green discs. Two discs are removed without replacement. What is the probability distribution of X, the number of blue discs removed?
fins ans
x: 0, 1, 2
P(X = x): 1/7, 4/7, 2/7
What is the expectation (mean) of a discrete random variable X?
E(X) = Σ [x_i * P(X = x_i)]
Multiply each value of x by its probability, then sum these values.
Example: If X has values 0, 1, 2, 3 with probabilities 1/12, 1/3, 1/6, 5/12, what is E(X)?
E(X) = 0 * (1/12) + 1 * (1/3) + 2 * (1/6) + 3 * (5/12) = 23/12
What is variance (Var(X)) of a discrete random variable?
Var(X) = E(X^2) - [E(X)]^2
Where E(X^2) = Σ [x_i^2 * P(X = x_i)].
Example: Find Var(X) for X = {0, 1, 2, 3} with probabilities 1/12, 1/3, 1/6, 5/12.
E(X) = 23/12
E(X^2) = 19/4
Var(X) = 19/4 - (23/12)^2 = 1.08