Unit 11 · Counting and Probability 计数与概率
By the end of this chapter you can:
- Apply the addition and multiplication principles to count outcomes in multi-step tasks
- Compute permutations and combinations and know when to use each
- Calculate probabilities in classical (equally-likely) models using favorable / total outcomes
- Use independence and the addition rule — including the inclusion-exclusion correction — to find probabilities of compound events
Exam weight on past CSCA papers: ~6% (3 of 48 MCQs).
11.1 Counting Principles 计数原理
The two fundamental rules
Addition Principle (加法原理): If task can be done in ways and task can be done in ways, and the two tasks are mutually exclusive (doing prevents doing ), then either or can be done in ways.
Multiplication Principle (乘法原理): If a multi-step procedure has step 1 done in ways and step 2 done in ways (regardless of what step 1 chose), then the complete procedure can be done in ways.
🔑 Key question to distinguish them: Does your final result require one action (use addition) or does it require several sequential actions (use multiplication)?
Worked Example 11.1.A
A school offers 4 science electives and 3 humanities electives. A student must choose either one science or one humanities elective for a free period. In how many ways can they choose?
Solution. The student picks from science or humanities — these are mutually exclusive categories. Use the Addition Principle:
Contrast: If the student instead had to pick one science and one humanities elective, the answer would be (Multiplication Principle).
⚠️ Trap — "or" does not always mean add: The addition principle requires truly mutually exclusive options. If some choices belong to both categories simultaneously, you must subtract the overlap (see 11.5 for inclusion-exclusion). Only add directly when the categories cannot overlap.
The multiplication principle across multiple steps
For a procedure with independent steps with choices respectively:
Example: A password is 3 letters (A–Z) followed by 2 digits (0–9), no restrictions.
11.2 Permutations and Combinations 排列与组合
Permutations — order matters 排列(顺序有意义)
A permutation is an ordered selection of objects from distinct objects.
Reading: "How many ways to arrange items chosen from ?" Fill slots: the first has choices, the second has , …, the -th has .
Special cases:
- — all objects arranged in a line
Combinations — order does not matter 组合(顺序无意义)
A combination is an unordered selection of objects from distinct objects.
The factor divides out the overcount from all orderings of the same chosen objects.
Pascal-like identities (useful for verification)
🔑 Permutation vs. Combination decision rule:
- Order matters (rank, row seats, passwords, race positions) →
- Order does not matter (committee, hand of cards, sample, group) →
Worked Example 11.2.A
A team of 10 players must elect a captain and a vice-captain (two different roles). Then separately, a 3-player sub-group is chosen from the remaining 8 for a special task. How many ways can this be done?
Solution.
Step 1 — Choose captain and vice-captain (order matters — the roles are distinct):
Step 2 — Choose 3 players from the remaining 8 (order does not matter — it is just a group):
Step 3 — Multiply (two independent sequential steps):
⚠️ Trap — counting with restrictions: When a problem says "must include person X" or "cannot place A next to B," handle the restriction first (fix what is forced), then count the remaining free choices. Do not apply the formula to the full pool and subtract after, unless the subtraction is straightforward.
11.3 Classical Probability 古典概型
Definition
A classical probability model (古典概型) has a finite sample space where every outcome is equally likely. The probability of event is:
Basic properties:
| Property | Formula |
|---|---|
| Non-negativity | |
| Certainty | |
| Complement rule 对立事件 | |
| Impossible event |
Worked Example 11.3.A
A bag contains 5 red balls and 3 blue balls. Two balls are drawn at random without replacement. What is the probability that both balls are red?
Solution.
Total ways to choose 2 from 8 (unordered — any pair is equally likely):
Favorable outcomes (both red — choose 2 from the 5 red balls):
🔑 Why combinations, not permutations? When drawing without replacement and asking for a group (not "which one drawn first"), the draw is unordered — use for both numerator and denominator. The equally-likely assumption holds because each unordered pair is equally likely to be selected.
11.4 Independent Events 独立事件
Definition
Two events and are independent (独立) if knowing that occurred gives no information about whether occurs:
This is both the definition and the computational rule. If the equation holds, the events are independent; if it fails, they are dependent.
Extension to three or more events: , , are mutually independent if
(all pairwise independence conditions must also hold separately).
With replacement vs. without replacement
| Scenario | Are successive draws independent? |
|---|---|
| Draw from bag, replace before next draw (放回抽样) | Yes — pool resets each time |
| Draw from bag, no replacement (不放回抽样) | No — pool shrinks, later probabilities shift |
🔑 The with/without replacement distinction is one of the most commonly tested traps on CSCA. Always check whether the problem says 放回 or 不放回 before writing down any probability formula.
Worked Example 11.4.A
A fair coin is flipped and a fair six-sided die is rolled. What is the probability of getting heads and a 4?
Solution. The coin and die are physically independent.
Repeated independent trials — "at least once" shortcut
If the probability of success in one trial is , and independent trials are conducted:
⚠️ Trap — "at least once" problems: Students often try to add , which is tedious and error-prone. Always use the complement: .
11.5 Mutually Exclusive Events and the Addition Rule 互斥事件与加法公式
General addition rule (inclusive form)
For any two events and :
The term corrects for outcomes counted in both and (inclusion-exclusion).
Mutually exclusive events (互斥事件)
Events and are mutually exclusive (also called disjoint, 互斥) if they cannot both occur:
The addition rule then simplifies to:
For a collection of pairwise mutually exclusive events :
Complementary events (对立事件) — a special case
(the complement of ) is always mutually exclusive with , and together they exhaust :
⚠️ Trap — forgetting the overlap in the general addition rule: A common error is writing when and are not mutually exclusive. This overcounts the intersection. Always check whether before simplifying.
Worked Example 11.5.A
A card is drawn at random from a standard 52-card deck. Find the probability that the card is a king or a heart.
Solution. Let = "king", = "heart."
These events are not mutually exclusive (the king of hearts is both). Apply the general rule:
Try it! 自测练习
Q1. A student can travel to school by bus (3 routes) or by metro (2 lines). How many total travel options are there?
Q2. From 6 students, how many ways can a president, vice-president, and secretary be elected (three distinct roles)?
Q3. A committee of 4 is chosen at random from 9 people. What is the probability that a specific person, Alice, is included?
Q4. A fair die is rolled twice (independent rolls). What is the probability of getting a number greater than 4 on both rolls?
Q5. , , . Find .
Answers & explanations
The routes are mutually exclusive (bus or metro — cannot take both simultaneously). Addition Principle: options.
Three distinct roles from 6 students — order matters (different roles mean different outcomes). .
Total committees of 4 from 9: . Committees containing Alice: Alice is fixed, choose 3 from the remaining 8: . Probability .
(faces 5 and 6). Independent rolls multiply: .
By the general addition rule: .
📌 Chapter summary
Topic Key formula / rule 11.1 Counting principles Mutually exclusive options → add; sequential steps → multiply 11.2 Permutations — order matters 11.2 Combinations — order does not matter 11.2 Pascal identity ; sum of row 11.3 Classical probability — equally likely outcomes only 11.3 Complement — shortcut for "at least one" 11.4 Independence ; with replacement → independent 11.5 Addition rule 11.5 Mutually exclusive →
What's next → Unit 12 covers Statistics: mean, variance, and frequency distributions — where probability models connect to describing real data sets.