Binomial vs geometric: how to tell them apart

By Jude Wallis · Published

Both distributions assume independent trials with the same success probability each time. Use the binomial distribution when you have a fixed number of trials and count the successes. Use the geometric distribution when you count trials until the first success.

AP Statistics: Unit 2 (topics 2.8 Introduction to Random Variables and Probability Distributions, 2.9 Parameters of Random Variables, 2.10 The Binomial Distribution). The binomial distribution is AP Unit 2 topic 2.10, while the geometric distribution was removed from the AP exam starting with the Fall 2026 course (first exam May 2027) and now appears only in college intro statistics.

Binomial vs geometric: the one difference that matters

Both the binomial and geometric distributions describe a run of independent trials where each trial ends in success or failure and the probability of success, written pp (the success probability), stays the same on every trial.

The difference is what you count.

  • Binomial: the number of trials is fixed ahead of time (call it nn, the number of trials), and you count how many successes occur.
  • Geometric: the number of trials is not fixed, and you count how many trials it takes to get the first success.

So when a problem hands you a set number of trials and asks how many successes, it is binomial. When it asks how long you wait for the first success, it is geometric. That single question, fixed count of trials or waiting for the first success, decides which distribution you use.

The conditions binomial and geometric share

Before you pick a formula, check that the setting fits these conditions. Both distributions need all of them.

  • Two outcomes per trial. Each trial ends in success or failure. "Success" just labels the outcome you are counting, even if that outcome is something bad like a defect.
  • Independent trials. The result of one trial does not change the probability on any other trial.
  • Constant success probability. The value of pp is the same on every trial.

The two distributions split on one more condition:

  • For the binomial distribution, the number of trials nn is fixed before you start, and XX (the count of successes) can be any whole number from 00 to nn.
  • For the geometric distribution, you keep going until the first success, so the number of trials is itself a random outcome. Here XX (the trial of the first success) can be 1,2,3,1, 2, 3, \ldots with no upper limit.

Is this binomial or geometric? A quick check

Read the question and ask what is fixed and what you are counting.

  1. Is the number of trials fixed? If yes, and you count successes, use the binomial distribution. Phrases like "in 10 attempts" or "out of 20 patients" point to a fixed nn.
  2. Are you waiting for the first success? If the question asks for the probability that the first success happens on a particular trial, or how many trials it takes, use the geometric distribution. Phrases like "until the first" or "the first defective is the 4th one" point to a geometric setting.

One quick tell: if the answer to "how many trials?" is a number the problem gives you, it is binomial. If "how many trials?" is the thing you are solving for, it is geometric.

Binomial and geometric side by side

This table lines up the pieces you use most. In the geometric column, XX counts trials starting from the first one.

FeatureBinomialGeometric
Number of trialsFixed at nnNot fixed
What XX countsNumber of successesTrial of the first success
Possible values of XX00 to nn1,2,3,1, 2, 3, \ldots
Probability formula(nx)px(1p)nx\binom{n}{x} p^x (1-p)^{n-x}(1p)x1p(1-p)^{x-1} p
Mean of XXnpnp1/p1/p

Notice that both formulas are built from the same two pieces: a run of failures each with probability 1p1-p, and successes each with probability pp. The binomial counts a fixed batch; the geometric stops at the first success.

The formulas for each distribution

Binomial. For a fixed number of trials nn and success probability pp, the probability of exactly xx successes is

P(X=x)=(nx)px(1p)nxP(X=x) = \binom{n}{x} p^x (1-p)^{n-x}

where (nx)\binom{n}{x} is the number of ways to choose which xx of the nn trials are the successes. The mean (the expected number of successes) and standard deviation are

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

Here μX\mu_X (mu, the mean of XX) and σX\sigma_X (sigma, the standard deviation of XX) summarize the whole distribution. This is the version printed on the AP formula sheet.

Geometric. Let XX be the trial on which the first success occurs, so XX can be 1,2,3,1, 2, 3, \ldots. The probability that the first success lands on trial xx is

P(X=x)=(1p)x1pP(X=x) = (1-p)^{x-1}\, p

You need x1x-1 failures first, each with probability 1p1-p, then one success with probability pp. The mean number of trials until the first success is μX=1p\mu_X = \frac{1}{p}, and the standard deviation is σX=1pp\sigma_X = \frac{\sqrt{1-p}}{p}. This is the standard college form; the AP formula sheet does not list it.

Common mix-ups to avoid

A few slips show up again and again once you know the two formulas.

  • **Reading a fixed nn into a geometric problem.** If the wording says "until the first success," there is no nn to plug in. The trial number is what you solve for.
  • **Forgetting the x1x-1 in the geometric exponent.** The first success on trial xx needs exactly x1x-1 failures before it, so the exponent is x1x-1, not xx.
  • Mislabeling the success. Pick which outcome counts as a success and keep pp tied to that outcome. If the defect is the success, then pp is the defect rate, and 1p1-p is the chance of a good item.
  • Using the binomial mean for a geometric problem. The binomial mean is npnp; the geometric mean is 1/p1/p. They are not interchangeable.

When you are unsure, go back to the decision check above and name what is fixed and what you are counting before you touch a formula.

AP note: the geometric distribution and the Fall 2026 exam

The binomial distribution is part of the redesigned AP Statistics course as Unit 2, topic 2.10. You are expected to know its conditions, formula, mean, and standard deviation.

The geometric distribution was removed from the AP Statistics exam starting with the Fall 2026 course (first exam May 2027). It stays a standard topic in college introductory statistics, so it is worth knowing if you plan to take a college stats course or want the fuller picture. If you are studying only for the AP exam, put your time into the binomial distribution instead.

You can run the numbers with the binomial probability calculator, and work through more examples in the binomial probability guide.

Classify and compute: a binomial free-throw problem

A basketball player makes 70% of her free throws, and each shot is independent. She shoots 10 free throws. What is the probability she makes exactly 7?

  1. Classify: the number of trials is fixed at n=10n = 10, and you count successes (makes). This is binomial with n=10n = 10 and success probability p=0.70p = 0.70.

  2. Write the formula for exactly x=7x = 7 successes: P(X=7)=(107)(0.70)7(0.30)3P(X=7) = \binom{10}{7}(0.70)^7 (0.30)^3.

  3. Count the combinations: (107)=(103)=10×9×83×2×1=120\binom{10}{7} = \binom{10}{3} = \frac{10 \times 9 \times 8}{3 \times 2 \times 1} = 120.

  4. Raise to powers: (0.70)7=0.0823543(0.70)^7 = 0.0823543 and (0.30)3=0.027(0.30)^3 = 0.027.

  5. Multiply the pieces: 120×0.0823543=9.882516120 \times 0.0823543 = 9.882516, then 9.882516×0.027=0.266827939.882516 \times 0.027 = 0.26682793.

P(X=7)0.2668P(X=7) \approx 0.2668, so there is about a 26.7% chance she makes exactly 7 of her 10 free throws. For reference, the mean is μX=np=10×0.70=7\mu_X = np = 10 \times 0.70 = 7 makes.

Classify and compute: a geometric inspection problem

On a production line, each item independently has a 15% chance of being defective. An inspector checks items one at a time. What is the probability that the first defective item is the 4th one checked?

  1. Classify: there is no fixed number of trials, and you are waiting for the first success (a defective item). This is geometric with success probability p=0.15p = 0.15. Here "success" means finding a defect.

  2. You want the first success on trial x=4x = 4, so use P(X=4)=(10.15)41(0.15)=(0.85)3(0.15)P(X=4) = (1-0.15)^{4-1}(0.15) = (0.85)^3 (0.15).

  3. Raise to the power: (0.85)2=0.7225(0.85)^2 = 0.7225, then (0.85)3=0.614125(0.85)^3 = 0.614125.

  4. Multiply by pp: 0.614125×0.15=0.092118750.614125 \times 0.15 = 0.09211875.

P(X=4)0.0921P(X=4) \approx 0.0921, about a 9.2% chance the first defective item is the 4th one checked. On average the first defect appears at trial μX=1/p=1/0.156.67\mu_X = 1/p = 1/0.15 \approx 6.67.

Frequently asked questions

Can the same problem be both binomial and geometric?

No. In a binomial-vs-geometric setting, a question either fixes the number of trials, which makes it binomial, or waits for the first success, which makes it geometric. The same story can lead to both kinds of questions, but any one calculation uses just one distribution.

Does "success" always mean a good outcome?

No. In statistics, "success" just labels the outcome you are counting. If you are counting defective items or missed shots, that outcome is the "success" for the formula, even though it is not good in real life.

Do I need the geometric distribution for the AP Statistics exam?

No. The geometric distribution was removed from the AP Statistics exam starting with the Fall 2026 course (first exam May 2027). The binomial distribution is still tested as Unit 2 topic 2.10, and geometric remains standard in college intro statistics.