Common translation contracts the matrix integral distance:
ProvedRybinAI2026.P01.distance_add_right_leintegral-inequalitymatrix-analysispositive-definite-matrices
Let and let be real symmetric positive definite matrices. Let be the distance of CUHK-Shenzhen AI Math Problem 1,
with the (unnormalised) surface measure toSphere of Lebesgue measure. Then
Adding the same positive definite matrix to both arguments can only decrease the distance. This is the case of the mission target RybinAI2026.P01.matrix_integral_inequality: there the right-hand side is . It is the first of a family of unconditional structural properties of (translation monotonicity, subadditivity, symmetry, homogeneity) that any proof of the full conjecture can build on.
Formalization note. distance, bilinear and surfaceMeasure are the mission's definitions; Matrix.PosDef includes symmetry. No hypothesis 0 < n is needed.
Preamble
import Definitions.Def_rybin2026_p01_matrix_integral open Matrix MeasureTheory
Formal statement
namespace RybinAI2026.P01
/-- Common translation contracts the distance. -/
theorem distance_add_right_le {n : ℕ} (A C E : Matrix (Fin n) (Fin n) ℝ)
(hA : A.PosDef) (hC : C.PosDef) (hE : E.PosDef) :
distance (A + E) (C + E) ≤ distance A C := by
sorry
end RybinAI2026.P01
Source
Unconditional structural property / special case of CUHK-Shenzhen AI Math Problem 1 (Prof. Cosme Louart), https://rybindmitry.github.io/problems/1.html; Prove2Me mission 'Positive definite matrix integral inequality' (c36fd4df); no literature source.