Definitions/Def_GroupCohomology_TateShiftMaps.lean
Induced maps and connecting maps on Tate cohomology
Over a commutative ring k and a finite group G, the \mathbb Z-graded object A \mapsto A.\mathtt{tateCohomology} is assembled piecewise: in degrees n \ge 1 it is Mathlib's group cohomology H^n(G,A), in degree 0 it is A^G modulo the image of the map \bar N induced by the norm \sum_{g} \rho(g) on coinvariants, in degree -1 it is \ker \bar N, and in degree -(m+2) for m \ge 0 it is group homology H_{m+1}(G,A). This module supplies the two pieces of data accompanying that grading, both by case dispatch on the degree along the same pattern.
First, for a morphism \varphi : A \to B of k-linear G-representations, Rep.tateMap gives a k-linear map in each degree n: for n = m+1 \ge 1 it is groupCohomology.map along the identity of G in degree m+1; in degree 0 it is the map on A^G/\operatorname{im}\bar N induced by \varphi on invariants; in degree -1 it is the map on \ker\bar N induced by \varphi on coinvariants; in degree -(m+2) it is groupHomology.map along the identity of G in degree m+1.
Second, for a short exact sequence X of representations with proof hX of exactness, Rep.tateδ gives connecting maps \hat H^n(X_3) \to \hat H^{n+1}(X_1): for n \ge 1 the cohomological \delta from degree n to n+1; for n = 0 the map tateδ₀, the factorisation through X_3^G/\operatorname{im}\bar N of \delta^0 precomposed with the inverse of the degree‑0 comparison isomorphism; for n = -1 the map tateδneg1, obtained from norms of those elements b \in X_2 whose image in X_3 has vanishing norm, lifted back through the injection X_1 \to X_2; for n = -2 the map tateδneg2, the homological \delta from H_1 to H_0 followed by the degree‑0 comparison isomorphism, corestricted to \ker\bar N; and for n = -(m+3) the homological \delta from H_{m+2} to H_{m+1}.
Accompanying lemmas record the value of tateMap and of tateδ in each of these ranges of degrees as definitional identities.
Relation to Mathlib
Mathlib provides group cohomology and group homology of representations together with their induced maps and connecting maps, but no Tate cohomology of a finite group; the graded carrier and these maps on it are the project's own, built by splicing the Mathlib functors with the low-degree norm constructions.
Where it is used
These maps are the data on which the long exact sequence in all integer degrees, functoriality, naturality of \delta and dimension shifting for Tate cohomology are stated and proved, providing the cohomological toolkit for the Galois-cohomological arguments used later.
References
- J.-P. Serre, Local Fields, Graduate Texts in Mathematics 67, Springer, 1979, Ch. VIII
- J. Neukirch, A. Schmidt and K. Wingberg, Cohomology of Number Fields, Grundlehren der mathematischen Wissenschaften 323, Springer, 2000
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 49 lines
- 11 declarations
- used in the statements of 37 theorems and imported by 43 proofs
- imports 2 definition modules
Source file: Definitions/Def_GroupCohomology_TateShiftMaps.lean
Imported by
Declarations
- def
Rep.tateMap - lemma
Rep.tateMap_ofNat_succ - lemma
Rep.tateMap_zero - lemma
Rep.tateMap_neg_one - lemma
Rep.tateMap_negSucc_succ - def
Rep.tateδ - lemma
Rep.tateδ_ofNat_succ - lemma
Rep.tateδ_zero - lemma
Rep.tateδ_neg_one - lemma
Rep.tateδ_neg_two - lemma
Rep.tateδ_negSucc_succ_succ
Source
import Mathlib import Definitions.Def_GroupCohomology_TateCohomology import Definitions.Def_GroupCohomology_TateSeam set_option autoImplicit false universe u open CategoryTheory noncomputable section namespace Rep variable {k G : Type u} [CommRing k] [Group G] [Fintype G] def tateMap {A B : Rep.{u} k G} (φ : A ⟶ B) : ∀ n : ℤ, (A.tateCohomology n ⟶ B.tateCohomology n) | (Int.ofNat (n + 1)) => groupCohomology.map (MonoidHom.id G) φ (n + 1) | (Int.ofNat 0) => ModuleCat.ofHom (tateH0Map φ) | (Int.negSucc 0) => ModuleCat.ofHom (tateHneg1Map φ) | (Int.negSucc (n + 1)) => groupHomology.map (MonoidHom.id G) φ (n + 1) lemma tateMap_ofNat_succ {A B : Rep.{u} k G} (φ : A ⟶ B) (n : ℕ) : tateMap φ (n + 1 : ℕ) = groupCohomology.map (MonoidHom.id G) φ (n + 1) := rfl lemma tateMap_zero {A B : Rep.{u} k G} (φ : A ⟶ B) : tateMap φ 0 = ModuleCat.ofHom (tateH0Map φ) := rfl lemma tateMap_neg_one {A B : Rep.{u} k G} (φ : A ⟶ B) : tateMap φ (-1) = ModuleCat.ofHom (tateHneg1Map φ) := rfl lemma tateMap_negSucc_succ {A B : Rep.{u} k G} (φ : A ⟶ B) (n : ℕ) : tateMap φ (Int.negSucc (n + 1)) = groupHomology.map (MonoidHom.id G) φ (n + 1) := rfl variable {X : ShortComplex (Rep.{u} k G)} def tateδ (hX : X.ShortExact) : ∀ n : ℤ, (X.X₃.tateCohomology n ⟶ X.X₁.tateCohomology (n + 1)) | (Int.ofNat (n + 1)) => groupCohomology.δ hX (n + 1) (n + 2) rfl | (Int.ofNat 0) => ModuleCat.ofHom (tateδ₀ hX) | (Int.negSucc 0) => ModuleCat.ofHom (tateδneg1 hX) | (Int.negSucc 1) => ModuleCat.ofHom (tateδneg2 hX) | (Int.negSucc (n + 2)) => groupHomology.δ hX (n + 2) (n + 1) rfl lemma tateδ_ofNat_succ (hX : X.ShortExact) (n : ℕ) : tateδ hX (n + 1 : ℕ) = groupCohomology.δ hX (n + 1) (n + 2) rfl := rfl lemma tateδ_zero (hX : X.ShortExact) : tateδ hX 0 = ModuleCat.ofHom (tateδ₀ hX) := rfl lemma tateδ_neg_one (hX : X.ShortExact) : tateδ hX (-1) = ModuleCat.ofHom (tateδneg1 hX) := rfl lemma tateδ_neg_two (hX : X.ShortExact) : tateδ hX (-2) = ModuleCat.ofHom (tateδneg2 hX) := rfl lemma tateδ_negSucc_succ_succ (hX : X.ShortExact) (n : ℕ) : tateδ hX (Int.negSucc (n + 2)) = groupHomology.δ hX (n + 2) (n + 1) rfl := rfl end Rep end
Statements phrased using this module (37)
- ℤ-freeness of the relation module carrier
Rep.moduleFree_relationCarrier0 below · depth 19 - Exactness of the canonical free presentation over ℤ
Rep.relationSeqInt_shortExact0 below · depth 19 - Cup product with a degree-zero class on the right
Rep.IsTateCupProduct.cup_mk_right_eq_tateMap31 below · depth 20 - Tate–Nakayama surjectivity via a Tate-acyclic presentation
Rep.IsTateCupProduct.exists_tateNakayamaPairing_right_eq_of_shortExact102 below · depth 20 - Existence of a cup product on Tate cohomology
Rep.exists_isTateCupProduct43 below · depth 20 - Restriction of a free representation is Tate-acyclic
Rep.isZero_tateCohomology_res_free10 below · depth 20 - Finite generation of the relation module over ℤ
Rep.moduleFinite_relationCarrier0 below · depth 20 - Tate–Nakayama pairing: surjectivity in the right variable
Rep.IsTateCupProduct.exists_tateNakayamaPairing_right_eq101 below · depth 21 - Dimension shifting: δⁿ is bijective for the sequence 0→ A''→ Ind A→ A→ 0
Rep.bijective_tateDelta_dimShiftDown12 below · depth 21 - Dimension shifting: δ is bijective for 0→ A→ Ind Res A→ A'→ 0
Rep.bijective_tateDelta_dimShiftUp12 below · depth 21 - Bijectivity of the Tate connecting map when the middle term vanishes
Rep.bijective_tateDelta_of_isZero8 below · depth 21 - Anticommutativity of Tate connecting maps in a 3× 3 diagram
Rep.tateDelta_comp_tateDelta_eq_neg0 below · depth 21 - Anticommutation of Tate connecting maps in a 3× 3 diagram
Rep.tateDelta_comp_tateDelta_eq_neg_of_hom0 below · depth 21 - Naturality of the Tate connecting maps in all degrees
Rep.tateDelta_naturality0 below · depth 21 - Tate's theorem in cup-product form with free coefficients
Rep.IsTateCupProduct.bijective_cup_of_h1_h279 below · depth 22 - Associativity of the Tate cup product in all degrees
Rep.IsTateCupProduct.cup_assoc33 below · depth 22 - Graded commutativity of the Tate cup product
Rep.IsTateCupProduct.cup_comm33 below · depth 22 - Right surjectivity of the integral Tate duality pairing
Rep.IsTateCupProduct.exists_cupEv_dual_right_eq55 below · depth 22 - Right non-degeneracy of Tate–Nakayama pairing after δ
Rep.IsTateCupProduct.tateNakayamaPairing_right_eq_zero_of_shortExact95 below · depth 22 - Exactness of the Tate long exact sequence at ̂ Hⁿ⁺¹(X₁)
Rep.exact_tateDelta_tateMap3 below · depth 22 - Exactness of the Tate sequence at ̂ Hⁿ(X₃)
Rep.exact_tateMap_tateDelta3 below · depth 22 - Functoriality of Tate cohomology: compatibility with composition
Rep.tateMap_comp0 below · depth 22 - Tate cohomology: the identity map induces the identity
Rep.tateMap_id0 below · depth 22 - Integral Tate duality via cup product, p+q=0
Rep.IsTateCupProduct.bijective_cupEv_dual_left54 below · depth 23 - Right non-degeneracy of the integral Tate pairing
Rep.IsTateCupProduct.cupEv_dual_right_eq_zero47 below · depth 23 - Cup product with a degree-0 Tate class is an induced map
Rep.IsTateCupProduct.cup_mk_left_eq_tateMap31 below · depth 23 - Cup product of invariant classes in degree (0,0)
Rep.IsTateCupProduct.cup_mk_mk32 below · depth 23 - Injectivity of Tate duality pairing in all degrees
Rep.IsTateCupProduct.injective_cupEv_characterDual40 below · depth 23 - Right non-degeneracy of the Tate–Nakayama pairing
Rep.IsTateCupProduct.tateNakayamaPairing_right_eq_zero94 below · depth 23 - Fundamental class via two Tate connecting maps
Rep.tateDelta_splitting_tateDelta_aug_eq_map_H2pi0 below · depth 23 - Right non-degeneracy of the Tate pairing against ℚ/ℤ
Rep.IsTateCupProduct.cupEv_characterDual_eq_zero40 below · depth 24 - Left non-degeneracy of the Tate pairing in degrees (-1,0)
Rep.IsTateCupProduct.injective_cupEv_negOne_characterDual33 below · depth 24 - Additivity of the Tate cohomology maps in the morphism
Rep.tateMap_add0 below · depth 24 - Compatible pairings annihilate the sum of Tate connecting maps
Rep.tateMap_tateDelta_add_tateMap_tateDelta_eq_zero8 below · depth 24 - Right non-degeneracy of the Tate pairing in degrees (-1,0)
Rep.IsTateCupProduct.cupEv_characterDual_zero_eq_zero33 below · depth 25 - Cup product ̂ H⁻¹×̂ H⁰→̂ H⁻¹ on explicit classes
Rep.IsTateCupProduct.cup_neg_one_mk32 below · depth 25 - Exactness of Tate cohomology functors on a short exact sequence
Rep.exact_tateMap_tateMap2 below · depth 27