All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

Eval Split eq eval

ArkLib.Lattices.Hachi.evalSplit_eq_eval

Plain-language statement

The split. Evaluating a multilinear polynomial equals the vector–matrix–vector product of its reshaped coefficient matrix with the monomial bases of the low and high evaluation points (Hachi [NOZ26, §4]).

Exact Lean statement

theorem evalSplit_eq_eval (p : CMlPolynomial R (nl + nh)) (xl : Vector R nl) (xh : Vector R nh) :
    evalSplit p xl xh = eval p (xl ++ xh)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem evalSplit_eq_eval (p : CMlPolynomial R (nl + nh)) (xl : Vector R nl) (xh : Vector R nh) :    evalSplit p xl xh = eval p (xl ++ xh) := by  simp only [evalSplit, splitForm]  rw [eval_eq_sum,     Equiv.sum_comp (splitEquiv nl nh) (fun i => p.get i * (monomialBasis (xl ++ xh)).get i),    Fintype.sum_prod_type, dot_eq_sum, Finset.sum_comm]  apply Finset.sum_congr rfl  intro y _  rw [matVecMul_apply, dot_eq_sum, Finset.mul_sum]  apply Finset.sum_congr rfl  intro x _  rw [monomialBasis_split]  change (monomialBasis xl).get y * (toMatrix p y x * (monomialBasis xh).get x)    = toMatrix p y x * ((monomialBasis xl).get y * (monomialBasis xh).get x)  ring
Project
ArkLib
License
Apache-2.0
Commit
fad5cbf80877
Source
ArkLib/Commitments/Functional/Hachi/EvalSplit.lean:172-186

Reuse this declaration

Bring the exact result into your workflow

The import identifies the source module. Your project still needs the pinned package dependency shown on this page.

What this badge means

This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.

Continue in this project

Related declarations

Project-declaredLean 4.31.0

Affine gaps lifted to interleaved codes

affine_gaps_lifted_to_interleaved_codes

Project documentation

This lemma proves the final algebraic step in the DG25 Theorem 3.1 proof. It shows that if R > e + 1, then e * (R / (R - 1)) < e + 1. The intuition is that the fraction R / (R - 1) is always greater than 1, but as R gets larger, it gets closer to 1. The hypothesis R > e + 1 provides a strong enough bound to ensure the product e * (fraction) do...

cryptographyproof systemscoding theory

Source project: ArkLib

Person-level attribution pending.

View proof record
Project-declaredLean 4.31.0

Gadget Decompose coeff

ArkLib.Lattices.Ajtai.gadgetDecompose_coeff

Plain-language statement

The k-th coefficient (k < deg φ) of a gadget-decomposition block is exactly the corresponding digit of the corresponding input coefficient.

cryptographyproof systemscoding theory

Source project: ArkLib

Person-level attribution pending.

View proof record
Project-declaredLean 4.31.0

Gadget Decompose lawful

ArkLib.Lattices.Ajtai.gadgetDecompose_lawful

Plain-language statement

The base-b gadget decomposition is a lawful gadget decomposition.

cryptographyproof systemscoding theory

Source project: ArkLib

Person-level attribution pending.

View proof record