Erdős Problem 602 #
Reference: erdosproblems.com/602
A set A ⊆ α is monochromatic under a 2-colouring f : α → Fin 2
if all elements of A receive the same colour.
Equations
- Erdos602.IsMonochromatic f A = ∀ x ∈ A, ∀ y ∈ A, f x = f y
Instances For
A family (A_i)_{i ∈ I} of subsets of α has Property B if there exists
a 2-colouring f : α → Fin 2 such that no A_i is monochromatic.
Equations
- Erdos602.HasPropertyB I A = ∃ (f : α → Fin 2), ∀ (i : I), ¬Erdos602.IsMonochromatic f (A i)
Instances For
Does every almost-disjoint family of countably infinite sets whose pairwise intersections all have size ≠ 1 have Property B?
Formally: let α be any type, let (A_i)_{i ∈ I} be a family of countably infinite subsets
of α such that for all i ≠ j, the intersection A_i ∩ A_j is finite and
|A_i ∩ A_j| ≠ 1. Does there exist a 2-colouring f : α → Fin 2 such that no A_i is
monochromatic?
This is an open question about Property B for almost-disjoint families with a forbidden intersection size of 1.
Note: This generalises the formulation in which the ground set is ℕ. Since every
countably infinite set is in bijection with ℕ, the two formulations are equivalent, but
working over an arbitrary ground type makes the statement apply immediately to, e.g.,
almost-disjoint families of countable subsets of an uncountable space.
Trivial case: pairwise disjoint families.
If the A_i are pairwise disjoint (all intersections are empty, which in
particular satisfies |A_i ∩ A_j| ≠ 1), then Property B holds trivially.
Proof sketch: Since each A_i is infinite, it has (at least) two distinct elements
a_i and b_i. We can define a colouring that assigns colour 0 to a_i and colour 1
to b_i for each i (using disjointness, these choices don't conflict), and extend
arbitrarily elsewhere. Then no A_i is monochromatic.
Countable index set case.
If the index set is countable, the answer is yes, and the intersection condition is unnecessary. This is Bernstein's Lemma: every countable system of infinite sets has Property B.
Intersections of size ≥ 2 suffice.
For a single countably infinite set A ⊆ α, there trivially exists a 2-colouring
of α that makes A non-monochromatic: since A is infinite, it has two distinct
elements, so any colouring that assigns them different colours works.
Empty index set.
If the index set I is empty (has no elements), then Property B holds vacuously:
any 2-colouring works, since there are no sets to be made non-monochromatic.
Unique index set.
If the index set has exactly one element (i.e., [Unique I]), then Property B holds:
any 2-colouring that makes the single set A (default : I) non-monochromatic works.
This follows from the single-set case.
Two infinite sets with pairwise intersection of size ≠ 1.
If the family consists of exactly two countably infinite sets A₀ and A₁ with
|A₀ ∩ A₁| ≠ 1 (and finite), then Property B holds.
Proof sketch:
- If
A₀ ∩ A₁ = ∅: the sets are disjoint. Pick distincta, b ∈ A₀and distinctc, d ∈ A₁. Colourbandcwith 1, everything else with 0. ThenA₀hasa(colour 0) andb(colour 1), andA₁hasc(colour 1) andd(colour 0), so neither is monochromatic. - If
|A₀ ∩ A₁| ≥ 2: the intersection contains two distinct pointsxandy. Assignxcolour 0 andycolour 1. BothA₀andA₁containxandy, so neither is monochromatic.
A natural but FALSE relaxation of erdos_602.variants.disjoint: drop the
hypothesis that each A i is infinite. The original disjoint variant requires
(∀ i, (A i).Infinite). Without it, the claim is false.
Equations
- Erdos602.disjoint_without_infinite_claim = ∀ {α I : Type} (A : I → Set α), (∀ (i j : I), i ≠ j → Disjoint (A i) (A j)) → Erdos602.HasPropertyB I A
Instances For
Formal disproof of disjoint_without_infinite_claim.
Counterexample: Take α = ℕ, I = Fin 2, with A 0 = {0} and A 1 = {1}.
These are pairwise disjoint, satisfying the only hypothesis. But singleton sets
are vacuously monochromatic under any colouring: the only pair (x, y) ∈ {0} × {0}
is (0, 0), and f 0 = f 0 trivially. So any colouring makes A 0 monochromatic,
meaning HasPropertyB fails.