Binomial Distribution

Apply the binomial distribution to count successes in fixed trials with conditions BINS.

🎯⭐ INTERACTIVE LESSON

Try the Interactive Version!

Learn step-by-step with practice exercises built right in.

Start Interactive Lesson →

Binomial Distribution

Binomial Setting (BINS)

A random variable XX follows a binomial distribution if:

  • Binary: Each trial has exactly two outcomes (success/failure)
  • Independent: Trials are independent of each other
  • Number: Fixed number of trials nn
  • Success: Same probability of success pp on each trial

Notation: XB(n,p)X \sim B(n, p) or XBinomial(n,p)X \sim \text{Binomial}(n, p)

Binomial Probability Formula

The probability of exactly kk successes in nn trials:

P(X=k)=(nk)pk(1p)nkP(X = k) = \binom{n}{k} p^k (1-p)^{n-k}

where (nk)=n!k!(nk)!\binom{n}{k} = \frac{n!}{k!(n-k)!} is the binomial coefficient ("n choose k").

Mean and Standard Deviation

μX=np\mu_X = np

σX=np(1p)\sigma_X = \sqrt{np(1-p)}

Calculator Commands

  • P(X=k)P(X = k): binompdf(nn, pp, kk)
  • P(Xk)P(X \leq k): binomcdf(nn, pp, kk)
  • P(Xk)P(X \geq k): 1 − binomcdf(nn, pp, k1k-1)

The 10% Condition

When sampling without replacement, trials are not truly independent. However, we can treat them as approximately independent if:

n<0.10Nn < 0.10 \cdot N

where NN is the population size. This is the 10% condition.

Example

A basketball player makes 75% of free throws. In 10 attempts, what's the probability of making exactly 8?

P(X=8)=(108)(0.75)8(0.25)2=45(0.1001)(0.0625)0.2816P(X = 8) = \binom{10}{8}(0.75)^8(0.25)^2 = 45(0.1001)(0.0625) \approx 0.2816

Shape of Binomial Distribution

  • If p=0.5p = 0.5: symmetric
  • If p<0.5p < 0.5: skewed right
  • If p>0.5p > 0.5: skewed left
  • As nn increases, the distribution becomes more symmetric

Normal Approximation

When np10np \geq 10 and n(1p)10n(1-p) \geq 10, the binomial distribution is approximately Normal: XN(np,np(1p))X \approx N(np, \sqrt{np(1-p)})

AP Tip: Always verify the BINS conditions before using the binomial distribution. State each condition explicitly on free-response questions.

📚 Practice Problems

No example problems available yet.