Probability & Counting
Card & Combinatorics Problems
Overview
Card problems are pure combinatorics: count favorables, divide by total. The mental model is a fraction: (ways to get what you want) / (total ways). For card hands, total is always C(52,k). For favorable, multiply choices for each independent requirement. The hypergeometric distribution formalizes 'sampling without replacement'.
How to Recognize
- โDrawing cards from a standard deck without replacement
- โAsked for probability of a specific hand (flush, pair, etc.)
- โProblems with labeled/unlabeled items, 'choose k from n'
Step-by-Step Approach
- 1.Total outcomes = C(52,k) for drawing k cards
- 2.Favorable outcomes = product of combinations for each requirement
- 3.Use hypergeometric for sampling without replacement
- 4.For ordered arrangements: use permutations P(n,k) = n!/(nโk)!
- 5.Check: are order and repetition relevant?
Key Formulas
Worked Examples
Problem
In 5-card poker, what is P(full house) โ three of one rank, two of another?
Solution
Choose the rank for the triple: C(13,1) = 13 ways.
Choose 3 suits for the triple from 4 available: C(4,3) = 4 ways.
Choose the rank for the pair: C(12,1) = 12 ways (any of remaining 12 ranks).
Choose 2 suits for the pair: C(4,2) = 6 ways.
Favorable = 13ยท4ยท12ยท6 = 3,744. Total = C(52,5) = 2,598,960.
P = 3744/2598960 โ 0.144%.
Answer
. Framework: multiply independent choices for each component of the hand.
Common Mistakes
- !
Multiplying when you should add, or adding when you should multiply. The rule: AND (intersection of independent events) โ multiply. OR (union of mutually exclusive events) โ add.
- !
Forgetting to divide by repetitions when items are identical. C(n,k) already accounts for this.
- !
Using permutations when order doesn't matter (poker hands, for example).
- !
For 'at least one' โ always use the complement (1 โ P(none)) rather than trying to enumerate all cases.
Practice Problems
Click "Show Answer" to revealWhat is the probability of drawing exactly 2 red cards in a 4-card hand?
A bag has 5 red and 3 blue balls. Draw 3 without replacement. What is P(2 red, 1 blue)?
How many ways can you arrange the letters in 'MISSISSIPPI'?