The explicit error term in the zero-side lower bound is
ProvedZeta23.Assembly.err_isLittleOanalysiszeta23
Step E1 of the assembly: the explicit error accumulated by the lower bound (N0star_lower_H) is little-o of the zero count. Let be real functions of and a constant, with: ; as ; ; and eventually (in the application ).
Then
The delicate term is the middle one: precisely because and stays bounded. Here are the explicit remainders of the trace asymptotics [eq:tr1], [eq:tr2], the boundary zero count, and the tail perturbation . Consumed by thmA_abstract_err to convert its explicit inequality into the clean -form of Theorem A.
Preamble
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.Complex.ExponentialBounds import Mathlib.Analysis.Convex.Birkhoff import Mathlib.Analysis.Matrix.Normed import Mathlib.Analysis.Matrix.PosDef import Mathlib.Analysis.Real.Pi.Bounds import Mathlib.Analysis.SpecialFunctions.Gamma.Digamma import Mathlib.Analysis.SpecialFunctions.Pow.Asymptotics 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.IntervalIntegral.Basic import Mathlib.MeasureTheory.Measure.Lebesgue.Basic import Mathlib.NumberTheory.ArithmeticFunction.VonMangoldt import Definitions.Def_Zeta23_Assembly 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_PrimeSideTemp import Definitions.Def_Zeta23_TracesBoundsE open Matrix Finset RHLinalg open scoped ComplexOrder open Zeta23 open Assembly open Filter Asymptotics Topology
Formal statement
theorem Zeta23.Assembly.err_isLittleO {N R₁ R₂ NII B cl : ℝ → ℝ} {K : ℝ}
(hN : Tendsto N atTop atTop)
(hR₁ : R₁ =o[atTop] N) (hR₂ : R₂ =o[atTop] N) (hNII : NII =o[atTop] N)
(hB : Tendsto B atTop (𝓝 0))
(hcl : ∀ᶠ T in atTop, 0 ≤ cl T ∧ cl T ≤ K) :
(fun T => 4 * R₁ T + R₂ T + 3 * NII T
+ B T * (4 + 2 * Real.sqrt (cl T * N T + R₂ T) + B T)) =o[atTop] N := by sorry
Source