All proofs
Project-declaredLean 4.33.0-rc1 · mathlib@6c5a9081e9b7

Rest δ naturality

groupCohomology.rest_δ_naturality

Plain-language statement

Given any short exact sewuence 0 → A → B → C → 0 in Rep R G and any subgroup H of G, the following diagram is commutative Hⁿ(G,C) ⟶ H^{n+1}(G A) | | ↓ ↓ Hⁿ(H,C) ⟶ H^{n+1}(G A). The vertical arrows are restriction and the horizontals are connecting homomorphisms. For this, it would be sensible to define restriction as a natural transformation, so t...

Exact Lean statement

lemma rest_δ_naturality {S : ShortComplex (Rep R G)} (hS : S.ShortExact)
    {H : Type u} [Group H] (φ : H →* G) (i j : ℕ) (hij : i + 1 = j) :
    δ hS i j hij ≫ (rest φ j).app S.X₁ = (rest φ i).app S.X₃ ≫ δ ((shortExact_res φ).2 hS) i j hij

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma rest_δ_naturality {S : ShortComplex (Rep R G)} (hS : S.ShortExact)    {H : Type u} [Group H] (φ : H →* G) (i j : ) (hij : i + 1 = j) :    δ hS i j hij ≫ (rest φ j).app S.X= (rest φ i).app S.X₃ ≫ δ ((shortExact_res φ).2 hS) i j hij    := by  let C₁ := S.map (cochainsFunctor R G)  let C₂ := (S.map (resFunctor φ)).map (cochainsFunctor R H)  have ses₁ : C₁.ShortExact := map_cochainsFunctor_shortExact hS  have ses₂ : C₂.ShortExact := by    apply map_cochainsFunctor_shortExact    rwa [shortExact_res]  let this : C₁ ⟶ C₂ := {    τ₁ := cochainsMap φ (𝟙 (res φ S.X₁))    τ₂ := cochainsMap φ (𝟙 (res φ S.X₂))    τ₃ := cochainsMap φ (𝟙 (res φ S.X₃))  }  exact HomologicalComplex.HomologySequence.δ_naturality this ses₁ ses₂ i j hij
Project
Class Field Theory
License
Apache-2.0
Commit
f18cd7fd1575
Source
ClassFieldTheory/Cohomology/Functors/Restriction.lean:158-173

Reuse this declaration

Bring the exact result into your workflow

The import identifies the source module. Your project still needs the pinned package dependency shown on this page.

What this badge means

This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.

Continue in this project

Related declarations

Project-declaredLean 4.33.0-rc1

Exists of surjective

groupCohomology.exists_of_surjective

Plain-language statement

Given map f: M ⟶ N and q : ℕ, if H^{q+1}(M) ⟶ H^{q+1}(N) is surjective, then any z : Z^{q+1}(N) can be written as f(z') + d(y) for some z' : Z^{q+1}(M) and y : C^q(M). Note that d is spelled as toCocycles.

number theoryclass field theorylocal fields

Source project: Class Field Theory

Person-level attribution pending.

View proof record