Pushing a quiver structure along a map #
Given a map σ : V → W
and a Quiver
instance on V
, this files defines a Quiver
instance
on W
by associating to each arrow v ⟶ v'
in V
an arrow σ v ⟶ σ v'
in W
.
The Quiver
instance obtained by pushing arrows of V
along the map σ : V → W
Instances For
The prefunctor induced by pushing arrows via σ
Equations
- Quiver.Push.of σ = { obj := σ, map := fun {X Y : V} (f : X ⟶ Y) => Quiver.PushQuiver.arrow f }
Instances For
@[simp]
noncomputable def
Quiver.Push.lift
{V : Type u_1}
[Quiver V]
{W : Type u_2}
(σ : V → W)
{W' : Type u_3}
[Quiver W']
(φ : V ⥤q W')
(τ : W → W')
(h : ∀ (x : V), φ.obj x = τ (σ x))
:
Given a function τ : W → W'
and a prefunctor φ : V ⥤q W'
, one can extend τ
to be
a prefunctor W ⥤q W'
if τ
and σ
factorize φ
at the level of objects, where W
is given
the pushforward quiver structure Push σ
.
Equations
- One or more equations did not get rendered due to their size.