Chatty reference · stats1 week 5
48 words
1 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
ChatGPT archive slice for week 5. # 25.

25. Stats W5 — Counting
Concepts:
- Addition rule
- Multiplication rule
- Factorials
Factorial:
n!=n(n−1)(n−2)⋯1
Addition rule
Use when alternatives are mutually exclusive:
N=N1+N2+⋯
Multiplication rule
Use for sequential choices:
N=N1N2⋯
The real skill is recognizing whether a problem is additive or multiplicative.