2015-02-26 18:19:54 +00:00
|
|
|
|
/-
|
|
|
|
|
Copyright (c) 2014 Floris van Doorn. All rights reserved.
|
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
|
|
Module: algebra.precategory.functor
|
|
|
|
|
Authors: Floris van Doorn, Jakob von Raumer
|
|
|
|
|
-/
|
2014-12-12 04:14:53 +00:00
|
|
|
|
|
2015-01-01 00:30:17 +00:00
|
|
|
|
import .basic types.pi
|
2014-12-12 19:19:06 +00:00
|
|
|
|
|
2015-02-26 18:19:54 +00:00
|
|
|
|
open function category eq prod equiv is_equiv sigma sigma.ops is_trunc funext
|
2015-01-01 00:30:17 +00:00
|
|
|
|
open pi
|
2014-12-12 04:14:53 +00:00
|
|
|
|
|
2014-12-18 02:49:37 +00:00
|
|
|
|
structure functor (C D : Precategory) : Type :=
|
2015-02-28 00:50:06 +00:00
|
|
|
|
(to_fun_ob : C → D)
|
|
|
|
|
(to_fun_hom : Π ⦃a b : C⦄, hom a b → hom (to_fun_ob a) (to_fun_ob b))
|
|
|
|
|
(respect_id : Π (a : C), to_fun_hom (ID a) = ID (to_fun_ob a))
|
2014-12-18 02:49:37 +00:00
|
|
|
|
(respect_comp : Π {a b c : C} (g : hom b c) (f : hom a b),
|
2015-02-28 00:50:06 +00:00
|
|
|
|
to_fun_hom (g ∘ f) = to_fun_hom g ∘ to_fun_hom f)
|
2014-12-12 04:14:53 +00:00
|
|
|
|
|
|
|
|
|
namespace functor
|
2015-02-24 00:54:16 +00:00
|
|
|
|
|
|
|
|
|
infixl `⇒`:25 := functor
|
2014-12-12 04:14:53 +00:00
|
|
|
|
variables {C D E : Precategory}
|
|
|
|
|
|
2015-02-28 00:50:06 +00:00
|
|
|
|
attribute to_fun_ob [coercion]
|
|
|
|
|
attribute to_fun_hom [coercion]
|
2014-12-12 04:14:53 +00:00
|
|
|
|
|
2015-02-24 00:54:16 +00:00
|
|
|
|
-- The following lemmas will later be used to prove that the type of
|
|
|
|
|
-- precategories forms a precategory itself
|
2015-02-27 05:45:21 +00:00
|
|
|
|
protected definition compose [reducible] (G : functor D E) (F : functor C D) : functor C E :=
|
2015-02-24 00:54:16 +00:00
|
|
|
|
functor.mk
|
|
|
|
|
(λ x, G (F x))
|
|
|
|
|
(λ a b f, G (F f))
|
|
|
|
|
(λ a, calc
|
2015-03-13 03:52:00 +00:00
|
|
|
|
G (F (ID a)) = G (ID (F a)) : by rewrite respect_id
|
|
|
|
|
... = ID (G (F a)) : by rewrite respect_id)
|
2015-02-24 00:54:16 +00:00
|
|
|
|
(λ a b c g f, calc
|
2015-03-13 03:13:40 +00:00
|
|
|
|
G (F (g ∘ f)) = G (F g ∘ F f) : by rewrite respect_comp
|
|
|
|
|
... = G (F g) ∘ G (F f) : by rewrite respect_comp)
|
2015-02-24 00:54:16 +00:00
|
|
|
|
|
|
|
|
|
infixr `∘f`:60 := compose
|
|
|
|
|
|
2015-02-27 05:45:21 +00:00
|
|
|
|
protected definition id [reducible] {C : Precategory} : functor C C :=
|
|
|
|
|
mk (λa, a) (λ a b f, f) (λ a, idp) (λ a b c f g, idp)
|
|
|
|
|
|
|
|
|
|
protected definition ID [reducible] (C : Precategory) : functor C C := id
|
|
|
|
|
|
2015-02-24 00:54:16 +00:00
|
|
|
|
definition functor_eq_mk'' {F₁ F₂ : C → D} {H₁ : Π(a b : C), hom a b → hom (F₁ a) (F₁ b)}
|
|
|
|
|
{H₂ : Π(a b : C), hom a b → hom (F₂ a) (F₂ b)} (id₁ id₂ comp₁ comp₂)
|
|
|
|
|
(pF : F₁ = F₂) (pH : pF ▹ H₁ = H₂)
|
|
|
|
|
: functor.mk F₁ H₁ id₁ comp₁ = functor.mk F₂ H₂ id₂ comp₂ :=
|
|
|
|
|
apD01111 functor.mk pF pH !is_hprop.elim !is_hprop.elim
|
|
|
|
|
|
|
|
|
|
definition functor_eq_mk' {F₁ F₂ : C → D} {H₁ : Π(a b : C), hom a b → hom (F₁ a) (F₁ b)}
|
|
|
|
|
{H₂ : Π(a b : C), hom a b → hom (F₂ a) (F₂ b)} (id₁ id₂ comp₁ comp₂)
|
|
|
|
|
(pF : F₁ ∼ F₂) (pH : Π(a b : C) (f : hom a b), eq_of_homotopy pF ▹ (H₁ a b f) = H₂ a b f)
|
|
|
|
|
: functor.mk F₁ H₁ id₁ comp₁ = functor.mk F₂ H₂ id₂ comp₂ :=
|
|
|
|
|
functor_eq_mk'' id₁ id₂ comp₁ comp₂ (eq_of_homotopy pF)
|
|
|
|
|
(eq_of_homotopy (λc, eq_of_homotopy (λc', eq_of_homotopy (λf,
|
|
|
|
|
begin
|
|
|
|
|
apply concat, rotate_left 1, exact (pH c c' f),
|
|
|
|
|
apply concat, rotate_left 1,
|
|
|
|
|
exact (pi_transport_constant (eq_of_homotopy pF) (H₁ c c') f),
|
|
|
|
|
apply (apD10' f),
|
|
|
|
|
apply concat, rotate_left 1,
|
|
|
|
|
exact (pi_transport_constant (eq_of_homotopy pF) (H₁ c) c'),
|
|
|
|
|
apply (apD10' c'),
|
|
|
|
|
apply concat, rotate_left 1,
|
|
|
|
|
exact (pi_transport_constant (eq_of_homotopy pF) H₁ c),
|
|
|
|
|
apply idp
|
|
|
|
|
end))))
|
|
|
|
|
|
|
|
|
|
definition functor_eq_mk_constant {F : C → D} {H₁ : Π(a b : C), hom a b → hom (F a) (F b)}
|
|
|
|
|
{H₂ : Π(a b : C), hom a b → hom (F a) (F b)} (id₁ id₂ comp₁ comp₂)
|
|
|
|
|
(pH : Π(a b : C) (f : hom a b), H₁ a b f = H₂ a b f)
|
|
|
|
|
: functor.mk F H₁ id₁ comp₁ = functor.mk F H₂ id₂ comp₂ :=
|
|
|
|
|
functor_eq_mk'' id₁ id₂ comp₁ comp₂ idp
|
2015-02-27 05:45:21 +00:00
|
|
|
|
(eq_of_homotopy (λc, eq_of_homotopy (λc', eq_of_homotopy (pH c c'))))
|
2015-02-24 00:54:16 +00:00
|
|
|
|
|
2015-02-28 00:50:06 +00:00
|
|
|
|
definition functor_eq_mk {F₁ F₂ : C ⇒ D} : Π(p : to_fun_ob F₁ ∼ to_fun_ob F₂),
|
2015-02-24 00:54:16 +00:00
|
|
|
|
(Π(a b : C) (f : hom a b), transport (λF, hom (F a) (F b)) (eq_of_homotopy p) (F₁ f) = F₂ f)
|
|
|
|
|
→ F₁ = F₂ :=
|
2015-02-27 05:45:21 +00:00
|
|
|
|
functor.rec_on F₁ (λO₁ H₁ id₁ comp₁, functor.rec_on F₂ (λO₂ H₂ id₂ comp₂ p, !functor_eq_mk'))
|
2015-02-24 00:54:16 +00:00
|
|
|
|
|
|
|
|
|
protected definition assoc {A B C D : Precategory} (H : functor C D) (G : functor B C) (F : functor A B) :
|
|
|
|
|
H ∘f (G ∘f F) = (H ∘f G) ∘f F :=
|
|
|
|
|
!functor_eq_mk_constant (λa b f, idp)
|
|
|
|
|
|
|
|
|
|
protected definition id_left (F : functor C D) : id ∘f F = F :=
|
|
|
|
|
functor.rec_on F (λF1 F2 F3 F4, !functor_eq_mk_constant (λa b f, idp))
|
|
|
|
|
|
|
|
|
|
protected definition id_right (F : functor C D) : F ∘f id = F :=
|
|
|
|
|
functor.rec_on F (λF1 F2 F3 F4, !functor_eq_mk_constant (λa b f, idp))
|
|
|
|
|
|
|
|
|
|
set_option apply.class_instance false
|
2014-12-18 02:49:37 +00:00
|
|
|
|
-- "functor C D" is equivalent to a certain sigma type
|
|
|
|
|
set_option unifier.max_steps 38500
|
|
|
|
|
protected definition sigma_char :
|
2015-02-28 00:50:06 +00:00
|
|
|
|
(Σ (to_fun_ob : C → D)
|
|
|
|
|
(to_fun_hom : Π ⦃a b : C⦄, hom a b → hom (to_fun_ob a) (to_fun_ob b)),
|
|
|
|
|
(Π (a : C), to_fun_hom (ID a) = ID (to_fun_ob a)) ×
|
2014-12-18 02:49:37 +00:00
|
|
|
|
(Π {a b c : C} (g : hom b c) (f : hom a b),
|
2015-02-28 00:50:06 +00:00
|
|
|
|
to_fun_hom (g ∘ f) = to_fun_hom g ∘ to_fun_hom f)) ≃ (functor C D) :=
|
2014-12-18 02:49:37 +00:00
|
|
|
|
begin
|
2015-02-24 00:54:16 +00:00
|
|
|
|
fapply equiv.MK,
|
2015-02-24 21:27:57 +00:00
|
|
|
|
{intro S, fapply functor.mk,
|
2014-12-18 02:49:37 +00:00
|
|
|
|
exact (S.1), exact (S.2.1),
|
2015-02-24 21:27:57 +00:00
|
|
|
|
exact (pr₁ S.2.2), exact (pr₂ S.2.2)},
|
2015-02-24 00:54:16 +00:00
|
|
|
|
{intro F,
|
|
|
|
|
cases F with (d1, d2, d3, d4),
|
|
|
|
|
exact (sigma.mk d1 (sigma.mk d2 (pair d3 (@d4))))},
|
|
|
|
|
{intro F,
|
|
|
|
|
cases F,
|
|
|
|
|
apply idp},
|
|
|
|
|
{intro S,
|
|
|
|
|
cases S with (d1, S2),
|
|
|
|
|
cases S2 with (d2, P1),
|
|
|
|
|
cases P1,
|
|
|
|
|
apply idp},
|
2014-12-18 02:49:37 +00:00
|
|
|
|
end
|
2014-12-12 04:14:53 +00:00
|
|
|
|
|
2015-02-28 00:50:06 +00:00
|
|
|
|
protected definition is_hset_functor
|
2015-02-26 18:19:54 +00:00
|
|
|
|
[HD : is_hset D] : is_hset (functor C D) :=
|
2015-01-03 06:29:11 +00:00
|
|
|
|
begin
|
2015-02-21 00:30:32 +00:00
|
|
|
|
apply is_trunc_is_equiv_closed, apply equiv.to_is_equiv,
|
2015-01-03 06:29:11 +00:00
|
|
|
|
apply sigma_char,
|
2015-02-21 00:30:32 +00:00
|
|
|
|
apply is_trunc_sigma, apply is_trunc_pi, intros, exact HD, intro F,
|
|
|
|
|
apply is_trunc_sigma, apply is_trunc_pi, intro a,
|
2015-02-24 21:27:57 +00:00
|
|
|
|
{apply is_trunc_pi, intro b,
|
|
|
|
|
apply is_trunc_pi, intro c, apply !homH},
|
2015-02-21 00:30:32 +00:00
|
|
|
|
intro H, apply is_trunc_prod,
|
2015-02-24 21:27:57 +00:00
|
|
|
|
{apply is_trunc_pi, intro a,
|
|
|
|
|
apply is_trunc_eq, apply is_trunc_succ, apply !homH},
|
|
|
|
|
{repeat (apply is_trunc_pi; intros),
|
|
|
|
|
apply is_trunc_eq, apply is_trunc_succ, apply !homH},
|
2015-01-03 06:29:11 +00:00
|
|
|
|
end
|
|
|
|
|
|
2014-12-12 04:14:53 +00:00
|
|
|
|
end functor
|
|
|
|
|
|
2015-02-26 18:19:54 +00:00
|
|
|
|
|
|
|
|
|
namespace category
|
2014-12-12 04:14:53 +00:00
|
|
|
|
open functor
|
2015-01-01 00:30:17 +00:00
|
|
|
|
|
2015-02-26 18:19:54 +00:00
|
|
|
|
--TODO: make this a structure
|
2015-02-28 00:50:06 +00:00
|
|
|
|
definition precat_strict_precat : precategory (Σ (C : Precategory), is_hset C) :=
|
2015-01-03 06:29:11 +00:00
|
|
|
|
precategory.mk (λ a b, functor a.1 b.1)
|
2015-02-28 00:50:06 +00:00
|
|
|
|
(λ a b, @functor.is_hset_functor a.1 b.1 b.2)
|
2014-12-12 04:14:53 +00:00
|
|
|
|
(λ a b c g f, functor.compose g f)
|
|
|
|
|
(λ a, functor.id)
|
|
|
|
|
(λ a b c d h g f, !functor.assoc)
|
|
|
|
|
(λ a b f, !functor.id_left)
|
|
|
|
|
(λ a b f, !functor.id_right)
|
2015-01-01 00:30:17 +00:00
|
|
|
|
|
2015-02-28 00:50:06 +00:00
|
|
|
|
definition Precat_of_strict_cats := precategory.Mk precat_strict_precat
|
2014-12-12 04:14:53 +00:00
|
|
|
|
|
|
|
|
|
namespace ops
|
2015-01-01 00:30:17 +00:00
|
|
|
|
|
2015-02-27 05:45:21 +00:00
|
|
|
|
abbreviation SPreCat := Precat_of_strict_cats
|
2015-02-28 00:50:06 +00:00
|
|
|
|
--attribute precat_strict_precat [instance]
|
2015-01-01 00:30:17 +00:00
|
|
|
|
|
2014-12-12 04:14:53 +00:00
|
|
|
|
end ops
|
2015-01-01 00:30:17 +00:00
|
|
|
|
|
2015-02-26 18:19:54 +00:00
|
|
|
|
end category
|