Key Concepts and Formulas
- Discrete Random Variable and Probability Distribution: A random variable X is discrete if its possible values are countable. Its probability distribution lists each possible value xi and its corresponding probability P(X=xi). The sum of all probabilities must be 1: ∑P(X=xi)=1.
- Expected Value (Mean) E[X]: This is the long-run average value of X. For a discrete random variable, it's calculated as the sum of each value multiplied by its probability:
E[X]=∑xiP(X=xi)
- Variance σ2: This measures the spread or dispersion of the values of X around its mean. A common and computationally efficient formula for variance is:
σ2=E[X2]−(E[X])2
where E[X2]=∑xi2P(X=xi).
Step-by-Step Solution
Step 1: Define the Random Variable and Its Possible Values
We are given a bag with 4 white (W) balls and 6 black (B) balls, for a total of 10 balls. Three balls are drawn at random.
The random variable X represents the number of white balls among the three drawn balls.
Since we draw 3 balls and there are 4 white balls available, the possible number of white balls drawn can be 0, 1, 2, or 3.
- X=0: 0 white balls, 3 black balls
- X=1: 1 white ball, 2 black balls
- X=2: 2 white balls, 1 black ball
- X=3: 3 white balls, 0 black balls
Step 2: Calculate the Total Number of Outcomes
To determine the probabilities, we first need to find the total number of ways to draw 3 balls from the 10 available balls. Since the order of drawing does not matter, we use combinations.
The total number of ways to choose 3 balls from 10 is given by 10C3.
10C3=3!(10−3)!10!=3×2×110×9×8=10×3×4=120
This value, 120, will be the denominator for all our probability calculations.
Step 3: Determine the Probability Distribution of X
We calculate P(X=x) for each possible value of X. For each case, we select x white balls from the 4 white balls and (3−x) black balls from the 6 black balls.
-
For X=0 (0 white balls):
We choose 0 white balls from 4 (4C0) AND 3 black balls from 6 (6C3).
Number of ways: 4C0×6C3=1×3×2×16×5×4=1×20=20
Probability P(X=0)=12020=61
-
For X=1 (1 white ball):
We choose 1 white ball from 4 (4C1) AND 2 black balls from 6 (6C2).
Number of ways: 4C1×6C2=4×2×16×5=4×15=60
Probability P(X=1)=12060=21
-
For X=2 (2 white balls):
We choose 2 white balls from 4 (4C2) AND 1 black ball from 6 (6C1).
Number of ways: 4C2×6C1=2×14×3×6=6×6=36
Probability P(X=2)=12036=103
-
For X=3 (3 white balls):
We choose 3 white balls from 4 (4C3) AND 0 black balls from 6 (6C0).
Number of ways: 4C3×6C0=4×1=4
Probability P(X=3)=1204=301
Let's verify that the sum of probabilities is 1:
∑P(X=xi)=61+21+103+301=305+3015+309+301=305+15+9+1=3030=1
The probabilities are correct.
Step 4: Calculate the Expected Value E[X] (Mean)
Using the formula E[X]=∑xiP(X=xi):
E[X]=(0×P(X=0))+(1×P(X=1))+(2×P(X=2))+(3×P(X=3))
E[X]=(0×61)+(1×21)+(2×103)+(3×301)
E[X]=0+21+106+303
E[X]=21+53+101(simplifying fractions)
To sum these, we use a common denominator of 10:
E[X]=105+106+101=105+6+1=1012=56
Step 5: Calculate the Expected Value E[X2]
Using the formula E[X2]=∑xi2P(X=xi):
E[X2]=(02×P(X=0))+(12×P(X=1))+(22×P(X=2))+(32×P(X=3))
E[X2]=(0×61)+(1×21)+(4×103)+(9×301)
E[X2]=0+21+1012+309
E[X2]=21+56+103(simplifying fractions)
To sum these, we use a common denominator of 10:
E[X2]=105+1012+103=105+12+3=1020=2
Step 6: Calculate the Variance σ2
Using the formula σ2=E[X2]−(E[X])2:
σ2=2−(56)2
σ2=2−2536
To subtract, we use a common denominator of 25:
σ2=2550−2536=2550−36=2514
Step 7: Calculate 100σ2
The problem asks for the value of 100σ2.
100σ2=100×2514
100σ2=4×14=56
Common Mistakes & Tips
- Verification of Probabilities: Always sum your calculated probabilities to ensure they add up to 1. This is a crucial check for preventing errors early on.
- Distinguishing E[X2] and (E[X])2: A common error is to confuse these two terms. Remember that E[X2] is the expected value of X squared, while (E[X])2 is the square of the expected value of X.
- Hypergeometric Distribution: This problem describes a classic hypergeometric distribution scenario. For a population of N items with K successes, if n items are drawn without replacement, the variance is σ2=nNK(1−NK)N−1N−n. In this case, N=10 (total balls), K=4 (white balls), n=3 (balls drawn). Plugging these values:
σ2=3×104×(1−104)×10−110−3=3×52×53×97=2518×97=252×7=2514. This confirms our detailed calculation.
Summary
To find the variance of the number of white balls drawn, we first identified the possible values of the random variable X and calculated their respective probabilities using combinations (recognizing this as a hypergeometric distribution). We then used these probabilities to compute the expected value E[X] and the expected value of X2, E[X2]. Finally, we applied the variance formula σ2=E[X2]−(E[X])2 to find σ2=2514, and then multiplied by 100 to get the required value.
The final answer is 56.