Exists unique rel Series is Interval Semistable of complete Linear Order
HarderNarasimhan.exists_unique_relSeries_isIntervalSemistable_of_completeLinearOrder
Plain-language statement
Uniqueness of the semistable RelSeries in the complete linear order case. When S is a complete linear order, Harder–Narasimhan filtrations are unique. Using impl.hHFil_of_hNSeries, any RelSeries satisfying the slope condition produces a filtration; uniqueness of filtrations then implies uniqueness of such series (up to extensional equality).
Exact Lean statement
theorem exists_unique_relSeries_isIntervalSemistable_of_completeLinearOrder
{ℒ : Type*} [Nontrivial ℒ] [Lattice ℒ] [BoundedOrder ℒ] [WellFoundedGT ℒ]
{S : Type*} [CompleteLinearOrder S]
(μ : {p :ℒ × ℒ // p.1 < p.2} → S)
[hμ : μA_DescendingChainCondition μ] [hμcvx : Convex μ] :
------------
∃! s : RelSeries (IntervalSemistableRel μ),
s.head = ⊥ ∧ s.last = ⊤ ∧
∀ i : ℕ, (hi : i + 1 < s.length) →
¬ μA μ ⟨(s.toFun i, s.toFun ↑(i+1)), impl.relSeries_step_lt s hi⟩
≤ μA μ ⟨(s.toFun ↑(i+1), s.toFun ↑(i+2)), impl.relSeries_succ_step_lt s hi⟩
------------Formal artifact
Lean source
theorem exists_unique_relSeries_isIntervalSemistable_of_completeLinearOrder{ℒ : Type*} [Nontrivial ℒ] [Lattice ℒ] [BoundedOrder ℒ] [WellFoundedGT ℒ]{S : Type*} [CompleteLinearOrder S](μ : {p :ℒ × ℒ // p.1 < p.2} → S)[hμ : μA_DescendingChainCondition μ] [hμcvx : Convex μ] :------------∃! s : RelSeries (IntervalSemistableRel μ), s.head = ⊥ ∧ s.last = ⊤ ∧ ∀ i : ℕ, (hi : i + 1 < s.length) → ¬ μA μ ⟨(s.toFun i, s.toFun ↑(i+1)), impl.relSeries_step_lt s hi⟩ ≤ μA μ ⟨(s.toFun ↑(i+1), s.toFun ↑(i+2)), impl.relSeries_succ_step_lt s hi⟩------------:= by apply existsUnique_of_exists_of_unique · exact exists_relSeries_isIntervalSemistable μ · intro F1 F2 h1 h2 rcases impl.hHFil_of_hNSeries μ F1 h1 with ⟨HN1,len1⟩ rcases impl.hHFil_of_hNSeries μ F2 h2 with ⟨HN2,len2⟩ have t2 := instUniqueHarderNarasimhanFiltration.uniq HN2 have := t2.symm ▸ (instUniqueHarderNarasimhanFiltration.uniq HN1) have len_eq : F1.length = F2.length := by rw [← len1.2, ← len2.2, this] ext x · rw [← len1.2, ← len2.2, this] · simp only [Function.comp_apply] have := congrFun (congrArg HarderNarasimhanFiltration.filtration this) ↑x rw [len1.1,len2.1] at this convert this · simp only [Fin.cast_val_eq_self] if hx : ↑x ≤ F1.length then simp only [hx, ↓reduceIte] else simp only [hx, ↓reduceIte] simp only [not_le] at hx have := Fin.is_le x exfalso linarith · if hx : ↑x ≤ F2.length then simp only [hx, ↓reduceIte] congr refine Fin.eq_of_val_eq <| Eq.symm (Fin.val_cast_of_lt ?_) exact Nat.lt_add_one_of_le hx else simp only [hx, ↓reduceIte] simp only [not_le] at hx have : ↑x ≤ F2.length := len_eq ▸ Fin.is_le x exfalso linarith- Project
- Harder-Narasimhan
- License
- Apache-2.0
- Commit
- 20220e90b72c
- Source
- HarderNarasimhan/Filtration/Results.lean:181-228
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
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...
Source project: Harder-Narasimhan
Person-level attribution pending.
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.
Source project: Harder-Narasimhan
Person-level attribution pending.
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.
Source project: Harder-Narasimhan
Person-level attribution pending.