Quotients by submodules #
- If
p
is a submodule ofM
,M ⧸ p
is the quotient ofM
with respect top
: that is, elements ofM
are identified if their difference is inp
. This is itself a module.
Main definitions #
Submodule.Quotient.mk
: a function sending an element ofM
toM ⧸ p
Submodule.Quotient.module
:M ⧸ p
is a moduleSubmodule.Quotient.mkQ
: a linear map sending an element ofM
toM ⧸ p
Submodule.quotEquivOfEq
: ifp
andp'
are equal, their quotients are equivalent
def
Submodule.quotientRel
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
:
Setoid M
The equivalence relation associated to a submodule p
, defined by x ≈ y
iff -x + y ∈ p
.
Note this is equivalent to y - x ∈ p
, but defined this way to be defeq to the AddSubgroup
version, where commutativity can't be assumed.
Equations
- p.quotientRel = QuotientAddGroup.leftRel p.toAddSubgroup
Instances For
@[deprecated Submodule.quotientRel_def]
theorem
Submodule.quotientRel_r_def
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
{x : M}
{y : M}
:
Alias of Submodule.quotientRel_def
.
instance
Submodule.hasQuotient
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
:
HasQuotient M (Submodule R M)
The quotient of a module M
by a submodule p ⊆ M
.
def
Submodule.Quotient.mk
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
{p : Submodule R M}
:
M → M ⧸ p
Map associating to an element of M
the corresponding element of M/p
,
when p
is a submodule of M
.
Equations
- Submodule.Quotient.mk = Quotient.mk''
Instances For
theorem
Submodule.Quotient.mk'_eq_mk'
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
{p : Submodule R M}
(x : M)
:
theorem
Submodule.Quotient.mk''_eq_mk
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
{p : Submodule R M}
(x : M)
:
theorem
Submodule.Quotient.quot_mk_eq_mk
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
{p : Submodule R M}
(x : M)
:
Quot.mk (⇑p.quotientRel) x = Submodule.Quotient.mk x
theorem
Submodule.Quotient.eq'
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
{x : M}
{y : M}
:
Submodule.Quotient.mk x = Submodule.Quotient.mk y ↔ -x + y ∈ p
theorem
Submodule.Quotient.eq
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
{x : M}
{y : M}
:
Submodule.Quotient.mk x = Submodule.Quotient.mk y ↔ x - y ∈ p
instance
Submodule.Quotient.instZeroQuotient
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
:
Equations
- Submodule.Quotient.instZeroQuotient p = { zero := Quotient.mk'' 0 }
instance
Submodule.Quotient.instInhabitedQuotient
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
:
Equations
- Submodule.Quotient.instInhabitedQuotient p = { default := 0 }
@[simp]
theorem
Submodule.Quotient.mk_zero
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
:
@[simp]
theorem
Submodule.Quotient.mk_eq_zero
{R : Type u_1}
{M : Type u_2}
{x : M}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
:
Submodule.Quotient.mk x = 0 ↔ x ∈ p
instance
Submodule.Quotient.addCommGroup
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
:
AddCommGroup (M ⧸ p)
Equations
- Submodule.Quotient.addCommGroup p = QuotientAddGroup.Quotient.addCommGroup p.toAddSubgroup
@[simp]
theorem
Submodule.Quotient.mk_add
{R : Type u_1}
{M : Type u_2}
{x : M}
{y : M}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
:
@[simp]
theorem
Submodule.Quotient.mk_neg
{R : Type u_1}
{M : Type u_2}
{x : M}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
:
@[simp]
theorem
Submodule.Quotient.mk_sub
{R : Type u_1}
{M : Type u_2}
{x : M}
{y : M}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
:
theorem
Submodule.Quotient.forall
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
{P : M ⧸ p → Prop}
:
(∀ (a : M ⧸ p), P a) ↔ ∀ (a : M), P (Submodule.Quotient.mk a)
instance
Submodule.Quotient.instSMul'
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
{S : Type u_3}
[SMul S R]
[SMul S M]
[IsScalarTower S R M]
(P : Submodule R M)
:
Equations
- Submodule.Quotient.instSMul' P = { smul := fun (a : S) => Quotient.map' (fun (x : M) => a • x) ⋯ }
instance
Submodule.Quotient.instSMul
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(P : Submodule R M)
:
Shortcut to help the elaborator in the common case.
Equations
@[simp]
theorem
Submodule.Quotient.mk_smul
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
{S : Type u_3}
[SMul S R]
[SMul S M]
[IsScalarTower S R M]
(r : S)
(x : M)
:
Submodule.Quotient.mk (r • x) = r • Submodule.Quotient.mk x
instance
Submodule.Quotient.smulCommClass
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
{S : Type u_3}
[SMul S R]
[SMul S M]
[IsScalarTower S R M]
(P : Submodule R M)
(T : Type u_4)
[SMul T R]
[SMul T M]
[IsScalarTower T R M]
[SMulCommClass S T M]
:
SMulCommClass S T (M ⧸ P)
Equations
- ⋯ = ⋯
instance
Submodule.Quotient.isScalarTower
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
{S : Type u_3}
[SMul S R]
[SMul S M]
[IsScalarTower S R M]
(P : Submodule R M)
(T : Type u_4)
[SMul T R]
[SMul T M]
[IsScalarTower T R M]
[SMul S T]
[IsScalarTower S T M]
:
IsScalarTower S T (M ⧸ P)
Equations
- ⋯ = ⋯
instance
Submodule.Quotient.isCentralScalar
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
{S : Type u_3}
[SMul S R]
[SMul S M]
[IsScalarTower S R M]
(P : Submodule R M)
[SMul Sᵐᵒᵖ R]
[SMul Sᵐᵒᵖ M]
[IsScalarTower Sᵐᵒᵖ R M]
[IsCentralScalar S M]
:
IsCentralScalar S (M ⧸ P)
Equations
- ⋯ = ⋯
instance
Submodule.Quotient.mulAction'
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
{S : Type u_3}
[Monoid S]
[SMul S R]
[MulAction S M]
[IsScalarTower S R M]
(P : Submodule R M)
:
Equations
instance
Submodule.Quotient.mulAction
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(P : Submodule R M)
:
Equations
instance
Submodule.Quotient.smulZeroClass'
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
{S : Type u_3}
[SMul S R]
[SMulZeroClass S M]
[IsScalarTower S R M]
(P : Submodule R M)
:
SMulZeroClass S (M ⧸ P)
Equations
- Submodule.Quotient.smulZeroClass' P = { toFun := Submodule.Quotient.mk, map_zero' := ⋯ }.smulZeroClass ⋯
instance
Submodule.Quotient.smulZeroClass
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(P : Submodule R M)
:
SMulZeroClass R (M ⧸ P)
instance
Submodule.Quotient.distribSMul'
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
{S : Type u_3}
[SMul S R]
[DistribSMul S M]
[IsScalarTower S R M]
(P : Submodule R M)
:
DistribSMul S (M ⧸ P)
Equations
instance
Submodule.Quotient.distribSMul
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(P : Submodule R M)
:
DistribSMul R (M ⧸ P)
instance
Submodule.Quotient.distribMulAction'
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
{S : Type u_3}
[Monoid S]
[SMul S R]
[DistribMulAction S M]
[IsScalarTower S R M]
(P : Submodule R M)
:
DistribMulAction S (M ⧸ P)
Equations
instance
Submodule.Quotient.distribMulAction
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(P : Submodule R M)
:
DistribMulAction R (M ⧸ P)
instance
Submodule.Quotient.module'
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
{S : Type u_3}
[Semiring S]
[SMul S R]
[Module S M]
[IsScalarTower S R M]
(P : Submodule R M)
:
Equations
instance
Submodule.Quotient.module
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(P : Submodule R M)
:
Equations
theorem
Submodule.Quotient.mk_surjective
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
:
Function.Surjective Submodule.Quotient.mk
theorem
Submodule.quot_hom_ext
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
{M₂ : Type u_3}
[AddCommGroup M₂]
[Module R M₂]
(f : M ⧸ p →ₗ[R] M₂)
(g : M ⧸ p →ₗ[R] M₂)
(h : ∀ (x : M), f (Submodule.Quotient.mk x) = g (Submodule.Quotient.mk x))
:
f = g
def
Submodule.mkQ
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
:
The map from a module M
to the quotient of M
by a submodule p
as a linear map.
Equations
- p.mkQ = { toFun := Submodule.Quotient.mk, map_add' := ⋯, map_smul' := ⋯ }
Instances For
@[simp]
theorem
Submodule.mkQ_apply
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
(x : M)
:
p.mkQ x = Submodule.Quotient.mk x
theorem
Submodule.mkQ_surjective
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
:
Function.Surjective ⇑p.mkQ
theorem
Submodule.linearMap_qext
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
{R₂ : Type u_3}
{M₂ : Type u_4}
[Ring R₂]
[AddCommGroup M₂]
[Module R₂ M₂]
{τ₁₂ : R →+* R₂}
⦃f : M ⧸ p →ₛₗ[τ₁₂] M₂⦄
⦃g : M ⧸ p →ₛₗ[τ₁₂] M₂⦄
(h : f.comp p.mkQ = g.comp p.mkQ)
:
f = g
Two LinearMap
s from a quotient module are equal if their compositions with
submodule.mkQ
are equal.
See note [partially-applied ext lemmas].
def
Submodule.quotEquivOfEq
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
(p' : Submodule R M)
(h : p = p')
:
Quotienting by equal submodules gives linearly equivalent quotients.
Equations
- p.quotEquivOfEq p' h = { toFun := (Quotient.congr (Equiv.refl M) ⋯).toFun, map_add' := ⋯, map_smul' := ⋯, invFun := (Quotient.congr (Equiv.refl M) ⋯).invFun, left_inv := ⋯, right_inv := ⋯ }
Instances For
@[simp]
theorem
Submodule.quotEquivOfEq_mk
{R : Type u_1}
{M : Type u_2}
[Ring R]
[AddCommGroup M]
[Module R M]
(p : Submodule R M)
(p' : Submodule R M)
(h : p = p')
(x : M)
:
(p.quotEquivOfEq p' h) (Submodule.Quotient.mk x) = Submodule.Quotient.mk x