Denumerable Sets and Partial Order Relations
Core Titles
Key headlines and terms for quick recall- Countable / Denumerable set — bijection with
- Uncountable — no such bijection (e.g., )
- Cantor's diagonal argument
- Partial order = reflexive + antisymmetric + transitive
- Poset
- Hasse diagram
- Total order, Chain, Antichain
- Maximal, Minimal, Greatest, Least elements
Basic Idea
What it is, why it matters, how it worksDenumerable sets
A set is denumerable (countably infinite) if there is a bijection .
Examples.
- are all denumerable.
- is uncountable (Cantor's diagonal argument).
Why is denumerable. Arrange fractions in a 2-D grid by and , then snake along diagonals — gives a list.
Partial order relations
A partial order on is:
- Reflexive:
- Antisymmetric:
- Transitive:
is called a poset.
Total order vs partial order
- Total (linear) order: every pair is comparable — with .
- Partial: some pairs incomparable — divisibility on positive integers, subset relation.
Hasse diagram
Drawing of a poset that omits reflexive and transitive edges. Bigger elements drawn higher.
Special elements
- Maximal: no element strictly greater.
- Greatest: greater than every other (unique if exists).
- Chain: a totally-ordered subset.
- Antichain: a subset of pairwise-incomparable elements.
Why this matters in Data Science
Topological sort uses posets. Concept hierarchies in data warehouses (region → country → continent) are posets. Lattice structures appear in formal concept analysis and clustering.
Mind Map
Visual structure of the conceptDENUMERABILITY
├── Bijection with ℕ ⇒ denumerable
├── ℕ, ℤ, ℚ countable
├── ℝ uncountable (Cantor diagonal)
└── A countable ⇔ finite ∨ denumerable
PARTIAL ORDERS
├── (Reflexive + Antisymmetric + Transitive)
├── Poset (A, ≤)
├── Examples
│ ├── (ℕ, |) — divisibility
│ ├── (𝒫(X), ⊆) — subsets
│ └── (ℝ, ≤) — also total
├── Hasse Diagram
└── Elements
├── Maximal / Minimal
├── Greatest / Least
├── Chain (totally ordered)
└── Antichain (incomparable)
Exam Q&A
Part A (2 marks) and Part B (20 marks) style questionsPart A (2 marks each)
Q1. Define a denumerable set. A set in bijection with , the set of natural numbers.
Q2. Is denumerable? Why? Yes. The rationals can be listed by arranging in a 2-D grid and traversing diagonals.
Q3. Define a partial order. A relation that is reflexive, antisymmetric and transitive.
Q4. What is an antichain in a poset? A subset in which any two elements are incomparable.
Part B (20 marks)
Q. Show that the set of rational numbers is denumerable, but the set of real numbers in is not. Define a poset and draw the Hasse diagram of under divisibility.
Part 1 — is denumerable. Arrange positive rationals in an infinite grid where the row is and column is . Traverse along diagonals: , skipping duplicates (e.g., ). This gives a one-to-one listing . Pair this with negatives and zero to enumerate all of . Hence is denumerable.
Part 2 — is uncountable (Cantor). Suppose for contradiction it is denumerable: write all reals as in decimal form. Construct where differs from the -th decimal of (avoiding 0 and 9 to dodge ambiguity). Then differs from every in at least one digit, so the list — contradiction. Hence is uncountable. ∎
Part 3 — Poset. A set with a relation that is reflexive, antisymmetric and transitive.
Hasse diagram of under " divides ":
12
/ \
4 6
| / \
2 3 (2 also divides 6)
\ /
1
- 1 is the least element (divides everything).
- 12 is the greatest.
- is an antichain (neither divides the other).
- is a chain.