How would I do a question like this:
Create the probability distribution table (correct to 4 decimal places) for a binomial distribution with n=3 and p=0.4. I also have to show the full calculation for each row.
Solution:
X follows the Binomial(n = 3 , p = 0.4)
Using binomial probability formula ,
P(X = x) = (n C x) * px * (1 - p)n - x ; x = 0 ,1 , 2 , ....., n
Here , n = 3
So , possible values if x are 0,1,2,3
P(X = 0) = (3C 0) * 0.40 * (1 - 0.4)3 - 0 = (3C 0) * 0.40 * (0.6)3 = 0.216
P(X = 1) = (3C 1) * 0.41 * (1 - 0.4)3 -1 = (3C 1) * 0.41* (0.6)2 = 0.432
P(X = 2) = (3C 2) * 0.42* (1 - 0.4)3 - 2 = (3C 2) * 0.42* (0.6)1 = 0.288
P(X = 3) = (3C 3) * 0.43 * (1 - 0.4)3 - 3 = (3C 3) * 0.43 * (0.6)0 = 0.064
x | 0 | 1 | 2 | 3 |
P(X = x) | 0.216 | 0.432 | 0.288 | 0.064 |
Get Answers For Free
Most questions answered within 1 hours.