Plain-language statement
Lower bounding an exp in terms of an event
Exact Lean statement
lemma le_exp_of_cut {f : Prob α} {u : α → ℝ} (i : α → Prop) (a b : ℝ) (fi : a ≤ f.pr i)
(iu : ∀ x, f.prob x ≠ 0 → i x → b ≤ u x) (u0 : ∀ x, f.prob x ≠ 0 → ¬i x → 0 ≤ u x)
(b0 : 0 ≤ b) : a * b ≤ f.exp uFormal artifact
Lean source
lemma le_exp_of_cut {f : Prob α} {u : α → ℝ} (i : α → Prop) (a b : ℝ) (fi : a ≤ f.pr i) (iu : ∀ x, f.prob x ≠ 0 → i x → b ≤ u x) (u0 : ∀ x, f.prob x ≠ 0 → ¬i x → 0 ≤ u x) (b0 : 0 ≤ b) : a * b ≤ f.exp u := by have h : ∀ x, f.prob x ≠ 0 → b * (if i x then 1 else 0) ≤ u x := by intro x fx; by_cases ix : i x · simp only [ix, if_true, mul_one]; exact iu x fx ix · simp only [ix, if_false, pr_nonneg, mul_zero]; exact u0 x fx ix refine le_trans ?_ (exp_mono h) rw [exp_const_mul, ←pr, mul_comm] exact mul_le_mul_of_nonneg_left fi b0- Project
- debate
- License
- Apache-2.0
- Commit
- de3a6e500ae1
- Source
- Prob/Arith.lean:235-244
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
Alice pr le
alice_pr_le
Plain-language statement
Honest Alice has error ≥ e with probability ≤ q
Source project: debate
Person-level attribution pending.
Alice steps cost
alice_steps_cost
Plain-language statement
Alice makes few queries, regardless of Bob and Vera
Source project: debate
Person-level attribution pending.
Alices close
alices_close
Plain-language statement
Alice produces (p,y) with p close to o.probs y with good probability
Source project: debate
Person-level attribution pending.