a06e07e4fbe06591b4a9fd1bad37537c51920ae4
[coq-categories.git] / src / Subcategories_ch7_1.v
1 (****************************************************************************)
2 (* Chapter 7.1: Subcategories                                               *)
3 (****************************************************************************)
4
5 Generalizable All Variables.
6 Require Import Notations.
7 Require Import Categories_ch1_3.
8 Require Import Functors_ch1_4.
9 Require Import Isomorphisms_ch1_5.
10 Require Import OppositeCategories_ch1_6_2.
11 Require Import NaturalTransformations_ch7_4.
12 Require Import NaturalIsomorphisms_ch7_5.
13
14 (*
15  * See the README for an explanation of why there is "WideSubcategory"
16  * and "FullSubcategory" but no "Subcategory"
17  *)
18
19 (* a full subcategory requires nothing more than a predicate on objects *)
20 Class FullSubcategory `(C:Category)(Pobj:C->Type) := { }.
21
22 (* the category construction for full subcategories is simpler: *)
23 Instance FullSubCategoriesAreCategories `(fsc:@FullSubcategory Ob Hom C Pobj)
24   : Category (sigT Pobj) (fun dom ran => (projT1 dom)~~{C}~~>(projT1 ran)) :=
25 { id   := fun t         => id (projT1 t)
26 ; eqv  := fun a b f g   => eqv _ _ f g
27 ; comp := fun a b c f g => f >>> g
28 }.
29   intros; apply Build_Equivalence. unfold Reflexive.
30      intros; reflexivity.
31      unfold Symmetric; intros; simpl; symmetry; auto.
32      unfold Transitive; intros; simpl. transitivity y; auto.
33   intros; unfold Proper. unfold respectful. intros. simpl. apply comp_respects. auto. auto.
34   intros; simpl. apply left_identity.
35   intros; simpl. apply right_identity.
36   intros; simpl. apply associativity.
37   Defined.
38 Coercion FullSubCategoriesAreCategories : FullSubcategory >-> Category.
39
40 (* every category is a subcategory of itself *)
41 (*
42 Instance IdentitySubCategory `(C:Category Ob Hom) : SubCategory C (fun _ => True) (fun _ _ _ _ _ => True).
43   intros; apply Build_SubCategory.
44   intros; auto.
45   intros; auto.
46   Defined.
47 (* the inclusion operation from a subcategory to its host is a functor *)
48 Instance InclusionFunctor `(C:Category Ob Hom)`(SP:@SubCategory _ _ C Pobj Pmor)
49   : Functor SP C (fun x => projT1 x) :=
50   { fmor := fun dom ran f => projT1 f }.
51   intros. unfold eqv in H. simpl in H. auto.
52   intros. simpl. reflexivity.
53   intros. simpl. reflexivity.
54   Defined.
55 *)
56
57
58 (* a wide subcategory includes all objects, so it requires nothing more than a predicate on each hom-set *)
59 Class WideSubcategory `(C:Category Ob Hom)(Pmor:forall a b:Ob, (a~>b) ->Type) : Type :=
60 { wsc_id_included    : forall (a:Ob), Pmor a a (id a)
61 ; wsc_comp_included  : forall (a b c:Ob) f g, (Pmor a b f) -> (Pmor b c g) -> (Pmor a c (f>>>g))
62 }.
63
64 (* the category construction for full subcategories is simpler: *)
65 Instance WideSubCategoriesAreCategories `{C:Category(Ob:=Ob)}{Pmor}(wsc:WideSubcategory C Pmor)
66   : Category Ob (fun x y => sigT (Pmor x y)) :=
67   { id   := fun t         => existT _ (id t) (@wsc_id_included _ _ _ _ wsc t)
68   ; eqv  := fun a b f g   => eqv _ _ (projT1 f) (projT1 g)
69   ; comp := fun a b c f g => existT (Pmor a c) (projT1 f >>> projT1 g)
70                                     (@wsc_comp_included _ _ _ _ wsc _ _ _ _ _ (projT2 f) (projT2 g))
71   }.
72   intros; apply Build_Equivalence. unfold Reflexive.
73      intros; reflexivity.
74      unfold Symmetric; intros; simpl; symmetry; auto.
75      unfold Transitive; intros; simpl. transitivity (projT1 y); auto.
76   intros; unfold Proper. unfold respectful. intros. simpl. apply comp_respects. auto. auto.
77   intros; simpl. apply left_identity.
78   intros; simpl. apply right_identity.
79   intros; simpl. apply associativity.
80   Defined.
81 Coercion WideSubCategoriesAreCategories : WideSubcategory >-> Category.
82
83 (* the full image of a functor is a full subcategory *)
84 Section FullImage.
85
86   Context `(F:Functor(c1:=C)(c2:=D)).
87
88   Instance FullImage : Category C (fun x y => (F x)~~{D}~~>(F y)) :=
89   { id    := fun t         => id (F t)
90   ; eqv   := fun x y   f g => eqv(Category:=D)  _ _ f g
91   ; comp  := fun x y z f g => comp(Category:=D) _ _ _ f g
92   }.
93   intros; apply Build_Equivalence. unfold Reflexive.
94      intros; reflexivity.
95      unfold Symmetric; intros; simpl; symmetry; auto.
96      unfold Transitive; intros; simpl. transitivity y; auto.
97   intros; unfold Proper. unfold respectful. intros. simpl. apply comp_respects. auto. auto.
98   intros; simpl. apply left_identity.
99   intros; simpl. apply right_identity.
100   intros; simpl. apply associativity.
101   Defined.
102
103   Instance FullImage_InclusionFunctor : Functor FullImage D (fun x => F x) :=
104     { fmor := fun x y f => f }.
105     intros; auto.
106     intros; simpl; reflexivity.
107     intros; simpl; reflexivity.
108     Defined.
109
110   Instance RestrictToImage : Functor C FullImage (fun x => x) :=
111     { fmor := fun a b f => F \ f }.
112     intros; simpl; apply fmor_respects; auto.
113     intros; simpl; apply fmor_preserves_id; auto.
114     intros; simpl; apply fmor_preserves_comp; auto.
115     Defined.
116
117   Lemma RestrictToImage_splits : F ~~~~ (RestrictToImage >>>> FullImage_InclusionFunctor).
118     unfold EqualFunctors; simpl; intros; apply heq_morphisms_intro.
119     apply fmor_respects.
120     auto.
121     Defined.
122
123 End FullImage.
124
125 (*
126 Instance func_opSubcat `(c1:Category)`(c2:Category)`(SP:@SubCategory _ _ c2 Pobj Pmor)
127   {fobj}(F:Functor c1⁽ºᑭ⁾ SP fobj) : Functor c1 SP⁽ºᑭ⁾ fobj :=
128   { fmor                := fun a b f => fmor F f }.
129   intros. apply (@fmor_respects _ _ _ _ _ _ _ F _ _ f f' H).
130   intros. apply (@fmor_preserves_id _ _ _ _ _ _ _ F a).
131   intros. apply (@fmor_preserves_comp _ _ _ _ _ _ _ F _ _ g _ f).
132   Defined.
133 *)
134
135 (*
136 (* if a functor's range falls within a subcategory, then it is already a functor into that subcategory *)
137 Section FunctorWithRangeInSubCategory.
138   Context `(Cat1:Category O1 Hom1).
139   Context `(Cat2:Category O2 Hom2).
140   Context (Pobj:Cat2 -> Type).
141   Context (Pmor:forall a b:Cat2, (Pobj a) -> (Pobj b) -> (a~~{Cat2}~~>b) -> Type).
142   Context (SP:SubCategory Cat2 Pobj Pmor).
143   Context (Fobj:Cat1->Cat2).
144   Section Forward.
145     Context (F:Functor Cat1 Cat2 Fobj).
146     Context (pobj:forall a, Pobj (F a)).
147     Context (pmor:forall a b f, Pmor (F a) (F b) (pobj a) (pobj b) (F \ f)).
148     Definition FunctorWithRangeInSubCategory_fobj (X:Cat1) : SP :=
149       existT Pobj (Fobj X) (pobj X).
150     Definition FunctorWithRangeInSubCategory_fmor (dom ran:Cat1)(X:dom~>ran) : (@hom _ _ SP
151       (FunctorWithRangeInSubCategory_fobj dom) (FunctorWithRangeInSubCategory_fobj ran)).
152       intros.
153       exists (F \ X).
154       apply (pmor dom ran X).
155       Defined.
156     Definition FunctorWithRangeInSubCategory : Functor Cat1 SP FunctorWithRangeInSubCategory_fobj.
157       apply Build_Functor with (fmor:=FunctorWithRangeInSubCategory_fmor);
158         intros;
159         unfold FunctorWithRangeInSubCategory_fmor;
160         simpl.
161       setoid_rewrite H; auto.
162       apply (fmor_preserves_id F).
163       apply (fmor_preserves_comp F).
164       Defined.
165   End Forward.
166   Section Opposite.
167     Context (F:Functor Cat1 Cat2⁽ºᑭ⁾ Fobj).
168     Context (pobj:forall a, Pobj (F a)).
169     Context (pmor:forall a b f, Pmor (F b) (F a) (pobj b) (pobj a) (F \ f)).
170     Definition FunctorWithRangeInSubCategoryOp_fobj (X:Cat1) : SP :=
171       existT Pobj (Fobj X) (pobj X).
172     Definition FunctorWithRangeInSubCategoryOp_fmor (dom ran:Cat1)(X:dom~>ran) :
173       (FunctorWithRangeInSubCategoryOp_fobj dom)~~{SP⁽ºᑭ⁾}~~>(FunctorWithRangeInSubCategoryOp_fobj ran).
174       intros.
175       exists (F \ X).
176       apply (pmor dom ran X).
177       Defined.
178     (*
179     Definition FunctorWithRangeInSubCategoryOp : Functor Cat1 SP⁽ºᑭ⁾ FunctorWithRangeInSubCategoryOp_fobj.
180       apply Build_Functor with (fmor:=FunctorWithRangeInSubCategoryOp_fmor);
181         intros;
182         unfold FunctorWithRangeInSubCategoryOp_fmor;
183         simpl.
184       apply (fmor_respects(Functor:=F)); auto.
185       apply (fmor_preserves_id(Functor:=F)).
186       unfold eqv; simpl.
187       set (@fmor_preserves_comp _ _ _ _ _ _ _ F _ _ f _ g) as qq.
188       setoid_rewrite <- qq.
189       apply reflexivity.
190       Defined.
191       *)
192   End Opposite.
193 End FunctorWithRangeInSubCategory.
194 *)
195
196
197 (* Definition 7.1: faithful functors *)
198 Definition FaithfulFunctor `(F:Functor(c1:=C1)(c2:=C2)(fobj:=Fobj)) :=
199   forall (a b:C1), forall (f f':a~>b), (fmor _ f)~~(fmor _ f') -> f~~f'.
200
201 (* Definition 7.1: full functors *)
202 Class FullFunctor `(F:Functor(c1:=C1)(c2:=C2)(fobj:=Fobj)) :=
203   { ff_invert         : forall {a b}(f:(Fobj a)~~{C2}~~>(Fobj b)) , { f' : a~~{C1}~~>b & (F \ f') ~~ f }
204   ; ff_respects       : forall {a b}, Proper (eqv (Fobj a) (Fobj b) ==> eqv a b) (fun x => projT1 (@ff_invert a b x))
205   }.
206   Coercion ff_invert : FullFunctor >-> Funclass.
207
208 (* Definition 7.1: (essentially) surjective on objects *)
209 Definition EssentiallySurjectiveOnObjects `(F:Functor(c1:=C1)(c2:=C2)(fobj:=Fobj)) :=
210   forall o2:C2, { o1:C1 & (F o1) ≅ o2 }.
211
212 (* Definition 7.1: (essentially) injective on objects *)
213 (* TODO *)
214
215 Class ConservativeFunctor `(F:Functor(c1:=C1)(c2:=C2)(fobj:=Fobj)) :=
216   { cf_reflect_iso  : forall (a b:C1),  (F a) ≅ (F b) -> a ≅ b
217   ; cf_reflect_iso1 : forall a b (i:(F a) ≅ (F b)), F \ #(cf_reflect_iso a b i) ~~ #i
218   ; cf_reflect_iso2 : forall a b (i:(F a) ≅ (F b)), F \ #(cf_reflect_iso a b i)⁻¹ ~~ #i⁻¹
219   }.
220
221 (* "monic up to natural iso" *)
222 Definition WeaklyMonic
223     `{C:Category}
224     `{D:Category}
225      {Fobj}
226      (F:@Functor _ _ C _ _ D Fobj) := forall
227      Eob EHom (E:@Category Eob EHom)
228     `{G :@Functor _ _ E _ _ C Gobj'}
229     `{H :@Functor _ _ E _ _ C Hobj'},
230     G >>>> F ≃ H >>>> F
231     -> G ≃ H.
232
233 Section FullFaithfulFunctor_section.
234   Context `(F:Functor(c1:=C1)(c2:=C2)(fobj:=Fobj)).
235   Context  (F_full:FullFunctor F).
236   Context  (F_faithful:FaithfulFunctor F).
237
238   Lemma ff_functor_section_id_preserved : forall a:C1, projT1 (F_full _ _ (id (F a))) ~~ id a.
239     intros.
240     set (F_full a a (id (F a))) as qq.
241     destruct qq.
242     simpl.
243     apply F_faithful.
244     setoid_rewrite fmor_preserves_id.
245     auto.
246     Qed.
247
248   Definition ff_functor_section_fmor {a b:FullImage F} (f:a~~{FullImage F}~~>b) : a~~{C1}~~>b.
249     set (@ff_invert _ _ _ _ _ _ _ _ F_full _ _ f) as f'.
250     destruct f'.
251     apply x.
252     Defined.
253
254   Lemma ff_functor_section_respectful {a2 b2 c2 : C1}
255     (x0 : Fobj b2 ~~{ C2 }~~> Fobj c2)
256     (x  : Fobj a2 ~~{ C2 }~~> Fobj b2) :
257     (let (x1, _) := F_full a2 b2 x in x1) >>>
258     (let (x1, _) := F_full b2 c2 x0 in x1) ~~
259     (let (x1, _) := F_full a2 c2 (x >>> x0) in x1).
260     set (F_full _ _ x) as x_full.
261     set (F_full _ _ x0) as x0_full.
262     set (F_full _ _ (x >>> x0)) as x_x0_full.
263     destruct x_full.
264     destruct x0_full.
265     destruct x_x0_full.
266     apply F_faithful.
267     setoid_rewrite e1.
268     setoid_rewrite <- (fmor_preserves_comp F).
269     setoid_rewrite e.
270     setoid_rewrite e0.
271     reflexivity.
272     Qed.
273
274   Instance ff_functor_section_functor : Functor (FullImage F) C1 (fun x => x) :=
275     { fmor := fun a b f => ff_functor_section_fmor f }.
276     intros.
277       unfold ff_functor_section_fmor; simpl.
278       destruct (F_full a b f).
279       destruct (F_full a b f').
280       apply F_faithful.
281       setoid_rewrite e0.
282       setoid_rewrite e.
283       auto.
284     intros; simpl; subst.
285       apply ff_functor_section_id_preserved.
286     intros; simpl in *.
287       apply ff_functor_section_respectful.
288       Defined.
289 (*
290   Lemma ff_functor_section_splits_helper (a2 b2:C1)(f:existT (fun d : C2, {c : C1 & Fobj c = d}) (Fobj a2)
291         (existT (fun c : C1, Fobj c = Fobj a2) a2 (eq_refl _)) ~~{ 
292       FullImage F
293       }~~> existT (fun d : C2, {c : C1 & Fobj c = d}) 
294              (Fobj b2) (existT (fun c : C1, Fobj c = Fobj b2) b2 (eq_refl _)))
295      : F \ (let (x1, _) := F_full a2 b2 f in x1) ~~ f.
296     simpl.
297     set (F_full a2 b2 f) as qq.
298     destruct qq.
299     apply e.
300     Qed.
301 *)
302   Lemma ff_functor_section_splits : (ff_functor_section_functor >>>> RestrictToImage F) ~~~~ functor_id _.
303     unfold EqualFunctors; intros; simpl.
304     unfold ff_functor_section_fmor; simpl.
305     destruct (F_full a b f).
306     idtac.
307     apply (@heq_morphisms_intro _ _ (FullImage F) a b).
308     unfold eqv; simpl.
309     setoid_rewrite e.
310     apply H.
311     Qed.
312
313   Lemma ff_functor_section_splits_niso : (ff_functor_section_functor >>>> RestrictToImage F) ≃ functor_id _.
314     intros; simpl.
315     exists iso_id; intros.
316     symmetry.
317     unfold functor_comp; simpl.
318     setoid_rewrite left_identity.
319     setoid_rewrite right_identity.
320     unfold ff_functor_section_fmor.
321     destruct (F_full A B f).
322     auto.
323     Qed.
324
325   Lemma ff_functor_section_splits_niso' : (RestrictToImage F >>>> ff_functor_section_functor) ≃ functor_id _.
326     intros; simpl.
327     exists iso_id; intros.
328     symmetry.
329     unfold functor_comp; simpl.
330     setoid_rewrite left_identity.
331     setoid_rewrite right_identity.
332     unfold ff_functor_section_fmor.
333     destruct (F_full A B (F \ f)).
334     apply F_faithful.
335     auto.
336     Qed.
337
338   Context (CF:ConservativeFunctor F).
339
340   Lemma if_fullimage `{C0:Category}{Aobj}{Bobj}{A:Functor C0 C1 Aobj}{B:Functor C0 C1 Bobj} :
341     A >>>> F ≃ B >>>> F ->
342     A >>>> RestrictToImage F ≃ B >>>> RestrictToImage F.
343     intro H.
344     destruct H.
345     unfold IsomorphicFunctors.
346     set (fun A  => functors_preserve_isos (RestrictToImage F) (cf_reflect_iso _ _ (x A))).
347     exists i.
348     intros.
349     unfold RestrictToImage.
350     unfold functor_comp.
351     simpl.
352     unfold functor_comp in H.
353     simpl in H.
354     rewrite (cf_reflect_iso1(ConservativeFunctor:=CF) _ _ (x A0)).
355     rewrite (cf_reflect_iso1(ConservativeFunctor:=CF) _ _ (x B0)).
356     apply H.
357     Qed.
358
359   Lemma ffc_functor_weakly_monic : ConservativeFunctor F -> WeaklyMonic F.
360     intro H.
361     unfold WeaklyMonic; intros.
362     apply (if_comp(F2:=G>>>>functor_id _)).
363     apply if_inv.
364     apply if_right_identity.
365     apply if_inv.
366     apply (if_comp(F2:=H0>>>>functor_id _)).
367     apply if_inv.
368     apply if_right_identity.
369     eapply if_inv.
370     apply (if_comp(F2:=G>>>>(RestrictToImage F >>>> ff_functor_section_functor))).
371     apply (if_respects G G (functor_id C1) (RestrictToImage F >>>> ff_functor_section_functor)).
372     apply if_id.
373     apply if_inv.
374     apply ff_functor_section_splits_niso'.
375     apply if_inv.
376     apply (if_comp(F2:=H0>>>>(RestrictToImage F >>>> ff_functor_section_functor))).
377     apply (if_respects H0 H0 (functor_id C1) (RestrictToImage F >>>> ff_functor_section_functor)).
378     apply if_id.
379     apply if_inv.
380     apply ff_functor_section_splits_niso'.
381     assert
382       ((H0 >>>> (RestrictToImage F >>>> ff_functor_section_functor))
383         ≃ ((H0 >>>> RestrictToImage F) >>>> ff_functor_section_functor)).
384     apply if_inv.
385     apply (if_associativity H0 (RestrictToImage F) ff_functor_section_functor).
386     apply (if_comp H2).
387     clear H2.
388     apply if_inv.
389     assert
390       ((G >>>> (RestrictToImage F >>>> ff_functor_section_functor))
391         ≃ ((G >>>> RestrictToImage F) >>>> ff_functor_section_functor)).
392     apply if_inv.
393     apply (if_associativity G (RestrictToImage F) ff_functor_section_functor).
394     apply (if_comp H2).
395     clear H2.
396     apply (if_respects (G >>>> RestrictToImage F) (H0 >>>> RestrictToImage F)
397       ff_functor_section_functor ff_functor_section_functor).
398     apply if_fullimage.
399     apply H1.
400     simpl.
401     exists (ni_id _).
402     intros.
403     simpl.
404     setoid_rewrite left_identity.
405     setoid_rewrite right_identity.
406     reflexivity.
407     Qed.
408
409 End FullFaithfulFunctor_section.