Perturbation of under a trace-norm-bounded error
ProvedZeta23.Assembly.four_tr_sub_frobSq_perturblinear-algebrazeta23
A purely linear-algebraic perturbation lemma (the perturbation step in the paper's proof of [prop:zeroside-rank]). Let be square matrices over or with . Here denotes the real part of the trace (rtrace) and the squared Frobenius norm (frobSq). Suppose is a common bound for the error in the sense that and .
Then
This makes explicit the paper's loss: with , one has and , and expanding gives exactly the loss . In the application (Seam A, hat units), is the full zero-side matrix, its truncation to zeros with ordinate in , the tail, and prop:tail supplies . Consumed by seamA.
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 scoped Matrix.Norms.Frobenius
variable {𝕜 : Type*} [RCLike 𝕜]
variable {n : Type*} [Fintype n]
Formal statement
theorem Zeta23.Assembly.four_tr_sub_frobSq_perturb {Ghat Ahat Ehat : Matrix n n 𝕜}
(hGAE : Ghat = Ahat + Ehat) {B : ℝ} (hB : 0 ≤ B)
(htrE : |rtrace Ehat| ≤ B) (hfrE : frobSq Ehat ≤ B ^ 2) :
4 * rtrace Ghat - frobSq Ghat - B * (4 + 2 * Real.sqrt (frobSq Ghat) + B)
≤ 4 * rtrace Ahat - frobSq Ahat := by sorry
Source