Binding Advantage le module SIS of short Closure
ArkLib.Lattices.Ajtai.Simple.bindingAdvantage_le_moduleSIS_of_shortClosure
Plain-language statement
Binding reduces to Module-SIS for any commitment/Module-SIS shortness predicates closed under differences.
Exact Lean statement
theorem bindingAdvantage_le_moduleSIS_of_shortClosure {rows cols : Nat}
[SampleableType (PublicParams Φ rows cols)]
[DecidableEq (Message Φ cols)] [DecidableEq (Commitment Φ rows)]
(isShort : Message Φ cols → Bool) (isShortSIS : ModuleSIS.Solution Φ cols → Bool)
(hsub : ∀ s₁ s₂ : Message Φ cols, isShort s₁ = true → isShort s₂ = true →
isShortSIS (s₁ - s₂) = true)
(adv : BindingAdv (PublicParams Φ rows cols) (Message Φ cols) (Commitment Φ rows) Opening) :
bindingAdvantage (commitmentScheme Φ rows cols isShort) adv ≤
ModuleSIS.advantage Φ rows cols isShortSIS (bindingAdvToModuleSIS Φ isShortSIS adv)Formal artifact
Lean source
theorem bindingAdvantage_le_moduleSIS_of_shortClosure {rows cols : Nat} [SampleableType (PublicParams Φ rows cols)] [DecidableEq (Message Φ cols)] [DecidableEq (Commitment Φ rows)] (isShort : Message Φ cols → Bool) (isShortSIS : ModuleSIS.Solution Φ cols → Bool) (hsub : ∀ s₁ s₂ : Message Φ cols, isShort s₁ = true → isShort s₂ = true → isShortSIS (s₁ - s₂) = true) (adv : BindingAdv (PublicParams Φ rows cols) (Message Φ cols) (Commitment Φ rows) Opening) : bindingAdvantage (commitmentScheme Φ rows cols isShort) adv ≤ ModuleSIS.advantage Φ rows cols isShortSIS (bindingAdvToModuleSIS Φ isShortSIS adv) := by unfold bindingAdvantage CommitmentScheme.bindingExp ModuleSIS.advantage SIS.advantage SIS.experiment ModuleSIS.problem bindingAdvToModuleSIS commitmentScheme ModuleSIS.relation simp only [bind_pure_comp, Functor.map_map] refine probOutput_bind_mono fun A _ => ?_ refine probOutput_bind_mono fun ⟨c, s₁, o₁, s₂, o₂⟩ _ => ?_ refine probOutput_pure_bool_le _ _ (fun hwin => ?_) simp only [Bool.and_eq_true, decide_eq_true_eq] at hwin ⊢ obtain ⟨⟨hne, hshort₁, hverify₁⟩, hshort₂, hverify₂⟩ := hwin have hc₁ : commit Φ A s₁ = c := (verify_eq_true_iff Φ A s₁ c o₁).1 hverify₁ have hc₂ : commit Φ A s₂ = c := (verify_eq_true_iff Φ A s₂ c o₂).1 hverify₂ have hmat : A *ᵥ s₁ = A *ᵥ s₂ := by simpa [commit] using hc₁.trans hc₂.symm refine ⟨⟨sub_ne_zero.mpr hne, hsub s₁ s₂ hshort₁ hshort₂⟩, ?_⟩ rw [matVecMul_sub, hmat, sub_self]- Project
- ArkLib
- License
- Apache-2.0
- Commit
- fad5cbf80877
- Source
- ArkLib/Commitments/Ordinary/Ajtai/Simple/Security.lean:49-71
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
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...
Source project: ArkLib
Person-level attribution pending.
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.
Source project: ArkLib
Person-level attribution pending.
Gadget Decompose lawful
ArkLib.Lattices.Ajtai.gadgetDecompose_lawful
Plain-language statement
The base-b gadget decomposition is a lawful gadget decomposition.
Source project: ArkLib
Person-level attribution pending.