Polynomial Functor #
-- TODO: there are various sorry
-carrying proofs in below which require instances of
CartesianExponentiable
for various constructions on morphisms. They need to be defined in
Poly.Exponentiable
.
P : UvPoly C
is a polynomial functors in a single variable
- exp : CartesianExponentiable self.p
Instances For
The constant polynomial in many variables: for this we need the initial object
Equations
Instances For
Equations
Instances For
The product of two polynomials in a single variable.
Equations
- One or more equations did not get rendered due to their size.
Instances For
For a category C
with binary products, P.functor : C ⥤ C
is the functor associated
to a single variable polynomial P : UvPoly E B
.
Instances For
Equations
- P.toMvPoly = { E := E, B := B, i := CategoryTheory.Limits.terminal.from E, p := P.p, exp := P.exp, o := CategoryTheory.Limits.terminal.from B }
Instances For
The projection morphism from ∑ b : B, X ^ (E b)
to B
.
Instances For
Instances For
We use the equivalence between Over (⊤_ C)
and C
to get functor : C ⥤ C
.
Alternatively we can give a direct definition of functor
in terms of exponentials.
Equations
Instances For
Equations
Instances For
The projection morphism from ∑ b : B, X ^ (E b)
to B
again.
Instances For
Essentially star is just the pushforward Beck-Chevalley natural transformation associated to
the square defined by g
, but you have to compose with various natural isomorphisms.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The identity polynomial functor in single variable.
Equations
Instances For
Evaluating the identity polynomial at an object X
is isomorphic to B × X
.
Equations
- UvPoly.id_apply B X = { hom := CategoryTheory.CategoryStruct.id (B ⨯ X), inv := CategoryTheory.CategoryStruct.id (B ⨯ X), hom_inv_id := ⋯, inv_hom_id := ⋯ }
Instances For
A morphism from a polynomial P
to a polynomial Q
is a pair of morphisms e : E ⟶ E'
and b : B ⟶ B'
such that the diagram
E ---P.p--> B
| |
e b
| |
v v
E' --Q.p--> B'
is a pullback square.
- is_pullback : CategoryTheory.IsPullback P.p self.e self.b Q.p
Instances For
Equations
- UvPoly.Hom.id P = { e := CategoryTheory.CategoryStruct.id E, b := CategoryTheory.CategoryStruct.id B, is_pullback := ⋯ }
Instances For
Equations
- f.comp g = { e := CategoryTheory.CategoryStruct.comp f.e g.e, b := CategoryTheory.CategoryStruct.comp f.b g.b, is_pullback := ⋯ }
Instances For
Bundling up the the polynomials over different bases to form the underlying type of the category of polynomials.
- E : C
- B : C
Instances For
Equations
- UvPoly.Total.of P = { E := E, B := B, poly := P }
Instances For
The category of polynomial functors in a single variable.
Equations
Equations
- Total.ofHom P Q α = { e := α.e, b := α.b, is_pullback := ⋯ }
Instances For
Equations
- UvPoly.instSMulTotal = { smul := fun (S : C) (P : UvPoly.Total C) => UvPoly.Total.of (UvPoly.smul S P.poly) }
Scaling a polynomial P
by an object S
is isomorphic to the product of const S
and the
polynomial P
.
Equations
- UvPoly.smul_eq_prod_const S P = { hom := sorry, inv := sorry, hom_inv_id := ⋯, inv_hom_id := ⋯ }
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Generic pullback #
The UP of polynomial functors is mediated by a "generic pullback" [Awodey2017, p. 10, fig. 6].
X
^
| u₂
genPb ---------------> E
fst | ┘ | p
v v
P.functor.obj X --------> B
P.proj X
Instances For
Instances For
Equations
Instances For
The second component of polyPair
is a comparison map of pullbacks composed with genPb.u₂
.
Universal property of the polynomial functor.
Equations
- One or more equations did not get rendered due to their size.
Instances For
UvPoly.equiv
is natural in Γ
.
UvPoly.equiv
is natural in X
.
Equations
Instances For
Equations
Instances For
Instances For
A map of polynomials induces a natural transformation between their associated functors.
Instances For
The domain of the composition of two polynomials. See UvPoly.comp
.
Instances For
The codomain of the composition of two polynomials. See UvPoly.comp
.
Equations
Instances For
Equations
- P.comp Q = { p := CategoryTheory.CategoryStruct.comp (CategoryTheory.Limits.pullback.snd Q.p (UvPoly.genPb.u₂ P A)) (UvPoly.genPb.fst P A), exp := sorry }
Instances For
The associated functor of the composition of two polynomials is isomorphic to the composition of the associated functors.