forked from leanprover-community/mathlib4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSmall.lean
More file actions
76 lines (62 loc) · 2.7 KB
/
Small.lean
File metadata and controls
76 lines (62 loc) · 2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/-
Copyright (c) 2025 Dagur Asgeirsson. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Authors: Dagur Asgeirsson
-/
module
public import Mathlib.CategoryTheory.Sites.Equivalence
public import Mathlib.Condensed.Light.Module
/-!
# Equivalence of light condensed objects with sheaves on a small site
-/
@[expose] public section
universe u v w
open CategoryTheory Sheaf Functor
namespace LightCondensed
variable {C : Type w} [Category.{v} C]
variable (C) in
/--
The equivalence of categories from light condensed objects to sheaves on a small site
equivalent to light profinite sets.
-/
noncomputable abbrev equivSmall :
LightCondensed.{u} C ≌
Sheaf ((equivSmallModel.{u} LightProfinite.{u}).inverse.inducedTopology
(coherentTopology LightProfinite.{u})) C :=
(equivSmallModel LightProfinite).sheafCongr _ _ _
instance (X Y : LightCondensed.{u} C) : Small.{max u v} (X ⟶ Y) where
equiv_small :=
⟨(equivSmall C).functor.obj X ⟶ (equivSmall C).functor.obj Y,
⟨(equivSmall C).fullyFaithfulFunctor.homEquiv⟩⟩
/--
Sheafifying is preserved under conjugating with the equivalence between light condensed objects
and sheaves on a small site.
-/
noncomputable def equivSmallSheafificationIso
[HasWeakSheafify (coherentTopology LightProfinite.{u}) C]
[HasWeakSheafify ((equivSmallModel.{u} LightProfinite.{u}).inverse.inducedTopology
(coherentTopology LightProfinite.{u})) C] :
(equivSmallModel LightProfinite.{u}).op.congrLeft.inverse ⋙ presheafToSheaf _ _ ⋙
(equivSmall C).functor ≅
presheafToSheaf _ _ :=
(conjugateIsoEquiv (sheafificationAdjunction _ _)
(((equivSmallModel LightProfinite.{u}).op.congrLeft.symm.toAdjunction.comp
(sheafificationAdjunction _ _)).comp (equivSmall C).toAdjunction)).symm <|
NatIso.ofComponents (fun X ↦ ((equivSmallModel LightProfinite).op.invFunIdAssoc _).symm)
variable (R : Type u) [CommRing R]
set_option backward.isDefEq.respectTransparency false in
/--
Taking the free condensed module is preserved under conjugating with the equivalence between
light condensed objects and sheaves on a small site.
-/
noncomputable def equivSmallFreeIso :
(equivSmall (Type u)).inverse ⋙ free R ⋙ (equivSmall (ModuleCat R)).functor ≅
Sheaf.composeAndSheafify _ (ModuleCat.free R) :=
conjugateIsoEquiv (Sheaf.adjunction _ (ModuleCat.adj R))
(((equivSmall _).symm.toAdjunction.comp
(freeForgetAdjunction R)).comp (equivSmall _).toAdjunction) |>.symm <|
NatIso.ofComponents
(fun X ↦ (fullyFaithfulSheafToPresheaf _ _).preimageIso
(isoWhiskerRight ((equivSmallModel LightProfinite).op.invFunIdAssoc _).symm _ ≪≫
(Functor.associator _ _ _)))
end LightCondensed