Properties of morphisms #
We provide the basic framework for talking about properties of morphisms. The following meta-property is defined
RespectsIso
:P
respects isomorphisms ifP f → P (e ≫ f)
andP f → P (f ≫ e)
, wheree
is an isomorphism.
A MorphismProperty C
is a class of morphisms between objects in C
.
Equations
- CategoryTheory.MorphismProperty C = (⦃X Y : C⦄ → (X ⟶ Y) → Prop)
Instances For
Equations
- CategoryTheory.instCompleteBooleanAlgebraMorphismProperty C = let __spread.0 := inferInstanceAs (CompleteBooleanAlgebra (⦃X Y : C⦄ → (X ⟶ Y) → Prop)); CompleteBooleanAlgebra.mk ⋯ ⋯ ⋯ ⋯ ⋯ ⋯
Equations
- CategoryTheory.instInhabitedMorphismProperty C = { default := ⊤ }
The morphism property in Cᵒᵖ
associated to a morphism property in C
Equations
- CategoryTheory.MorphismProperty.op P f = P f.unop
Instances For
The morphism property in C
associated to a morphism property in Cᵒᵖ
Equations
- CategoryTheory.MorphismProperty.unop P f = P f.op
Instances For
The inverse image of a MorphismProperty D
by a functor C ⥤ D
Equations
- CategoryTheory.MorphismProperty.inverseImage P F f = P (F.map f)
Instances For
The image (up to isomorphisms) of a MorphismProperty C
by a functor C ⥤ D
Equations
- CategoryTheory.MorphismProperty.map P F f = ∃ (X' : C) (Y' : C) (f' : X' ⟶ Y') (_ : P f'), Nonempty (CategoryTheory.Arrow.mk (F.map f') ≅ CategoryTheory.Arrow.mk f)
Instances For
A morphism property RespectsIso
if it still holds when composed with an isomorphism
Equations
- One or more equations did not get rendered due to their size.
Instances For
The closure by isomorphisms of a MorphismProperty
Equations
- CategoryTheory.MorphismProperty.isoClosure P f = ∃ (Y₁ : C) (Y₂ : C) (f' : Y₁ ⟶ Y₂) (_ : P f'), Nonempty (CategoryTheory.Arrow.mk f' ≅ CategoryTheory.Arrow.mk f)
Instances For
The MorphismProperty C
satisfied by isomorphisms in C
.
Equations
Instances For
The MorphismProperty C
satisfied by monomorphisms in C
.
Equations
Instances For
The MorphismProperty C
satisfied by epimorphisms in C
.
Equations
Instances For
If W₁
and W₂
are morphism properties on two categories C₁
and C₂
,
this is the induced morphism property on C₁ × C₂
.
Equations
- CategoryTheory.MorphismProperty.prod W₁ W₂ f = (W₁ f.1 ∧ W₂ f.2)
Instances For
If W j
are morphism properties on categories C j
for all j
, this is the
induced morphism property on the category ∀ j, C j
.
Equations
- CategoryTheory.MorphismProperty.pi W f = ∀ (j : J), W j (f j)
Instances For
The morphism property on J ⥤ C
which is defined objectwise
from W : MorphismProperty C
.
Equations
- CategoryTheory.MorphismProperty.functorCategory W J f = ∀ (j : J), W (f.app j)