mathlib3 documentation

category_theory.essential_image

Essential image of a functor #

THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.

The essential image ess_image of a functor consists of the objects in the target category which are isomorphic to an object in the image of the object function. This, for instance, allows us to talk about objects belonging to a subcategory expressed as a functor rather than a subtype, preserving the principle of equivalence. For example this lets us define exponential ideals.

The essential image can also be seen as a subcategory of the target category, and witnesses that a functor decomposes into a essentially surjective functor and a fully faithful functor. (TODO: show that this decomposition forms an orthogonal factorisation system).

The essential image of a functor F consists of those objects in the target category which are isomorphic to an object in the image of the function F.obj. In other words, this is the closure under isomorphism of the function F.obj. This is the "non-evil" way of describing the image of a functor.

Equations
noncomputable def category_theory.functor.ess_image.witness {C : Type u₁} {D : Type u₂} [category_theory.category C] [category_theory.category D] {F : C D} {Y : D} (h : Y F.ess_image) :
C

Get the witnessing object that Y is in the subcategory given by F.

Equations

Extract the isomorphism between F.obj h.witness and Y itself.

Equations
theorem category_theory.functor.ess_image.of_iso {C : Type u₁} {D : Type u₂} [category_theory.category C] [category_theory.category D] {F : C D} {Y Y' : D} (h : Y Y') (hY : Y F.ess_image) :

Being in the essential image is a "hygenic" property: it is preserved under isomorphism.

theorem category_theory.functor.ess_image.of_nat_iso {C : Type u₁} {D : Type u₂} [category_theory.category C] [category_theory.category D] {F F' : C D} (h : F F') {Y : D} (hY : Y F.ess_image) :

If Y is in the essential image of F then it is in the essential image of F' as long as F ≅ F'.

Isomorphic functors have equal essential images.

An object in the image is in the essential image.

@[nolint]

The essential image of a functor, interpreted of a full subcategory of the target category.

Equations
Instances for category_theory.functor.ess_image_subcategory

The essential image as a subcategory has a fully faithful inclusion into the target category.

Equations
Instances for category_theory.functor.ess_image_inclusion
@[simp]
theorem category_theory.functor.to_ess_image_map {C : Type u₁} {D : Type u₂} [category_theory.category C] [category_theory.category D] (F : C D) (X Y : C) (f : X Y) :

Given a functor F : C ⥤ D, we have an (essentially surjective) functor from C to the essential image of F.

Equations
Instances for category_theory.functor.to_ess_image
@[simp]

The functor F factorises through its essential image, where the first functor is essentially surjective and the second is fully faithful.

Equations
noncomputable def category_theory.functor.obj_preimage {C : Type u₁} {D : Type u₂} [category_theory.category C] [category_theory.category D] (F : C D) [category_theory.ess_surj F] (Y : D) :
C

Given an essentially surjective functor, we can find a preimage for every object Y in the codomain. Applying the functor to this preimage will yield an object isomorphic to Y, see obj_obj_preimage_iso.

Equations

Applying an essentially surjective functor to a preimage of Y yields an object that is isomorphic to Y.

Equations
@[protected, instance]

The induced functor of a faithful functor is faithful