The binomial distribution models the number of successes in a fixed number of repeated trials when each trial has only two outcomes, such as success or failure. It is useful in genetics, quality control, polling, and games of chance because it lets us predict how likely different counts of success are. A binomial setting requires the same probability of success on every trial and independence between trials. When those conditions hold, the distribution gives a complete picture of possible success counts from 0 up to n.

The key quantity is the probability of getting exactly k successes in n trials. This probability combines two ideas: how many different ways k successes can occur, and the probability of any one such arrangement. The formula uses combinations, written as C(n,k) or n choose k, to count arrangements. From the distribution, we can also find the mean, spread, and probabilities of ranges of outcomes, which helps connect theory to real data.

Key Facts

  • A binomial random variable X counts successes in n independent trials with constant success probability p.
  • Possible values are X=0,1,2,,nX = 0, 1, 2, \ldots, n.
  • P(X=k)=C(n,k)pk(1p)nkP(X = k) = C(n,k) p^k (1 - p)^{n - k}
  • C(n,k)=n!k!(nk)!C(n,k) = \frac{n!}{k!(n - k)!}
  • Mean: μ=np\mu = np
  • Variance: σ2=np(1p)\sigma^2 = np(1 - p), so standard deviation σ=np(1p)\sigma = \sqrt{np(1 - p)}

Vocabulary

Binomial distribution
A probability distribution that gives the chance of getting each possible number of successes in a fixed number of independent trials.
Trial
One repeated experiment or observation that has two possible outcomes in a binomial setting.
Success probability
The value p, which is the probability that a single trial results in success.
Combination
A counting method, written C(n,k), that tells how many ways k successes can be placed among n trials.
Independent trials
Trials are independent when the outcome of one trial does not change the probability of success on another trial.

Common Mistakes to Avoid

  • Using the binomial distribution when trials are not independent, because dependence changes the probability structure and makes the formula invalid.
  • Forgetting that p must stay the same on every trial, which is wrong because changing success probability means the trials do not fit a single binomial model.
  • Mixing up exactly kk with at least kk, because P(X=k)P(X = k) is one bar of the distribution while P(Xk)P(X \geq k) requires adding several probabilities.
  • Using C(n,k) incorrectly or swapping k and n in the formula, because the number of arrangements must be counted as C(n,k) with n as total trials and k as successes.

Practice Questions

  1. 1 A fair coin is flipped 6 times. What is the probability of getting exactly 4 heads?
  2. 2 A multiple choice quiz has 10 independent true or false questions, and a student guesses on all of them. Let XX be the number answered correctly. Find the mean and standard deviation of XX.
  3. 3 A factory checks whether the number of defective items in a sample follows a binomial model. Explain the conditions that must be true for a binomial distribution to be appropriate, and describe one situation where those conditions would fail.