Calculate probabilities, expected value, and variance for the number of successes in a fixed number of independent trials
k | P(X = k) | P(X ≤ k) |
---|
The binomial distribution models the number of successes in a fixed number of independent trials, each with the same probability of success.
where \(\binom{n}{k}\) is the binomial coefficient representing the number of ways to choose k items from n items.
The binomial distribution is a discrete probability distribution that describes the number of successes in a fixed number of independent Bernoulli trials, each with the same probability of success.
A random variable X follows a binomial distribution with parameters n and p, written as X ~ Bin(n, p), if:
where \(\binom{n}{k} = \frac{n!}{k!(n-k)!}\) is the binomial coefficient.
For large values of n, the binomial distribution can be approximated by a normal distribution with mean μ = np and variance σ² = np(1-p), particularly when:
Suppose you flip a fair coin 10 times. What is the probability of getting exactly 6 heads?
This is a binomial distribution with n = 10 (number of flips) and p = 0.5 (probability of heads on each flip).
We want to find P(X = 6), where X is the number of heads.
The probability of getting exactly 6 heads in 10 flips is approximately 0.2051 or 20.51%.
A student takes a 20-question multiple-choice test where each question has 4 options. If the student guesses randomly on each question, what is the probability that they will get at least 8 questions correct?
This is a binomial distribution with n = 20 (number of questions) and p = 0.25 (probability of guessing correctly with 4 options).
We want to find P(X ≥ 8), which is the same as 1 - P(X ≤ 7).
Calculating this sum:
The probability of getting at least 8 questions correct by random guessing is approximately 0.2424 or 24.24%.
A manufacturing process produces items with a 3% defect rate. If a quality inspector randomly selects 50 items for inspection, what is the probability that fewer than 2 items are defective?
This is a binomial distribution with n = 50 (number of items inspected) and p = 0.03 (probability of an item being defective).
We want to find P(X < 2) = P(X = 0) + P(X = 1).
The probability of finding fewer than 2 defective items is approximately 0.5558 or 55.58%.
1. A basketball player makes 70% of his free throws. If he attempts 8 free throws in a game, what is the probability that he makes exactly 6 of them?
2. The mean of a binomial distribution with n = 15 and p = 0.4 is:
3. Which of the following is NOT a requirement for a binomial experiment?