Probability distributions assign probabilities to outcomes. The binomial distribution handles counts of successes in repeated trials, and the normal distribution handles continuous bell-shaped data through z-scores.
Binomial PMF:P(X = k) = C(n,k)p^k(1-p)^(n-k) - Exact probability of k successes in n independent Bernoulli trials.
Z-Score:z = (x - mu) / sigma - Standardizes a value by measuring standard deviations from the mean.
There are C(10, 3) = 120 ways to place the 3 heads, each with probability 0.5 to the power 10, giving 120 / 1024, which is about an 11.7% chance.
Frequently asked questions
What is the difference between a PMF and a CDF?
The PMF gives the probability of exactly one value, such as exactly 3 heads in the worked example. The CDF accumulates: it gives the probability of that value or less, so the binomial CDF at 3 is the sum of the PMF at 0, 1, 2 and 3.
When is the binomial distribution appropriate?
When you count successes across a fixed number of independent trials that each have the same probability of success and only two outcomes. Ten flips of a fair coin meet all four conditions, which is why the example uses n = 10 and p = 0.5.
What does a z-score represent?
A z-score measures how many standard deviations a value sits from the mean: z = (x - mu) / sigma. A z of 2 means two standard deviations above the mean, and z-scores let any normal distribution be read off the standard normal table.