binompdf vs binomcdf: which one do I use?
By Jude Wallis · Published
binompdf(n, p, x) returns the probability of exactly x successes. binomcdf(n, p, x) returns the cumulative probability of x or fewer. Match the wording: exactly means pdf, at most means cdf, and at least k means 1 - binomcdf(n, p, k-1).
AP Statistics: Unit 2 (topics 2.10 The Binomial Distribution). Binomial probabilities are Unit 2 Topic 2.10 of the Fall 2026 AP Statistics course, where calculating probabilities for a binomial distribution is a stated learning objective and the binomial probability function appears on the provided formula sheet.
pdf means exactly, cdf means at most
The difference comes down to one word. binompdf(n, p, x) returns the probability of exactly successes, written . binomcdf(n, p, x) returns the probability of x or fewer successes, written .
The c in binomcdf stands for cumulative, and cumulative means the command has already added every outcome from 0 through . So binomcdf(10, 0.3, 3) is the single-step version of .
In both commands is the random variable counting successes, is the fixed number of trials, and is the probability of success on a single trial. If those pieces do not describe your situation, neither command applies, so check the setup first with the binomial probability guide.
Where the commands live and what order to type
Both sit in the distribution menu, reached with 2nd VARS. The menu is labeled DISTR, and the binomial entries sit below the normal and t entries, so you will scroll. The normal commands in the same menu are covered in normalcdf and invNorm on the TI-84.
Item numbers differ across TI-84 models, so scroll to the name rather than memorizing a number. binompdf and binomcdf sit next to each other in the list, which is exactly why the wrong one gets selected.
The argument order is trials, then the success probability, then the count: binompdf(n, p, x). Some calculators open a fill-in screen with lines for the number of trials, , and the x value, and others expect the three values inside parentheses separated by commas. The order does not change.
Leaving off the final count returns a whole list of probabilities, one for each from 0 to , instead of a single number. That is handy for building a probability distribution table and confusing if you did not mean to do it.
The decision table
Translate the wording into symbols first, then read the command off the table. Getting the boundary right matters more than the typing.
| Wording | Symbols | Command |
|---|---|---|
| Exactly | binompdf(n, p, k) | |
| At most , or fewer, no more than | binomcdf(n, p, k) | |
| Fewer than , less than | binomcdf(n, p, k-1) | |
| At least , or more | 1 - binomcdf(n, p, k-1) | |
| More than , greater than | 1 - binomcdf(n, p, k) | |
| Between and , inclusive | binomcdf(n, p, b) - binomcdf(n, p, a-1) |
Two pairs of rows cause most of the trouble. At most includes itself while fewer than excludes it, so the two differ by one whole term. The same one-term gap separates at least from more than.
Why at least needs the complement
There is no calculator command for at least, so you build it from the cdf. At least is the exact opposite of at most , because a count either sits below or sits at and above, with nothing in between:
On a calculator that is 1 - binomcdf(n, p, k-1). The is where the errors live. Subtracting binomcdf(n, p, k) instead would strip out the term the question told you to keep.
Test the rule on the smallest case whenever you doubt it. At least 1 should be , and the rule gives , which is the same thing because . If your version of the rule fails that test, the offset is wrong. The at least one guide works through that case in detail.
Ranges between two counts
For between and inclusive, subtract two cumulative values: binomcdf(n, p, b) - binomcdf(n, p, a-1). Subtracting binomcdf(n, p, a) instead would delete , which the word inclusive told you to keep.
Read the endpoints carefully, because ordinary English is vague here. Look for inclusive, or for from 3 to 6, or for more than 3 but fewer than 6, to decide whether the endpoints belong in the range.
On a short range you can skip the subtraction and add exact probabilities instead. For and , is binompdf(10, 0.3, 3) + binompdf(10, 0.3, 4) = .
Mistakes that turn a correct setup into a wrong answer
- Using binompdf for a range. binompdf answers only the exactly question. If the wording is at most, at least, fewer than, or more than, binomcdf has to appear somewhere in your expression.
- Using binomcdf for exactly. binomcdf(10, 0.3, 3) is 0.6496, while binompdf(10, 0.3, 3) is 0.2668. A cumulative value is always at least as large as the matching exact value, so a surprisingly big probability is a hint you grabbed the cdf.
- Going off by one at the boundary. At least 4 uses binomcdf(10, 0.3, 3), not binomcdf(10, 0.3, 4). Writing the symbol statement before you type prevents this one.
- **Swapping and .** Trials come first, then the probability. Because sits between 0 and 1 and is a whole number, a calculator error or an absurd result usually traces back here.
- Using a binomial when the setup is not binomial. Drawing without replacement from a small population breaks independence, and counting trials until the first success is geometric rather than binomial.
Checking a calculator answer against the formula
The binomial probability function is on the provided AP formula sheet, so any binompdf value can be confirmed by hand:
The coefficient , read n choose x, counts the arrangements that produce successes. The factor covers the successes and covers the remaining failures.
A cumulative value takes more arithmetic but no new ideas, since binomcdf(n, p, x) is that same formula evaluated at and summed. Both worked examples below do it term by term, and the binomial probability calculator takes the same three inputs if you want a second opinion.
One more check costs nothing. The mean of a binomial is (mu sub X, the expected count), so for and the average number of successes is 3. Probabilities for counts near 3 should be sizeable, and probabilities for counts near 10 should be tiny.
How this fits the Fall 2026 AP course
The binomial distribution is Topic 2.10 in the Fall 2026 AP Statistics course, with the first exam in May 2027. It sits in Unit 2, Probability, Random Variables, and Probability Distributions, which carries 15 to 25 percent of the multiple-choice section. Calculating probabilities for a binomial distribution is a stated learning objective, and the probability function appears on the provided formula sheet.
The Course and Exam Description also states that a graphing calculator with statistical capabilities is expected for both sections of the exam, so these commands are available throughout. What they do not do is write your reasoning for you.
On free response, the command alone leaves out the setup. Define the random variable, say that it is binomial with the values of and , write the probability statement in symbols, then give the number and a sentence in context. A grader reading only binomcdf(10, 0.3, 3) cannot tell whether you understood the boundary or guessed it.
For the structure of a written response, see the AP Statistics FRQ guide and reading calculator output. The official course page carries the framework itself.
Exactly 3 successes with n = 10 and p = 0.3
An inspector checks 10 independently produced items, each defective with probability 0.3. Let count the defective items. Find .
Check the setup: two outcomes per item, a fixed 10 trials, the same each time, and independent items, so is binomial with and .
The word exactly points to binompdf, so the command is binompdf(10, 0.3, 3).
The calculator returns 0.2668.
Verify with the formula. The coefficient is .
Success factor: .
Failure factor: . Building it up, , , , , , .
Multiply the three pieces: , then .
Round to four decimals: 0.2668, matching binompdf.
, about a 26.68% chance of exactly 3 defective items. The command is binompdf(10, 0.3, 3).
At least 4 successes with n = 10 and p = 0.3
Same setting: 10 independent items, each defective with probability 0.3, and counts the defectives. Find .
Translate the wording. At least 4 means , so the complement is , and .
Apply the rule with , so : the command is 1 - binomcdf(10, 0.3, 3).
The calculator gives binomcdf(10, 0.3, 3) = 0.6496, so .
Verify the cumulative value term by term. .
.
.
, computed in the previous example.
Add the four terms: , then , then . That matches binomcdf(10, 0.3, 3) = 0.6496.
Subtract from 1: , which rounds to 0.3504.
Sanity check: the mean is , so at least 4 asks for the chance of landing above average. A value near 0.35 is reasonable, while a value above 0.5 would not be.
, about a 35.04% chance of at least 4 defective items. The command is 1 - binomcdf(10, 0.3, 3).
Frequently asked questions
Which command do I use for 'at least'?
Neither one on its own. Use the complement: , which is 1 - binomcdf(n, p, k-1). For at least 4 out of 10 with , that is 1 - binomcdf(10, 0.3, 3) = 1 - 0.6496 = 0.3504.
Does binomcdf include the x value I type?
Yes. binomcdf(n, p, x) is , so the count itself is part of the total. For fewer than , which excludes it, drop the boundary by one and use binomcdf(n, p, x-1).
Is binompdf really giving me a probability?
Yes. The name borrows pdf from continuous distributions, where such a function gives a density rather than a probability. For a discrete count like a binomial, binompdf(n, p, x) returns an actual probability, .
What if my calculator does not have binompdf and binomcdf?
Use the formula , which is on the provided AP formula sheet, and add terms for a cumulative probability. Any calculator with a factorial or combination key can do it, and the arithmetic is short for small .
Is the binomial distribution on the Fall 2026 AP exam?
Yes. It is Unit 2 Topic 2.10, and Unit 2 carries 15 to 25 percent of the multiple-choice section. The binomial probability function, the mean , and the standard deviation all appear on the provided formula sheet.