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

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.

Exact Lean statement

theorem exists_of_surjective {k G : Type u} [CommRing k] [Group G] {M N : Rep k G}
    {f : M ⟶ N} {q : ℕ} (h : Function.Surjective (map (MonoidHom.id G) f (q + 1)))
    (z : cocycles N (q + 1)) :
    ∃ z' : cocycles M (q + 1), ∃ y : (inhomogeneousCochains N).X q,
    cocyclesMap (.id G) f (q + 1) z' + toCocycles N q (q + 1) y = z

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem exists_of_surjective {k G : Type u} [CommRing k] [Group G] {M N : Rep k G}    {f : M ⟶ N} {q : } (h : Function.Surjective (map (MonoidHom.id G) f (q + 1)))    (z : cocycles N (q + 1)) :     z' : cocycles M (q + 1),  y : (inhomogeneousCochains N).X q,    cocyclesMap (.id G) f (q + 1) z' + toCocycles N q (q + 1) y = z := by  have hc₁ := (inhomogeneousCochains N).homologyIsCokernel q (q + 1) (by simp)  have hc₂ := ModuleCat.cokernelIsColimit ((inhomogeneousCochains N).toCycles q (q + 1))  obtain z', hz' := h (π N (q + 1) z)  induction z' using groupCohomology_induction_on with | h z' =>  rw [π_map_apply] at hz'  obtain y, hy := exists_of_π_eq_π hz'  exact z', y, hy
Project
Class Field Theory
License
Apache-2.0
Commit
f18cd7fd1575
Source
ClassFieldTheory/Cohomology/SerreApproximation.lean:269-280

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

Infl δ naturality

groupCohomology.infl_δ_naturality

Plain-language statement

Assume that we have a short exact sequence 0 → A → B → C → 0 in Rep R G and that the sequence of H- invariants is also a short exact in Rep R (G ⧸ H) : 0 → Aᴴ → Bᴴ → Cᴴ → 0. Then we have a commuting square Hⁿ(G ⧸ H, Cᴴ) ⟶ H^{n+1}(G ⧸ H, Aᴴ) | | ↓ ↓ Hⁿ(G , C) ⟶ H^{n+1}(G,A) where the horizontal maps are connecting homomorphisms an...

number theoryclass field theorylocal fields

Source project: Class Field Theory

Person-level attribution pending.

View proof record