Assumption involves:
- Only 2 possible outcomes for each trial: success and failure
- The probability of success is the same for each trial
- There are n trials, where n is constant
- The n trial are independent
for x = 0, 1, 2, ... , n
Expected Value (mean) E[X]= np ; Variance V(x) = np(1-p)
discriptions:
n : trials
x : successes
n - x : failures
p : probability of success
1-p : probability of failure
| n|
| x| : called binomial coefficient , which is the no of combination of x objects selected from a set of n object = n! / (r!(n-r)!)
MATLAB EXAMPLE on Binomial distribution using both probability mass function and cummulative distribution function.
No comments:
Post a Comment