Linear maps involving submodules of a module #
In this file we define a number of linear maps involving submodules of a module.
Main declarations #
Submodule.subtype
: Embedding of a submodulep
to the ambient spaceM
as aSubmodule
.LinearMap.domRestrict
: The restriction of a semilinear mapf : M → M₂
to a submodulep ⊆ M
as a semilinear mapp → M₂
.LinearMap.restrict
: The restriction of a linear mapf : M → M₁
to a submodulep ⊆ M
andq ⊆ M₁
(ifq
contains the codomain).Submodule.inclusion
: the inclusionp ⊆ p'
of submodulesp
andp'
as a linear map.
Tags #
submodule, subspace, linear map
The natural R
-linear map from a submodule of an R
-module M
to M
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Embedding of a submodule p
to the ambient space M
.
Equations
Instances For
Note the AddSubmonoid
version of this lemma is called AddSubmonoid.coe_finset_sum
.
The action by a submodule is the action by the underlying module.
The restriction of a linear map f : M → M₂
to a submodule p ⊆ M
gives a linear map
p → M₂
.
Equations
Instances For
A linear map f : M₂ → M
whose values lie in a submodule p ⊆ M
can be restricted to a
linear map M₂ → p.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Restrict domain and codomain of a linear map.
Equations
- LinearMap.restrict f hf = LinearMap.codRestrict q (LinearMap.domRestrict f p) (_ : ∀ (x : ↥p), (LinearMap.domRestrict f p) x ∈ q)
Instances For
Equations
- LinearMap.uniqueOfRight = Function.Injective.unique (_ : Function.Injective DFunLike.coe)
Evaluation of a σ₁₂
-linear map at a fixed a
, as an AddMonoidHom
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
LinearMap.toAddMonoidHom
promoted to an AddMonoidHom
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- (_ : Nontrivial (Module.End R M)) = (_ : Nontrivial (Module.End R M))
Alternative version of domRestrict
as a linear map.
Equations
- One or more equations did not get rendered due to their size.
Instances For
If two submodules p
and p'
satisfy p ⊆ p'
, then inclusion p p'
is the linear map version
of this inclusion.
Equations
- Submodule.inclusion h = LinearMap.codRestrict p' (Submodule.subtype p) (_ : ∀ (x : ↥p), (Submodule.subtype p) x ∈ p')