Turning a preorder into a partial order #
This file allows to make a preorder into a partial order by quotienting out the elements a, b
such that a ≤ b and b ≤ a.
Antisymmetrization is a functor from Preorder to PartialOrder. See Preorder_to_PartialOrder.
Main declarations #
AntisymmRel: The antisymmetrization relation.AntisymmRel r a bmeans thataandbare related both ways byr.Antisymmetrization α r: The quotient ofαbyAntisymmRel r. Even whenris just a preorder,Antisymmetrization αis a partial order.
The antisymmetrization relation AntisymmRel r is defined so that
AntisymmRel r a b ↔ r a b ∧ r b a.
Instances For
Alias of AntisymmRel.of_eq.
Alias of the forward direction of antisymmRel_iff_eq.
See if the term is AntisymmRel r a b and the goal is r a b.
Instances For
See if the term is AntisymmRel r a b and the goal is r b a.
Instances For
The antisymmetrization relation as an equivalence relation.
Instances For
The partial order derived from a preorder by making pairwise comparable elements equal. This is
the quotient by fun a b => a ≤ b ∧ b ≤ a.
Instances For
Turn an element into its antisymmetrization.
Instances For
Get a representative from the antisymmetrization.
Instances For
Alias of the forward direction of le_iff_lt_or_antisymmRel.
Alias of le_of_le_of_antisymmRel.
Alias of le_of_antisymmRel_of_le.
Alias of lt_of_lt_of_antisymmRel.
Alias of lt_of_antisymmRel_of_lt.
Alias of not_lt_of_antisymmRel.
Alias of not_gt_of_antisymmRel.
Alias of not_antisymmRel_of_lt.
Alias of not_antisymmRel_of_gt.
Turns an order homomorphism from α to β into one from Antisymmetrization α to
Antisymmetrization β. Antisymmetrization is actually a functor. See Preorder_to_PartialOrder.
Instances For
ofAntisymmetrization as an order embedding.
Instances For
Antisymmetrization and orderDual commute.
Instances For
Alias of Relation.SymmGen.of_lt.
Alias of Relation.SymmGen.of_gt.
The antisymmetrization of a product preorder is order isomorphic to the product of antisymmetrizations.