All proofs
Project-declaredLean 4.8.0 · mathlib@b5eba5954288

Evil alices lies

evil_alices_lies

Plain-language statement

Evil Alice produces a close true trace with low probability, since by remaining close she looks like a close oracle.

Exact Lean statement

lemma evil_alices_lies (o : Oracle) (L : o.lipschitz t k) (eve : Alice) (e0 : 0 < e) :
    (alices o eve (t+1)).pr (λ (p,y) ↦ close p (o.probs y) e ∧ y.head) ≤
      (o.final t).prob true + k * e

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma evil_alices_lies (o : Oracle) (L : o.lipschitz t k) (eve : Alice) (e0 : 0 < e) :    (alices o eve (t+1)).pr (λ (p,y)  close p (o.probs y) e  y.head)       (o.final t).prob true + k * e := by  trans (snaps o eve e (t+1)).pr (λ (p,y)  close p (o.probs y) e  y.head)  · apply le_of_eq; apply exp_congr'; intro (p,y); by_cases c : close p (o.probs y) e    · simp only [c, true_and, snaps_prob _ c]    · simp only [c, false_and, if_false, mul_zero]  · trans ((snap o eve e).final t).prob true    · simp only [snaps_eq_snap_final, prob_map]      apply pr_mono; intro (p,y) _; simp only [final, and_imp, imp_self, implies_true]    · have lip := (abs_le.mp (L.le (snap o eve e))).1      rw [le_sub_iff_add_le, add_comm, sub_eq_add_neg, sub_le_iff_le_add] at lip      exact le_trans lip (add_le_add_left (mul_le_mul_of_nonneg_left (snap_dist _ e0) L.k0) _)
Project
debate
License
Apache-2.0
Commit
de3a6e500ae1
Source
Debate/Details.lean:425-437

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.8.0

Alice pr le

alice_pr_le

Plain-language statement

Honest Alice has error ≥ e with probability ≤ q

probabilitycomplexity theoryinteractive protocols

Source project: debate

Person-level attribution pending.

View proof record
Project-declaredLean 4.8.0

Alice steps cost

alice_steps_cost

Plain-language statement

Alice makes few queries, regardless of Bob and Vera

probabilitycomplexity theoryinteractive protocols

Source project: debate

Person-level attribution pending.

View proof record
Project-declaredLean 4.8.0

Alices close

alices_close

Plain-language statement

Alice produces (p,y) with p close to o.probs y with good probability

probabilitycomplexity theoryinteractive protocols

Source project: debate

Person-level attribution pending.

View proof record