Sum estimate B: when has at most nonzero entries
ProvedRHLinalg.sum_sq_lower_of_card_pos_leanalysislinear-algebrazeta23
Let be a finite index type and a family with at most indices where . Let be arbitrary.
Statement.
Pointwise this is just , i.e. , applied at the at most indices where and summed; note that no sign hypothesis on or is needed. It is the second of the two elementary scalar estimates in the proof of the rank–trace inequality (paper reference lem:ranktrace). In the module Zeta23.LinAlg.RankTrace it is consumed directly by RHLinalg.rank_trace_ineq, where is the vector of positive parts of the eigenvalues of the Hermitian matrix , nonzero at most times.
Preamble
import Mathlib.Algebra.Order.Rearrangement
import Mathlib.Analysis.Convex.Birkhoff
import Mathlib.Analysis.Matrix.PosDef
open Matrix Finset
open scoped ComplexOrder
variable {𝕜 : Type*} [RCLike 𝕜]
variable {n : Type*} [Fintype n] [DecidableEq n]
variable {ι : Type*} [Fintype ι] [DecidableEq ι]
Formal statement
theorem RHLinalg.sum_sq_lower_of_card_pos_le {q : ι → ℝ}
{b : ℕ} (hb : #{i | q i ≠ 0} ≤ b) (c : ℝ) :
2 * c * (∑ i, q i) - c ^ 2 * b ≤ ∑ i, (q i) ^ 2 := by sorry
Source