Definitions about upper/lower bounds #
In this file we define:
- upperBounds,- lowerBounds: the set of upper bounds (resp., lower bounds) of a set;
- BddAbove s,- BddBelow s: the set- sis bounded above (resp., below), i.e., the set of upper (resp., lower) bounds of- sis nonempty;
- IsLeast s a,- IsGreatest s a:- ais a least (resp., greatest) element of- s; for a partial order, it is unique if exists;
- IsLUB s a,- IsGLB s a:- ais a least upper bound (resp., a greatest lower bound) of- s; for a partial order, it is unique if exists.
- IsCofinal s: for every- a, there exists a member of- sgreater or equal to it.
- IsCofinalFor s t: for all- a ∈ sthere exists- b ∈ tsuch that- a ≤ b
- IsCoinitialFor s t: for all- a ∈ sthere exists- b ∈ tsuch that- b ≤ a
a is a greatest element of a set s; for a partial order, it is unique if exists.
Equations
- IsGreatest s a = (a ∈ s ∧ a ∈ upperBounds s)
Instances For
a is a greatest lower bound of a set s; for a partial order, it is unique if exists.
Equations
- IsGLB s = IsGreatest (lowerBounds s)