prop:block (i):
ProvedZeta23.ZeroSide.ZeroBlockData.posIndex_blockA_leSetup (ZeroBlockData ι d, the abstract zero-side data of the window ): a finite index type of distinct zeros with multiplicities , evaluation vectors (at instantiation ), and the involution () satisfying and . The matrix [eq:AE] is
(transpose, not conjugate-transpose; blockA), which is Hermitian, indeed real symmetric. posIndex is the number of strictly positive eigenvalues. and count the on-line points (, i.e. ) with and respectively, and where is a choice of one representative per off-line pair (PairReps).
Statement.
Positive scalings do not change (posIndex_smul_pos), so the same bound holds for the paper's normalisations and . The Lean proof runs the paper's inertia argument through subadditivity of the positive index (posIndex_add_le, the corollary of [lem:inertia]): writing with of rank and the pair part with of rank , (each hyperbolic block ).
Role. This is part (i) of the paper's prop:block; in the module Zeta23.ZeroSide it is packaged by blockInputsAt into Assembly.BlockInputs, the zero-side input of the variational proof of Theorem A.
import Mathlib.Algebra.BigOperators.Finprod
import Mathlib.Algebra.Order.Chebyshev
import Mathlib.Algebra.Order.Rearrangement
import Mathlib.Analysis.CStarAlgebra.Classes
import Mathlib.Analysis.Calculus.ContDiff.Defs
import Mathlib.Analysis.Convex.Birkhoff
import Mathlib.Analysis.Matrix.PosDef
import Mathlib.Analysis.SpecialFunctions.ExpDeriv
import Mathlib.Analysis.SpecialFunctions.Gamma.Digamma
import Mathlib.Analysis.SpecialFunctions.Log.Basic
import Mathlib.Analysis.SpecialFunctions.Pow.Complex
import Mathlib.Data.Matrix.Basic
import Mathlib.Data.Set.Card
import Mathlib.LinearAlgebra.FiniteDimensional.Lemmas
import Mathlib.MeasureTheory.Integral.Bochner.Basic
import Mathlib.MeasureTheory.Integral.Bochner.ContinuousLinearMap
import Mathlib.MeasureTheory.Integral.IntervalIntegral.Basic
import Mathlib.MeasureTheory.Measure.Haar.NormedSpace
import Mathlib.MeasureTheory.Measure.Lebesgue.Basic
import Mathlib.NumberTheory.ArithmeticFunction.VonMangoldt
import Mathlib.Topology.Algebra.InfiniteSum.Order
import Definitions.Def_Zeta23_Assembly_Inputs
import Definitions.Def_Zeta23_Defs
import Definitions.Def_Zeta23_Hypotheses
import Definitions.Def_Zeta23_LinAlg_HermitianPosPart
import Definitions.Def_Zeta23_LinAlg_PosIndex
import Definitions.Def_Zeta23_LinAlg_Sylvester
import Definitions.Def_Zeta23_LinAlg_VonNeumann
import Definitions.Def_Zeta23_ZeroSide
set_option linter.unusedSectionVars false
open Matrix Finset RHLinalg
open scoped ComplexOrder BigOperators
open Zeta23
open Zeta23.ZeroSide
variable {ι d : Type*} [Fintype ι] [DecidableEq ι] [Fintype d] [DecidableEq d]
open ZeroBlockData
variable (D : ZeroBlockData ι d)
variable {D}
variable (D) (P : D.PairReps)
theorem Zeta23.ZeroSide.ZeroBlockData.posIndex_blockA_le : posIndex D.blockA_isHermitian ≤ D.s₁ + D.s₂ + P.p := by sorry