Lifting properties #
This file defines the lifting property of two morphisms in a category and shows basic properties of this notion.
Main results #
HasLiftingProperty
: the definition of the lifting property
Tags #
lifting property
@TODO :
- direct/inverse images, adjunctions
HasLiftingProperty i p
means that i
has the left lifting
property with respect to p
, or equivalently that p
has
the right lifting property with respect to i
.
Unique field expressing that any commutative square built from
f
andg
has a lift
Instances
Given a morphism φ : f ⟶ g
in the category Arrow C
, this is an
abbreviation for the CommSq.LiftStruct
structure for
the square corresponding to φ
.
Equations
Instances For
Given morphisms i : A ⟶ B
, p : X ⟶ Y
, t : A ⟶ X
,
this is the property that a lifting exists for all squares
with i
on left, p
on the right and t
on the top.
Equations
- CategoryTheory.HasLiftingPropertyFixedTop i p t = ∀ (b : B ⟶ Y) (sq : CategoryTheory.CommSq t i p b), sq.HasLift
Instances For
Given morphisms i : A ⟶ B
, p : X ⟶ Y
, b : B ⟶ Y
,
this is the property that a lifting exists for all squares
with i
on left, p
on the right and b
on the bottom.
Equations
- CategoryTheory.HasLiftingPropertyFixedBot i p b = ∀ (t : A ⟶ X) (sq : CategoryTheory.CommSq t i p b), sq.HasLift