Documentation

Mathlib.Algebra.Category.ModuleCat.Free

Exact sequences with free modules #

This file proves results about linear independence and span in exact sequences of modules.

Main theorems #

Tags #

linear algebra, module, free

In the commutative diagram

             f     g
    0 --→ X₁ --→ X₂ --→ X₃
          ↑      ↑      ↑
         v|     u|     w|
          ι  → ι ⊕ ι' ← ι'

where the top row is an exact sequence of modules and the maps on the bottom are Sum.inl and Sum.inr. If u is injective and v and w are linearly independent, then u is linearly independent.

theorem ModuleCat.linearIndependent_shortExact {ι : Type u_1} {ι' : Type u_2} {R : Type u_3} [Ring R] {S : CategoryTheory.ShortComplex (ModuleCat R)} (hS' : S.ShortExact) {v : ιS.X₁} (hv : LinearIndependent R v) {w : ι'S.X₃} (hw : LinearIndependent R w) :

Given a short exact sequence 0 ⟶ X₁ ⟶ X₂ ⟶ X₃ ⟶ 0 of R-modules and linearly independent families v : ι → N and w : ι' → P, we get a linearly independent family ι ⊕ ι' → M

In the commutative diagram

    f     g
 X₁ --→ X₂ --→ X₃
 ↑      ↑      ↑
v|     u|     w|
 ι  → ι ⊕ ι' ← ι'

where the top row is an exact sequence of modules and the maps on the bottom are Sum.inl and Sum.inr. If v spans X₁ and w spans X₃, then u spans X₂.

theorem ModuleCat.span_rightExact {ι : Type u_1} {ι' : Type u_2} {R : Type u_3} [Ring R] {S : CategoryTheory.ShortComplex (ModuleCat R)} (hS : S.Exact) {v : ιS.X₁} {w : ι'S.X₃} (hv : Submodule.span R (Set.range v)) (hw : Submodule.span R (Set.range w)) (hE : CategoryTheory.Epi S.g) :

Given an exact sequence X₁ ⟶ X₂ ⟶ X₃ ⟶ 0 of R-modules and spanning families v : ι → X₁ and w : ι' → X₃, we get a spanning family ι ⊕ ι' → X₂

noncomputable def ModuleCat.Basis.ofShortExact {ι : Type u_1} {ι' : Type u_2} {R : Type u_3} [Ring R] {S : CategoryTheory.ShortComplex (ModuleCat R)} (hS' : S.ShortExact) (bN : Basis ι R S.X₁) (bP : Basis ι' R S.X₃) :
Basis (ι ι') R S.X₂

In a short exact sequence 0 ⟶ X₁ ⟶ X₂ ⟶ X₃ ⟶ 0, given bases for X₁ and X₃ indexed by ι and ι' respectively, we get a basis for X₂ indexed by ι ⊕ ι'.

Equations
Instances For

    In a short exact sequence 0 ⟶ X₁ ⟶ X₂ ⟶ X₃ ⟶ 0, if X₁ and X₃ are free, then X₂ is free.