Documentation

Mathlib.CategoryTheory.Presentable.CardinalPure

Pure subobjects #

In this file, we define the notion of κ-pure morphisms (IsCardinalPure) in a category C, where κ is a regular cardinal. This class contains split monomorphisms and is stable under κ-filtered colimits. When C is a κ-accessible category, we show that κ-pure morphisms are monomorphisms.

References #

class CategoryTheory.IsCardinalPure {C : Type u_1} [Category.{v_1, u_1} C] (κ : Cardinal.{w}) [Fact κ.IsRegular] {X Y : C} (f : X Y) :

Given a regular cardinal κ, we say that a morphism f : X ⟶ Y is κ-pure if for any commutative square:

      t
 X' -----> Y'
 |         |
l|         |r
 v         v
 X  -----> Y
      f

where X' and Y' are κ-presentable, there exists a morphism ρ : Y' ⟶ X such that t ≫ ρ = l.

Instances
    @[reducible, inline]

    κ-pure morphisms, as a property of morphisms in a category C.

    Equations
    Instances For
      theorem CategoryTheory.IsCardinalAccessibleCategory.mono_iff {C : Type u_1} [Category.{v_1, u_1} C] (κ : Cardinal.{w}) [Fact κ.IsRegular] [IsCardinalAccessibleCategory C κ] {X Y : C} (f : X Y) :
      Mono f ∀ (T : C) [IsCardinalPresentable T κ] (g₁ g₂ : T X), CategoryStruct.comp g₁ f = CategoryStruct.comp g₂ fg₁ = g₂

      In a κ-accessible category, κ-pure morphisms are monomorphisms. (This is proposition 2.29 in [AR94].)