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

Trivial Tate Cohomology of cases

Rep.TrivialTateCohomology.of_cases

Plain-language statement

To check that a finite group has trivial Tate cohomology, it's enough to show it has trivial cohomology and trivial homology, and that the 0-th and -1st Tate cohomology groups are trivial.

Exact Lean statement

lemma TrivialTateCohomology.of_cases [Finite G] {M : Rep R G}
    [M.TrivialCohomology] [M.TrivialHomology]
    (h : ∀ (H : Subgroup G),
      letI : Fintype H := Fintype.ofFinite _
      IsZero (tateCohomology (M ↓ H.subtype : Rep R H) 0) ∧
        IsZero (tateCohomology (M ↓ H.subtype : Rep R H) (-1))) :
    TrivialTateCohomology M where
  isZero H n

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma TrivialTateCohomology.of_cases [Finite G] {M : Rep R G}    [M.TrivialCohomology] [M.TrivialHomology]    (h :  (H : Subgroup G),      letI : Fintype H := Fintype.ofFinite _      IsZero (tateCohomology (M ↓ H.subtype : Rep R H) 0)         IsZero (tateCohomology (M ↓ H.subtype : Rep R H) (-1))) :    TrivialTateCohomology M where  isZero H n := by    match n with    | .ofNat (n + 1) =>      exact isZero_of_trivialCohomology.of_iso <|        letI : Fintype H := Fintype.ofFinite _        (TateCohomology.isoGroupCohomology (n + 1)).app (M ↓ H.subtype)    | .negSucc (n + 1) =>      letI := TrivialHomology.res M (H := H) H.subtype_injective      exact isZero_of_trivialHomology.of_iso <|        letI : Fintype H := Fintype.ofFinite _        (TateCohomology.isoGroupHomology _ (n + 1) rfl).app (M ↓ H.subtype)    | 0 =>      aesop    | .negSucc 0 =>      aesop
Project
Class Field Theory
License
Apache-2.0
Commit
f18cd7fd1575
Source
ClassFieldTheory/Cohomology/TrivialCohomology.lean:152-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