Statistics I · Week 5 — Counting
978 words
5 min read
2026-08-16T00:00:00.000Z
Visual companion
Python
Type and operator map
Python Week 1: the first filter for runtime behavior
View
Revision summary
What this note is really saying
Short form
addition vs multiplication rule, factorials — concepts, pattern families, and traps for Quiz 2 week 5. # Week 5 — counting > **Quiz 2 scope:** Weeks 1–8 per IITM May 2026 foundation courses.

Week 5 — counting
Quiz 2 scope: Weeks 1–8 per IITM May 2026 foundation courses. Source baseline: IITM BS admissions important-dates calendar · May 2026 cycle. Times on assessments are operational conventions — verify hall ticket.
Part of the Quiz 2 prep system%20%C2%B7%20%5BWeeks%201%E2%80%938%20index%5D(.%2Fmay-2026-stats-quiz-2-weeks-1-8-prep) · Pattern atlas · Formula chains.
Week map
Events → addition OR → multiplication AND → factorial arrangements
Classify → Represent → Execute → Trap-check
- Recognize: Ask: When add vs multiply counts?
- Procedure: Disjoint options: add counts. Example: pick meal OR drink from separate disjoint menus.
- Variations / traps: Watch for: Multiplying when outcomes overlap (not disjoint).
Formula chain (compressed)
addition rule (or) → multiplication rule (and) → factorial n!.
- Addition rule —
|A∪B| = |A|+|B|−|A∩B|— either A or B - Multiplication —
k choices × m choices— sequential independent stages - Factorial —
n! = n×(n−1)×...×1— arrange n distinct - Disjoint —
A∩B = ∅ → |A∪B|=|A|+|B|— no overlap - With/without replacement —
denominator shrinks?— changes counts
Open interactive formula desk · Week 5 tab.
Deep study
Statistics I · Week 5 — Counting rules
Deep study for Quiz 2 week 5. Counting stories reduce to OR (add) vs AND (multiply) — identify structure before computing.
Week map
Outcome listing → addition rule (mutually exclusive) → multiplication rule (sequential stages) → factorial arrangements → tree diagrams.
Counting notation
- n! → “n factorial” → product n×(n−1)×⋯×1 → ways to arrange n distinct items in a line.
- 0!=1 → empty arrangement convention.
- Mutually exclusive → events cannot happen together → use addition.
- Independent stages → choices in sequence → multiply counts per stage.
Mini-example: 4!=4×3×2×1=24 orderings of four distinct books.
Addition rule (OR)
If task A can be done in n1 ways and task B in n2 ways, and they are disjoint (only A or only B):
ways=n1+n2
Example: pick soup or salad (not both) from menus of 3 soups and 4 salads → 3+4=7.
Multiplication rule (AND)
If stage 1 has n1 options and stage 2 has n2 options (independent sequential choices):
ways=n1×n2
Example: 3 shirts and 2 pants → 3×2=6 outfits.
Pattern families
Easy — OR count
Disjoint options: add counts. Identify that choices exclude each other.
Medium — AND stages
Multiply choices per stage. Tree diagram: branches multiply along a path.
Hard — Factorial setup
Arrange all n distinct objects in order → n!. Distinguish arrangement (order matters) from selection (week 6). Spot when objects are not all distinct (preview: divide later).
Worked mini-examples
Example 1 — Addition.
Travel by bus (4 routes) or metro (2 routes), not both → 4+2=6.
Example 2 — Multiplication.
PIN with 2 letters (26 each) then 3 digits (10 each) → 262×103 (if repetition allowed — state assumption).
Example 3 — Factorial.
Arrange 3 students in a row → 3!=6.
Example 4 — Tree.
Choice A/B then choice 1/2/3 → 2×3=6 paths.
Example 5 — Not disjoint trap.
Red shirt or blue shirt from 3 red and 2 blue → add works. “Shirt or pants” from same outfit pick may need careful reading.
Traps
- Multiplying when outcomes overlap (not mutually exclusive).
- Adding when stages should multiply.
- Forgetting 0!=1.
- Treating identical objects as distinct without reason.
- Double-counting paths on tree when branches reconverge.
Diagnostic (try yourself)
-
Menu: 5 vegetarian or 7 non-vegetarian mains (pick exactly one). How many choices?
-
Lock with 3 dials, 10 digits each. How many combinations (repetition allowed)?
-
In how many ways can 4 distinct trophies line up on a shelf?
-
A task has two sequential choices: 3 then 5 options. Total paths?
-
Why is 0! defined as 1? (One-sentence intuition.)
ChatGPT prep archive
Archived import for extra depth — complements the notes above, not official IITM material.
Core concepts
- Addition rule: mutually exclusive outcomes: ways = n1 + n2.
- Multiplication rule: sequential independent stages: ways = n1 × n2.
- Factorial n!: permutations of n distinct items: n!.
- Identify: OR vs AND story structure before computing.
Notation & vocabulary
| Rule | When |
|---|---|
| + | either A or B, not both |
| × | A then B stages |
| n! | all orderings of n distinct |
Pattern families
Easy — OR count
Disjoint options: add counts. Example: pick meal OR drink from separate disjoint menus.
Medium — AND stages
Shirt then pants: multiply choices per stage. Tree diagram multiplies along paths.
Hard — Factorial setup
Arrange all in line: n!. Identify whether problem is arrangement (order) vs selection (later week).
Drill these on the pattern atlas — filter to week 5.
Traps
- Multiplying when outcomes overlap (not disjoint).
- Adding when stages should multiply.
- 0! assumed 1 forgotten.
- Treat same objects as distinct without reason.
Retrieval prompts
- When add vs multiply counts?
- What does n! count?
- Value of 0!
Practice loop
- Read Deep study (if present) or core concepts once.
- Recite the formula chain without looking.
- Open one easy pattern on the interactive atlas for week 5.
- Attempt without solutions; mark studied after an honest try.
- Say one trap aloud before closing the tab.