🎲 Counting & Probability — Problem Types
Master the common problem patterns and systematic solution approaches for counting and probability problems.
Basic Counting Problems
Arrangement Problems
Recognition: Questions asking for number of ways to arrange objects Template:
- Identify if order matters
- Check for restrictions
- Apply appropriate formula
- Check answer
Example: How many ways can 5 people sit in a row?
- Order matters: Yes (different arrangements)
- Restrictions: None
- Formula: 5! = 120
- Answer: 120 ways
Common variations:
- Linear arrangements
- Circular arrangements
- Arrangements with restrictions
- Arrangements with repetition
Selection Problems
Recognition: Questions asking for number of ways to choose objects Template:
- Identify if order matters
- Check for repetition
- Apply appropriate formula
- Check answer
Example: How many ways can 3 people be chosen from 5?
- Order matters: No (same group)
- Repetition: No
- Formula: C(5, 3) = 10
- Answer: 10 ways
Common variations:
- Combinations
- Combinations with repetition
- Selections with restrictions
- Selections with conditions
Probability Problems
Basic Probability
Recognition: Questions asking for probability of an event Template:
- Identify favorable outcomes
- Identify total outcomes
- Calculate probability
- Check answer
Example: What is the probability of rolling a 3 on a fair die?
- Favorable outcomes: 1 (rolling a 3)
- Total outcomes: 6 (rolling 1, 2, 3, 4, 5, or 6)
- Probability: 1/6
- Answer: 1/6
Common variations:
- Single event probability
- Complementary probability
- Probability with restrictions
- Probability with conditions
Compound Probability
Recognition: Questions asking for probability of multiple events Template:
- Identify if events are independent
- Apply appropriate formula
- Calculate probability
- Check answer
Example: What is the probability of rolling a 3 and then a 4 on two fair dice?
- Independent: Yes (first roll doesn’t affect second)
- Formula: P(3) × P(4) = (1/6) × (1/6) = 1/36
- Answer: 1/36
Common variations:
- Independent events
- Dependent events
- Mutually exclusive events
- Overlapping events
Word Problems
Arrangement Word Problems
Recognition: Real-world situations involving arrangements Template:
- Translate words to arrangement problem
- Identify restrictions
- Apply appropriate formula
- Check answer
Example: How many ways can 5 people sit in a row if 2 specific people must sit together?
- Translation: Linear arrangement with restriction
- Restriction: 2 people must sit together
- Formula: Treat 2 people as one unit: 4! × 2! = 48
- Answer: 48 ways
Common variations:
- Seating arrangements
- Queue arrangements
- Team arrangements
- Prize arrangements
Selection Word Problems
Recognition: Real-world situations involving selections Template:
- Translate words to selection problem
- Identify restrictions
- Apply appropriate formula
- Check answer
Example: How many ways can 3 people be chosen from 5 if 2 specific people cannot both be chosen?
- Translation: Combination with restriction
- Restriction: 2 people cannot both be chosen
- Formula: Total - Both chosen = C(5, 3) - C(3, 1) = 10 - 3 = 7
- Answer: 7 ways
Common variations:
- Committee selections
- Team selections
- Prize selections
- Sample selections
Distribution Problems
Identical Objects to Distinct Boxes
Recognition: Questions about distributing identical objects Template:
- Identify number of objects and boxes
- Apply stars and bars formula
- Calculate result
- Check answer
Example: How many ways can 3 identical balls be placed in 5 boxes?
- Objects: 3 identical balls
- Boxes: 5 distinct boxes
- Formula: C(5 + 3 - 1, 3) = C(7, 3) = 35
- Answer: 35 ways
Common variations:
- Identical objects to distinct boxes
- Identical objects to identical boxes
- Distinct objects to distinct boxes
- Distinct objects to identical boxes
Distinct Objects to Distinct Boxes
Recognition: Questions about distributing distinct objects Template:
- Identify number of objects and boxes
- Apply multiplication principle
- Calculate result
- Check answer
Example: How many ways can 3 distinct balls be placed in 5 boxes?
- Objects: 3 distinct balls
- Boxes: 5 distinct boxes
- Formula: 5³ = 125
- Answer: 125 ways
Common variations:
- Distinct objects to distinct boxes
- Distinct objects to identical boxes
- Identical objects to distinct boxes
- Identical objects to identical boxes
Probability Distribution Problems
Binomial Distribution
Recognition: Questions about number of successes in n trials Template:
- Identify n, p, and k
- Apply binomial formula
- Calculate probability
- Check answer
Example: What is the probability of getting exactly 3 heads in 5 coin flips?
- n: 5 trials
- p: 1/2 probability of success
- k: 3 successes
- Formula: C(5, 3) × (1/2)³ × (1/2)² = 10 × (1/8) × (1/4) = 5/16
- Answer: 5/16
Common variations:
- Exact number of successes
- At least k successes
- At most k successes
- Range of successes
Geometric Distribution
Recognition: Questions about number of trials until first success Template:
- Identify p and k
- Apply geometric formula
- Calculate probability
- Check answer
Example: What is the probability of getting the first head on the 4th flip?
- p: 1/2 probability of success
- k: 4 trials
- Formula: (1/2)³ × (1/2) = 1/16
- Answer: 1/16
Common variations:
- First success on kth trial
- First success within k trials
- First success after k trials
- Expected number of trials
Conditional Probability Problems
Basic Conditional Probability
Recognition: Questions about probability given a condition Template:
- Identify the condition
- Apply conditional probability formula
- Calculate probability
- Check answer
Example: What is the probability of drawing a red card given that it’s a heart?
- Condition: It’s a heart
- Formula: P(red|heart) = P(red and heart) / P(heart)
- Calculation: (13/52) / (13/52) = 1
- Answer: 1
Common variations:
- Probability given condition
- Probability with restrictions
- Probability with information
- Probability with constraints
Bayes’ Theorem
Recognition: Questions about probability given test results Template:
- Identify prior probabilities
- Identify likelihood probabilities
- Apply Bayes’ theorem
- Calculate probability
- Check answer
Example: In a medical test, 95% of people with the disease test positive, and 2% of people without the disease test positive. If 1% of the population has the disease, what is the probability that someone who tests positive actually has the disease?
- Prior: P(disease) = 0.01
- Likelihood: P(positive|disease) = 0.95, P(positive|no disease) = 0.02
- Formula: P(disease|positive) = P(positive|disease) × P(disease) / P(positive)
- Calculation: 0.95 × 0.01 / (0.95 × 0.01 + 0.02 × 0.99) ≈ 0.324
- Answer: 0.324
Common variations:
- Medical testing
- Quality control
- Spam filtering
- Risk assessment
Expected Value Problems
Basic Expected Value
Recognition: Questions about average value Template:
- Identify all possible values
- Identify probabilities
- Apply expected value formula
- Calculate result
- Check answer
Example: What is the expected value of rolling a fair die?
- Values: 1, 2, 3, 4, 5, 6
- Probabilities: 1/6 for each
- Formula: E(X) = Σ(x × P(x))
- Calculation: 1 × (1/6) + 2 × (1/6) + … + 6 × (1/6) = 3.5
- Answer: 3.5
Common variations:
- Single random variable
- Multiple random variables
- Expected value of functions
- Expected value with conditions
Expected Value Applications
Recognition: Questions about decision making Template:
- Identify all possible outcomes
- Identify values and probabilities
- Calculate expected value
- Make decision
- Check answer
Example: A game costs $5 to play. You roll a die and win $10 if you roll a 6, otherwise you win nothing. Should you play?
- Outcomes: Roll 6 (win $10), Roll 1-5 (win $0)
- Probabilities: 1/6 for 6, 5/6 for 1-5
- Expected value: (1/6) × $10 + (5/6) × $0 = $1.67
- Decision: Expected value ($1.67) < Cost ($5), so don’t play
- Answer: No, don’t play
Common variations:
- Game theory
- Investment decisions
- Insurance decisions
- Risk assessment
Common Mistakes and Fixes
Counting Mistakes
Mistake: Using permutations instead of combinations Fix: Use permutations when order matters, combinations when it doesn’t
Mistake: Forgetting to consider restrictions Fix: Always consider all restrictions and adjust accordingly
Mistake: Using wrong formula for repetition Fix: Use n^r for permutations with repetition, C(n + r - 1, r) for combinations with repetition
Probability Mistakes
Mistake: Not counting all possible outcomes Fix: Always count all possible outcomes
Mistake: Multiplying when events are not independent Fix: Only multiply when events are independent
Mistake: Forgetting to adjust for dependent events Fix: Always adjust for the first event in dependent events
Expected Value Mistakes
Mistake: Not considering all possible values Fix: Always consider all possible values of the random variable
Mistake: Forgetting linearity properties Fix: Always use linearity properties when applicable
Next: Formulas
Previous: Topics
Back to: Counting & Probability