Exists rel Series is Interval Semistable
HarderNarasimhan.exists_relSeries_isIntervalSemistable
Plain-language statement
Existence of a semistable RelSeries from ⊥ to ⊤ with strictly decreasing slopes. From the canonical HarderNarasimhanFiltration μ, we build a RelSeries over the relation IntervalSemistableRel μ. The step field is given by the strict-mono successor property together with piecewise_semistable. The final conjunct states the slope strictness co...
Exact Lean statement
theorem exists_relSeries_isIntervalSemistable
{ℒ : Type*} [Nontrivial ℒ] [Lattice ℒ] [BoundedOrder ℒ] [WellFoundedGT ℒ]
{S : Type*} [CompleteLattice S]
(μ : {p :ℒ × ℒ // p.1 < p.2} → S)
[hμ : μA_DescendingChainCondition μ] [hμcvx : Convex μ] [h : μ_Admissible μ] :
------------
∃ 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_relSeries_isIntervalSemistable{ℒ : Type*} [Nontrivial ℒ] [Lattice ℒ] [BoundedOrder ℒ] [WellFoundedGT ℒ]{S : Type*} [CompleteLattice S](μ : {p :ℒ × ℒ // p.1 < p.2} → S)[hμ : μA_DescendingChainCondition μ] [hμcvx : Convex μ] [h : μ_Admissible μ] :------------∃ 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 let HNfil : HarderNarasimhanFiltration μ := default let HNseq : RelSeries (IntervalSemistableRel μ) := { toFun := fun n ↦ HNfil.filtration n, length := Nat.find HNfil.fin_len step := fun i ↦ ⟨HNfil.strict_mono i.val (i.succ).val (Nat.lt_add_one i.val) <| Fin.is_le i.succ, HNfil.piecewise_semistable i.val i.prop⟩ } use HNseq refine ⟨rfl,Nat.find_spec HNfil.fin_len,?_⟩ refine fun i hi hc ↦ HNfil.μA_pseudo_strict_anti i hi ?_ convert hc · exact Eq.symm (Nat.mod_eq_of_lt <| lt_trans (Nat.lt_add_one i) <|lt_trans hi (Nat.lt_add_one _)) · exact Eq.symm (Nat.mod_eq_of_lt <| lt_trans hi (Nat.lt_add_one _)) · exact Eq.symm (Nat.mod_eq_of_lt <| lt_trans hi (Nat.lt_add_one _)) · exact Eq.symm (Nat.mod_eq_of_lt <| Nat.succ_lt_succ hi)- Project
- Harder-Narasimhan
- License
- Apache-2.0
- Commit
- 20220e90b72c
- Source
- HarderNarasimhan/Filtration/Results.lean:142-169
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.