Even-power coupled extraction at every base below the raw value
Provedmme_CW_q6_coupled_even_power_finite_extractions_below_rawFix with , let be the explicit four-sum coupled Coppersmith--Winograd constituent, and choose a nonnegative real number
For every sufficiently large , set
Then , , and the exact pruning condition holds. Moreover there is a finite family of matrix-multiplication tensors with a concrete modewise restriction
whose weighted volume satisfies
The strict inequality is essential: it absorbs the Stirling and Salem--Spencer subexponential losses in the proof on journal pp. 270--272. Thus the statement records exactly the exponential-rate conclusion of the paper without asserting constant-relative attainment at the boundary value. It retains the literal even power, rounded type counts, pruning certificate, direct sum, and actual tensor-restriction witnesses.
import Mathlib.Analysis.SpecificLimits.Basic import Definitions.Def_mme_CW_coupled_value open MME BigOperators Filter universe u
theorem mme_CW_q6_coupled_even_power_finite_extractions_below_raw
{K : Type u} [Field K]
(tau : ℝ) (htau : 2 ≤ 3 * tau)
(V : ℝ) (hV : 0 ≤ V)
(hVlt :
V < 4 * (6 : ℝ) ^ (3 * tau) *
((6 : ℝ) ^ (3 * tau) + 2)) :
∀ᶠ N : ℕ in atTop,
let lambda : ℝ := 2 / ((6 : ℝ) ^ (3 * tau) + 2)
let L : ℕ := ⌊lambda * (N : ℝ)⌋₊
let G : ℕ := N - L
0 < L ∧ L + G = N ∧ 341 * L < 100 * G ∧
∃ (k : ℕ) (a b c : Fin k → ℕ),
TensorObj.Restrict
(TensorObj.bigAdd (fun i => MMObj K (a i) (b i) (c i)))
((cyclicSymmetrization (coupledObj K 6)).kronPow (2 * N)) ∧
V ^ (2 * N) ≤
∑ i, (((a i * b i * c i : ℕ) : ℝ) ^ tau) := by sorry