ProCGroups.InverseSystems.CategoryBridge

2 Theorem | 2 Definition

This module studies category bridge for pro cgroups. The categorical TopCat diagram associated to a concrete inverse system. The TopCat functor associated to an inverse system sends an index morphism to the corresponding transition map.

import
Imported by

Declarations

def toFunctor : Iᵒᵖ ⥤ TopCat.{v} where
  obj i := TopCat.of (S.X i.unop)
  map {i j} hij := TopCat.ofHom ⟨S.map hij.unop.le, S.continuous_map hij.unop.le⟩
  map_id i := by
    ext x
    exact S.map_id_apply i.unop x
  map_comp {i j k} hij hjk := by
    ext x
    exact (S.map_comp_apply hjk.unop.le hij.unop.le x).symm

The categorical TopCat diagram associated to a concrete inverse system.

@[simp] theorem toFunctor_map_apply {i j : Iᵒᵖ} (hij : i ⟶ j)
    (x : S.X i.unop) :
    S.toFunctor.map hij x = S.map hij.unop.le x

The TopCat functor associated to an inverse system sends an index morphism to the corresponding transition map.

Show proof
def toNatTrans (Θ : S.Morphism T) : S.toFunctor ⟶ T.toFunctor where
  app i := TopCat.ofHom ⟨Θ.map i.unop, Θ.continuous_map i.unop⟩
  naturality {i j} hij := by
    ext x
    exact (Θ.comm_apply hij.unop.le x).symm

A concrete morphism of inverse systems gives a natural transformation of the associated TopCat diagrams.

@[simp] theorem toNatTrans_app_apply (Θ : S.Morphism T) (i : Iᵒᵖ)
    (x : S.X i.unop) :
    Θ.toNatTrans.app i x = Θ.map i.unop x

The natural transformation associated to a morphism evaluates at a stage as that morphism's stage map.

Show proof