Tensor products of coalgebras #
Suppose S
is an R
-algebra. Given an S
-coalgebra A
and R
-coalgebra B
, we can define
a natural comultiplication map Δ : A ⊗[R] B → (A ⊗[R] B) ⊗[S] (A ⊗[R] B)
and counit map ε : A ⊗[R] B → S
induced by the comultiplication and counit maps of A
and B
.
In this file we show that Δ, ε
satisfy the axioms of a coalgebra, and also define other data
in the monoidal structure on R
-coalgebras, like the tensor product of two coalgebra morphisms
as a coalgebra morphism.
In particular, when R = S
we get tensor products of coalgebras, and when A = S
we get
the base change S ⊗[R] B
as an S
-coalgebra.
Equations
- One or more equations did not get rendered due to their size.
Alias of TensorProduct.comul_def
.
Alias of TensorProduct.counit_def
.
hopf_tensor_induction x with x₁ x₂
attempts to replace x
by
x₁ ⊗ₜ x₂
via linearity. This is an implementation detail that is used to set up tensor products
of coalgebras, bialgebras, and hopf algebras, and shouldn't be relied on downstream.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- TensorProduct.instCoalgebra = { toCoalgebraStruct := TensorProduct.instCoalgebraStruct, coassoc := ⋯, rTensor_counit_comp_comul := ⋯, lTensor_counit_comp_comul := ⋯ }
The tensor product of two coalgebra morphisms as a coalgebra morphism.
Equations
- Coalgebra.TensorProduct.map f g = { toLinearMap := TensorProduct.AlgebraTensorModule.map f.toLinearMap g.toLinearMap, counit_comp := ⋯, map_comp_comul := ⋯ }
Instances For
The associator for tensor products of R-coalgebras, as a coalgebra equivalence.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The base ring is a left identity for the tensor product of coalgebras, up to coalgebra equivalence.
Equations
- Coalgebra.TensorProduct.lid R P = { toLinearMap := ↑(TensorProduct.lid R P), counit_comp := ⋯, map_comp_comul := ⋯, invFun := (TensorProduct.lid R P).invFun, left_inv := ⋯, right_inv := ⋯ }
Instances For
The base ring is a right identity for the tensor product of coalgebras, up to coalgebra equivalence.
Equations
- One or more equations did not get rendered due to their size.
Instances For
lTensor M f : M ⊗ N →ₗc M ⊗ P
is the natural coalgebra morphism induced by f : N →ₗc P
.
Equations
- CoalgHom.lTensor M f = Coalgebra.TensorProduct.map (CoalgHom.id R M) f
Instances For
rTensor M f : N ⊗ M →ₗc P ⊗ M
is the natural coalgebra morphism induced by f : N →ₗc P
.
Equations
- CoalgHom.rTensor M f = Coalgebra.TensorProduct.map f (CoalgHom.id R M)