Naturality; category of functors and natural transformations
WIP
This commit is contained in:
parent
3fcdf828d8
commit
bf1d1566af
|
@ -10,3 +10,4 @@ import Cat.Category.Properties
|
||||||
import Cat.Category
|
import Cat.Category
|
||||||
import Cat.Cubical
|
import Cat.Cubical
|
||||||
import Cat.Functor
|
import Cat.Functor
|
||||||
|
import Cat.Naturality
|
||||||
|
|
102
src/Cat/Naturality.agda
Normal file
102
src/Cat/Naturality.agda
Normal file
|
@ -0,0 +1,102 @@
|
||||||
|
{-# OPTIONS --allow-unsolved-metas #-}
|
||||||
|
module Cat.Naturality where
|
||||||
|
|
||||||
|
open import Agda.Primitive
|
||||||
|
open import Cubical
|
||||||
|
open import Function
|
||||||
|
open import Data.Product
|
||||||
|
|
||||||
|
open import Cat.Category
|
||||||
|
open import Cat.Functor
|
||||||
|
|
||||||
|
module _ {ℓc ℓc' ℓd ℓd' : Level} {ℂ : Category ℓc ℓc'} {𝔻 : Category ℓd ℓd'} where
|
||||||
|
open Category
|
||||||
|
open Functor
|
||||||
|
|
||||||
|
module _ (F : Functor ℂ 𝔻) (G : Functor ℂ 𝔻) where
|
||||||
|
-- What do you call a non-natural tranformation?
|
||||||
|
Transformation : Set (ℓc ⊔ ℓd')
|
||||||
|
Transformation = (C : ℂ .Object) → 𝔻 .Arrow (F .func* C) (G .func* C)
|
||||||
|
|
||||||
|
Natural : Transformation → Set (ℓc ⊔ (ℓc' ⊔ ℓd'))
|
||||||
|
Natural θ
|
||||||
|
= {A B : ℂ .Object}
|
||||||
|
→ (f : ℂ .Arrow A B)
|
||||||
|
→ 𝔻 ._⊕_ (θ B) (F .func→ f) ≡ 𝔻 ._⊕_ (G .func→ f) (θ A)
|
||||||
|
|
||||||
|
NaturalTranformation : Set (ℓc ⊔ ℓc' ⊔ ℓd')
|
||||||
|
NaturalTranformation = Σ Transformation Natural
|
||||||
|
|
||||||
|
-- NaturalTranformation : Set (ℓc ⊔ (ℓc' ⊔ ℓd'))
|
||||||
|
-- NaturalTranformation = ∀ (θ : Transformation) {A B : ℂ .Object} → (f : ℂ .Arrow A B) → 𝔻 ._⊕_ (θ B) (F .func→ f) ≡ 𝔻 ._⊕_ (G .func→ f) (θ A)
|
||||||
|
|
||||||
|
identityTrans : (F : Functor ℂ 𝔻) → Transformation F F
|
||||||
|
identityTrans F C = 𝔻 .𝟙
|
||||||
|
|
||||||
|
identityNatural : (F : Functor ℂ 𝔻) → Natural F F (identityTrans F)
|
||||||
|
identityNatural F {A = A} {B = B} f = begin
|
||||||
|
identityTrans F B 𝔻⊕ F→ f ≡⟨⟩
|
||||||
|
𝔻 .𝟙 𝔻⊕ F→ f ≡⟨ proj₂ 𝔻.ident ⟩
|
||||||
|
F→ f ≡⟨ sym (proj₁ 𝔻.ident) ⟩
|
||||||
|
F→ f 𝔻⊕ 𝔻 .𝟙 ≡⟨⟩
|
||||||
|
F→ f 𝔻⊕ identityTrans F A ∎
|
||||||
|
where
|
||||||
|
_𝔻⊕_ = 𝔻 ._⊕_
|
||||||
|
F→ = F .func→
|
||||||
|
open module 𝔻 = IsCategory (𝔻 .isCategory)
|
||||||
|
|
||||||
|
identityNat : (F : Functor ℂ 𝔻) → NaturalTranformation F F
|
||||||
|
identityNat F = identityTrans F , identityNatural F
|
||||||
|
|
||||||
|
module _ {a b c : Functor ℂ 𝔻} where
|
||||||
|
private
|
||||||
|
_𝔻⊕_ = 𝔻 ._⊕_
|
||||||
|
_∘nt_ : Transformation b c → Transformation a b → Transformation a c
|
||||||
|
(θ ∘nt η) C = θ C 𝔻⊕ η C
|
||||||
|
|
||||||
|
_:⊕:_ : NaturalTranformation b c → NaturalTranformation a b → NaturalTranformation a c
|
||||||
|
proj₁ ((θ , _) :⊕: (η , _)) = θ ∘nt η
|
||||||
|
proj₂ ((θ , θNat) :⊕: (η , ηNat)) {A} {B} f = begin
|
||||||
|
((θ ∘nt η) B) 𝔻⊕ (a .func→ f) ≡⟨⟩
|
||||||
|
(θ B 𝔻⊕ η B) 𝔻⊕ (a .func→ f) ≡⟨ sym assoc ⟩
|
||||||
|
θ B 𝔻⊕ (η B 𝔻⊕ (a .func→ f)) ≡⟨ cong (λ φ → θ B 𝔻⊕ φ) (ηNat f) ⟩
|
||||||
|
θ B 𝔻⊕ ((b .func→ f) 𝔻⊕ η A) ≡⟨ assoc ⟩
|
||||||
|
(θ B 𝔻⊕ (b .func→ f)) 𝔻⊕ η A ≡⟨ cong (λ φ → φ 𝔻⊕ η A) (θNat f) ⟩
|
||||||
|
(((c .func→ f) 𝔻⊕ θ A) 𝔻⊕ η A) ≡⟨ sym assoc ⟩
|
||||||
|
((c .func→ f) 𝔻⊕ (θ A 𝔻⊕ η A)) ≡⟨⟩
|
||||||
|
((c .func→ f) 𝔻⊕ ((θ ∘nt η) A)) ∎
|
||||||
|
where
|
||||||
|
open IsCategory (𝔻 .isCategory)
|
||||||
|
|
||||||
|
private
|
||||||
|
module _ {A B C D : Functor ℂ 𝔻} {f : NaturalTranformation A B}
|
||||||
|
{g : NaturalTranformation B C} {h : NaturalTranformation C D} where
|
||||||
|
_g⊕f_ = _:⊕:_ {A} {B} {C}
|
||||||
|
_h⊕g_ = _:⊕:_ {B} {C} {D}
|
||||||
|
:assoc: : (_:⊕:_ {A} {C} {D} h (_:⊕:_ {A} {B} {C} g f)) ≡ (_:⊕:_ {A} {B} {D} (_:⊕:_ {B} {C} {D} h g) f)
|
||||||
|
:assoc: = {!!}
|
||||||
|
module _ {A B : Functor ℂ 𝔻} {f : NaturalTranformation A B} where
|
||||||
|
ident-r : (_:⊕:_ {A} {A} {B} f (identityNat A)) ≡ f
|
||||||
|
ident-r = {!!}
|
||||||
|
ident-l : (_:⊕:_ {A} {B} {B} (identityNat B) f) ≡ f
|
||||||
|
ident-l = {!!}
|
||||||
|
:ident:
|
||||||
|
: (_:⊕:_ {A} {A} {B} f (identityNat A)) ≡ f
|
||||||
|
× (_:⊕:_ {A} {B} {B} (identityNat B) f) ≡ f
|
||||||
|
:ident: = ident-r , ident-l
|
||||||
|
|
||||||
|
instance
|
||||||
|
:isCategory: : IsCategory (Functor ℂ 𝔻) NaturalTranformation
|
||||||
|
(λ {F} → identityNat F) (λ {a} {b} {c} → _:⊕:_ {a} {b} {c})
|
||||||
|
:isCategory: = record
|
||||||
|
{ assoc = λ {A B C D} → :assoc: {A} {B} {C} {D}
|
||||||
|
; ident = λ {A B} → :ident: {A} {B}
|
||||||
|
}
|
||||||
|
|
||||||
|
aCat : Category (ℓc ⊔ (ℓc' ⊔ (ℓd ⊔ ℓd'))) (ℓc ⊔ (ℓc' ⊔ ℓd'))
|
||||||
|
aCat = record
|
||||||
|
{ Object = Functor ℂ 𝔻
|
||||||
|
; Arrow = NaturalTranformation
|
||||||
|
; 𝟙 = λ {F} → identityNat F
|
||||||
|
; _⊕_ = λ {a b c} → _:⊕:_ {a} {b} {c}
|
||||||
|
}
|
Loading…
Reference in a new issue