Documentation

Mathlib.CategoryTheory.Sites.LocallySurjective

Locally surjective morphisms #

Main definitions #

Main results #

def CategoryTheory.Presheaf.imageSieve {C : Type u} [Category.{v, u} C] {A : Type u'} [Category.{v', u'} A] [HasForget A] {F G : Functor Cᵒᵖ A} (f : F G) {U : C} (s : (forget A).obj (G.obj (Opposite.op U))) :

Given f : F ⟶ G, a morphism between presieves, and s : G.obj (op U), this is the sieve of U consisting of the i : V ⟶ U such that s restricted along i is in the image of f.

Equations
  • One or more equations did not get rendered due to their size.
Instances For
    theorem CategoryTheory.Presheaf.imageSieve_apply {C : Type u} [Category.{v, u} C] {A : Type u'} [Category.{v', u'} A] [HasForget A] {F G : Functor Cᵒᵖ A} (f : F G) {U : C} (s : (forget A).obj (G.obj (Opposite.op U))) (V : C) (i : V U) :
    (imageSieve f s).arrows i = ∃ (t : (forget A).obj (F.obj (Opposite.op V))), (f.app (Opposite.op V)) t = (G.map i.op) s
    theorem CategoryTheory.Presheaf.imageSieve_app {C : Type u} [Category.{v, u} C] {A : Type u'} [Category.{v', u'} A] [HasForget A] {F G : Functor Cᵒᵖ A} (f : F G) {U : C} (s : (forget A).obj (F.obj (Opposite.op U))) :
    noncomputable def CategoryTheory.Presheaf.localPreimage {C : Type u} [Category.{v, u} C] {A : Type u'} [Category.{v', u'} A] [HasForget A] {F G : Functor Cᵒᵖ A} (f : F G) {U : Cᵒᵖ} (s : (forget A).obj (G.obj U)) {V : C} (g : V Opposite.unop U) (hg : (imageSieve f s).arrows g) :

    If a morphism g : V ⟶ U.unop belongs to the sieve imageSieve f s g, then this is choice of a preimage of G.map g.op s in F.obj (op V), see app_localPreimage.

    Equations
    Instances For
      @[simp]
      theorem CategoryTheory.Presheaf.app_localPreimage {C : Type u} [Category.{v, u} C] {A : Type u'} [Category.{v', u'} A] [HasForget A] {F G : Functor Cᵒᵖ A} (f : F G) {U : Cᵒᵖ} (s : (forget A).obj (G.obj U)) {V : C} (g : V Opposite.unop U) (hg : (imageSieve f s).arrows g) :
      (f.app (Opposite.op V)) (localPreimage f s g hg) = (G.map g.op) s

      A morphism of presheaves f : F ⟶ G is locally surjective with respect to a grothendieck topology if every section of G is locally in the image of f.

      Instances
        theorem CategoryTheory.Presheaf.isLocallySurjective_of_isLocallySurjective_fac {C : Type u} [Category.{v, u} C] (J : GrothendieckTopology C) {A : Type u'} [Category.{v', u'} A] [HasForget A] {F₁ F₂ F₃ : Functor Cᵒᵖ A} {f₁ : F₁ F₂} {f₂ : F₂ F₃} {f₃ : F₁ F₃} (fac : CategoryStruct.comp f₁ f₂ = f₃) [IsLocallySurjective J f₃] :
        theorem CategoryTheory.Presheaf.isLocallySurjective_iff_of_fac {C : Type u} [Category.{v, u} C] (J : GrothendieckTopology C) {A : Type u'} [Category.{v', u'} A] [HasForget A] {F₁ F₂ F₃ : Functor Cᵒᵖ A} {f₁ : F₁ F₂} {f₂ : F₂ F₃} {f₃ : F₁ F₃} (fac : CategoryStruct.comp f₁ f₂ = f₃) [IsLocallySurjective J f₁] :

        The image of F in J.sheafify F is isomorphic to the sheafification.

        Equations
        • One or more equations did not get rendered due to their size.
        Instances For
          @[reducible, inline]
          abbrev CategoryTheory.Sheaf.IsLocallySurjective {C : Type u} [Category.{v, u} C] {J : GrothendieckTopology C} {A : Type u'} [Category.{v', u'} A] [HasForget A] {F₁ F₂ : Sheaf J A} (φ : F₁ F₂) :

          If φ : F₁ ⟶ F₂ is a morphism of sheaves, this is an abbreviation for Presheaf.IsLocallySurjective J φ.val.

          Equations
          Instances For

            Given a morphism φ : R ⟶ R' of presheaves of types and r' : R'.obj X, this is the family of elements of R defined over the sieve Presheaf.imageSieve φ r' which sends a map in this sieve to an arbitrary choice of a preimage of the restriction of r'.

            Equations
            Instances For