Sets closed under directed suprema #
We say that a set s is closed under directed suprema whenever it contains all least upper bounds
for nonempty, directed subsets. Conversely, a set s is inaccessible by directed suprema whenever
its complement is closed under directed suprema. Equivalently, if the least upper bound of a
nonempty directed set t is contained in s, then t and s must have nonempty intersection.
Main definitions #
DirSupClosed: sets closed under directed suprema.DirSupInacc: sets inaccessible by directed suprema.
A predicate for a set which is closed under directed suprema of nonempty sets.
This is the complement of a DirSupInaccOn set.
Equations
- DirSupClosedOn D s = ∀ ⦃d : Set α⦄, d ∈ D → d ⊆ s → d.Nonempty → DirectedOn (fun (x1 x2 : α) => x1 ≤ x2) d → ∀ ⦃a : α⦄, IsLUB d a → a ∈ s
Instances For
A predicate for a set which is inaccessible by directed suprema of nonempty sets in D.
This is the complement of a DirSupClosedOn set.
Equations
Instances For
A predicate for a set which is closed under directed suprema of nonempty sets.
This is the complement of a DirSupInacc set.
Equations
- DirSupClosed s = ∀ ⦃d : Set α⦄, d ⊆ s → d.Nonempty → DirectedOn (fun (x1 x2 : α) => x1 ≤ x2) d → ∀ ⦃a : α⦄, IsLUB d a → a ∈ s
Instances For
A predicate for a set which is inaccessible by directed suprema of nonempty sets.
This is the complement of a DirSupClosed set.
Equations
- DirSupInacc s = ∀ ⦃d : Set α⦄, d.Nonempty → DirectedOn (fun (x1 x2 : α) => x1 ≤ x2) d → ∀ ⦃a : α⦄, IsLUB d a → a ∈ s → (d ∩ s).Nonempty
Instances For
Alias of the forward direction of dirSupClosedOn_compl.
Alias of the reverse direction of dirSupClosedOn_compl.
Alias of the reverse direction of dirSupInaccOn_compl.
Alias of the forward direction of dirSupInaccOn_compl.
Alias of the reverse direction of dirSupClosed_compl.
Alias of the forward direction of dirSupClosed_compl.
Alias of the reverse direction of dirSupInacc_compl.
Alias of the forward direction of dirSupInacc_compl.