— GUIDE —
COMBINATORICS INTERVIEW QUESTIONS
Most probability questions in quant interviews come down to counting. These ten questions cover the counting methods that come up most, with a check you can do out loud for each.
UPDATED 2026-09-16 · 8 MIN READ · BY THE VARIANCE TEAM
Most probability mistakes in interviews are really counting mistakes. Get the count right and the probability usually follows in one line.
These are original representative questions, not real or leaked firm questions.
One question to ask first: does order matter, and can things repeat? Most counting mistakes come from getting one of those two wrong.
| Situation | Count |
|---|---|
| Order matters, no repeats | n! / (n − k)! |
| Order doesn't matter, no repeats | C(n, k) |
| Identical items into distinct boxes | C(n + k − 1, k − 1) |
| Arrangements with repeated letters | n! / (a! b! …) |
Arrangements
- How many distinct arrangements of the letters in LEVEL are there?
Five letters, with L twice and E twice:
5! / (2! · 2!) = 30. - Six people sit at a round table. What is the probability that two particular people sit next to each other?
Seat the first person anywhere. The second person has five possible seats and two of them are next to the first, so the answer is 2/5. Counting every arrangement gives the same result more slowly:
2 · 4! / 5! = 48/120. Fixing one person first is the shortcut.
Choosing groups
- From 8 people, form a committee of 3 with one chair. How many ways?
Pick the committee and then the chair:
C(8,3) · 3 = 168. Or pick the chair and then two others:8 · C(7,2) = 168. When two methods agree, say so. It is the quickest check you can show. - How many five-card poker hands are a full house?
Pick the rank for the three of a kind, then its suits, then the rank for the pair, then its suits:
13 · C(4,3) · 12 · C(4,2) = 13 · 4 · 12 · 6 = 3,744. Use 12 for the second rank, not 13, because the pair can't share the first rank.
Stars and bars
- In how many ways can 10 identical sweets be shared among 4 children?
Lay out 10 stars and 3 bars that split them into four groups:
C(13, 3) = 286. - Same question, but each child gets at least one.
Give each child one sweet first, then share the remaining 6 freely:
C(9, 3) = 84. - In how many ways can three dice show a total of 10?
Let each die be
1 + xwith0 ≤ x ≤ 5. The x values then add up to 7. Without the upper limit there areC(9, 2) = 36ways. Now remove the cases where some x is 6 or more: set that x to 6 plus a remainder, and the remaining 1 is shared among three dice inC(3, 2) = 3ways. That happens for each of the 3 dice, so36 − 9 = 27. The probability is27/216 = 1/8.
Lattice paths
- Moving only right or up, how many paths go from (0,0) to (4,3)? How many pass through (2,1)?
A path is 7 moves, 3 of them up:
C(7,3) = 35. To pass through (2,1), multiply the two legs:C(3,1) · C(4,2) = 3 · 6 = 18.
Overlaps and derangements
- How many integers from 1 to 100 are divisible by 2 or 3?
Add the two counts, then subtract the numbers counted twice:
50 + 33 − 16 = 67. The 16 is the multiples of 6. - Four letters go into four addressed envelopes at random. What is the probability that no letter is in its own envelope?
Count the derangements of 4. You can use inclusion-exclusion,
24 − 24 + 12 − 4 + 1 = 9, or the recurrenceD(n) = (n − 1)(D(n−1) + D(n−2)), which gives3 · (2 + 1) = 9. So the probability is9/24 = 3/8. For large n it approaches1/e ≈ 0.368, and 0.375 is already close.
Checking your count
When you're unsure, shrink the problem until you can list every case. Two dice instead of three, or a 2×1 grid instead of 4×3. If your formula matches the small version, you can trust it on the big one. If it doesn't, you have found the mistake early.
Once counting is quick, the probability questions and probability shortcuts will feel much easier.