All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a

Μ bot JH eq μ tot

HarderNarasimhan.impl.μ_bot_JH_eq_μ_tot

Plain-language statement

μ_bot_JH_eq_μ_tot is an invariance statement along a Jordan–Hölder filtration. For every index i before the terminal length, the payoff μ (⊥, JH.filtration i) equals the total payoff μ (⊥, ⊤). The proof is by induction on i using the first step condition.

Exact Lean statement

lemma μ_bot_JH_eq_μ_tot {ℒ : Type*} [Nontrivial ℒ] [Lattice ℒ] [BoundedOrder ℒ] [WellFoundedGT ℒ]
{S : Type*} [CompleteLinearOrder S]
{μ : {p : ℒ × ℒ // p.1 < p.2} → S}
[hsl : SlopeLike μ] (JH : JordanHolderFiltration μ) :
∀ i : ℕ, (hi : i < Nat.find JH.fin_len) → μ ⟨(⊥, JH.filtration i), by
  rw [← Nat.find_spec JH.fin_len]
  apply JH.strict_anti
  · exact hi
  · exact le_rfl
  ⟩ = μ ⟨(⊥, ⊤), bot_lt_top⟩

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma μ_bot_JH_eq_μ_tot {ℒ : Type*} [Nontrivial ℒ] [Lattice ℒ] [BoundedOrder ℒ] [WellFoundedGT ℒ]{S : Type*} [CompleteLinearOrder S]{μ : {p : ℒ × ℒ // p.1 < p.2}  S}[hsl : SlopeLike μ] (JH : JordanHolderFiltration μ) : i : , (hi : i < Nat.find JH.fin_len)  μ (⊥, JH.filtration i), by  rw [ Nat.find_spec JH.fin_len]  apply JH.strict_anti  · exact hi  · exact le_rfl   = μ (⊥, ⊤), bot_lt_top := by  intro i hi  induction i with  | zero => simp only [JH.first_eq_top]  | succ i hi' =>    have := seesaw' μ hsl ⊥ (JH.filtration (i + 1)) ⊤ by      rw [ Nat.find_spec JH.fin_len]      apply JH.strict_anti      · exact hi      · exact le_rfl      ,by      rw [ JH.first_eq_top]      apply JH.strict_anti      · exact Nat.zero_lt_succ i      · exact le_of_lt hi          refine (this.2.2.2.2 ?_).1    rw [ JH.step_cond₁ i <| Nat.lt_of_succ_lt hi]    if htop : JH.filtration i =then      simp only [htop]    else    have := seesaw' μ hsl (JH.filtration (i + 1)) (JH.filtration i) ⊤ by      apply JH.strict_anti      · exact lt_add_one i      · exact Nat.le_of_succ_le hi      ,Ne.lt_top' fun a  htop (id (Eq.symm a))          refine (this.2.2.2.1 ?_).1    specialize hi' (Nat.lt_of_succ_lt hi)    have := seesaw' μ hsl ⊥ (JH.filtration i) ⊤ by      rw [ Nat.find_spec JH.fin_len]      apply JH.strict_anti      · exact Nat.lt_of_succ_lt hi      · exact le_rfl      ,Ne.lt_top' fun a  htop (id (Eq.symm a))    rw [ (this.2.2.1 hi').2,JH.step_cond₁ i <| Nat.lt_of_succ_lt hi]
Project
Harder-Narasimhan
License
Apache-2.0
Commit
20220e90b72c
Source
HarderNarasimhan/JordanHolderFiltration/Impl.lean:598-642

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.31.0

Associated Primes ker mk Linear Map eq

HarderNarasimhan.CommutativeAlgebra.associatedPrimes_ker_mkLinearMap_eq

Project documentation

Associated primes of the kernel of the localization map. This identifies the associated primes of ker (LocalizedModule.mkLinearMap S M) : Submodule R M with the associated primes of M that do meet the multiplicative set S. Equivalently, these are the associated primes of M after removing those disjoint from S. This lemma is used as the “kernel...

algebraic geometryvector bundlescategory theory

Source project: Harder-Narasimhan

Person-level attribution pending.

View proof record
Project-declaredLean 4.31.0

Associated Primes ker mk Linear Map subset

HarderNarasimhan.CommutativeAlgebra.associatedPrimes_ker_mkLinearMap_subset

Plain-language statement

One-sided inclusion for associated primes of the kernel of the localization map. If p ∈ associatedPrimes R (ker (mkLinearMap S M)), then p is an associated prime of M and p is not disjoint from the multiplicative set S. This is one direction of associatedPrimes_ker_mkLinearMap_eq.

algebraic geometryvector bundlescategory theory

Source project: Harder-Narasimhan

Person-level attribution pending.

View proof record
Project-declaredLean 4.31.0

Associated Primes localized Module subset disjoint

HarderNarasimhan.CommutativeAlgebra.associatedPrimes_localizedModule_subset_disjoint

Plain-language statement

Associated primes of a localized module are disjoint from the multiplicative set. More precisely, if p ∈ associatedPrimes R (LocalizedModule S M), then p.carrier ∩ S = ∅. This is a standard fact in commutative algebra: an element of S becomes a unit after localization, so no associated prime of the localized module can contain an element of S.

algebraic geometryvector bundlescategory theory

Source project: Harder-Narasimhan

Person-level attribution pending.

View proof record