File size: 671 Bytes
916823d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import Mathlib

open CategoryTheory Limits Functor Opposite

namespace CAT_statement_S_0034

variable {C : Type u} [Category.{v} C]

def IsFreeObject (U : CType v) (d : C) (I : Type v) : Prop :=
  ∃ (η : I ⟶ U.obj d), ∀ {y : C} (f : I ⟶ U.obj y), ∃! (g : d ⟶ y), U.map g ∘ η = f

def IsCopower (x d : C) (I : Type v) : Prop :=
  ∃ (ι : I → (x ⟶ d)), Nonempty (IsColimit (Cofan.mk d ι))

theorem free_iff_copower_of_representable
    (U : CType v) [Faithful U]
    (x : C) (hU : U ≅ coyoneda.obj (op x))
    (I : Type v) (d : C) :
    IsFreeObject U d I ↔ IsCopower x d I := by
  sorry

end CAT_statement_S_0034