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

Is Zero of Even odd

Rep.isZero_ofEven_odd

Plain-language statement

Let M be a representation of a finite cyclic group G. Suppose there are even and positive integers e and o with e even and o odd, such that Hᵉ(G,M) and Hᵒ(G,M) are both zero. Then Hⁿ(G,M) is zero for all n > 0.

Exact Lean statement

lemma isZero_ofEven_odd {e o : ℕ} [NeZero e] (he : Even e) (ho : Odd o)
    (hₑ : IsZero (groupCohomology M e)) (hₒ : IsZero (groupCohomology M o)) (n : ℕ) [NeZero n] :
    IsZero (groupCohomology M n)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma isZero_ofEven_odd {e o : } [NeZero e] (he : Even e) (ho : Odd o)    (hₑ : IsZero (groupCohomology M e)) (hₒ : IsZero (groupCohomology M o)) (n : ) [NeZero n] :    IsZero (groupCohomology M n) := by  cases nonempty_fintype G  obtain hn | hn := n.even_or_odd  · refine .of_iso hₑ <| (periodicCohomology n e ?_).app M    grind [Nat.modEq_iff_dvd]  · have : NeZero o := ho.pos.ne'    refine .of_iso hₒ <| (periodicCohomology n o ?_).app M    grind [Nat.modEq_iff_dvd]
Project
Class Field Theory
License
Apache-2.0
Commit
f18cd7fd1575
Source
ClassFieldTheory/Cohomology/FiniteCyclic/UpDown.lean:416-425

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