Documentation

Mathlib.Order.Category.PartOrd

Category of partial orders #

This defines PartOrd, the category of partial orders with monotone maps.

def PartOrd :
Type (u_1 + 1)

The category of partially ordered types.

Equations
Equations
def PartOrd.of (α : Type u_1) [PartialOrder α] :

Construct a bundled PartOrd from the underlying type and typeclass.

Equations
@[simp]
theorem PartOrd.coe_of (α : Type u_1) [PartialOrder α] :
(PartOrd.of α) = α
Equations
  • α.instPartialOrderα = α.str
def PartOrd.Iso.mk {α β : PartOrd} (e : α ≃o β) :
α β

Constructs an equivalence between partial orders from an order isomorphism between them.

Equations
  • PartOrd.Iso.mk e = { hom := e, inv := e.symm, hom_inv_id := , inv_hom_id := }
@[simp]
theorem PartOrd.Iso.mk_inv {α β : PartOrd} (e : α ≃o β) :
(PartOrd.Iso.mk e).inv = e.symm
@[simp]
theorem PartOrd.Iso.mk_hom {α β : PartOrd} (e : α ≃o β) :
(PartOrd.Iso.mk e).hom = e

OrderDual as a functor.

Equations
@[simp]
@[simp]
theorem PartOrd.dual_map {X✝ Y✝ : PartOrd} (a : X✝ →o Y✝) :
PartOrd.dual.map a = OrderHom.dual a

The equivalence between PartOrd and itself induced by OrderDual both ways.

Equations
  • One or more equations did not get rendered due to their size.

Antisymmetrization as a functor. It is the free functor.

Equations
  • One or more equations did not get rendered due to their size.

preordToPartOrd is left adjoint to the forgetful functor, meaning it is the free functor from Preord to PartOrd.

Equations
  • One or more equations did not get rendered due to their size.

PreordToPartOrd and OrderDual commute.

Equations
  • One or more equations did not get rendered due to their size.