Skip to main content
YaelDillies/APAP
Source indexedlemma · leanprover/lean4:v4.32.0

BohrSet.mem_arcSet_iff_nnnorm_width

APAP.Prereqs.Bohr.Arc · APAP/Prereqs/Bohr/Arc.lean:21 to 35

Mathematical statement

Exact Lean statement

lemma mem_arcSet_iff_nnnorm_width :
    x ∈ B.arcSet ↔ ∀ ⦃ψ⦄, ψ ∈ B.frequencies → ‖angle (ψ x) 1‖₊ ≤ B.width ψ

Complete declaration

Lean source

Canonical source
Full Lean sourceLean 4
lemma mem_arcSet_iff_nnnorm_width :    x  B.arcSet   ⦃ψ⦄, ψ  B.frequencies  ‖angle (ψ x) 1‖₊  B.width ψ := by  refine forall_congr' fun ψ => ?_  constructor  case mpr =>    intro h    rcases eq_top_or_lt_top (B.ewidth ψ) with h₁ | h₁    case inl => simp [h₁]    case inr =>      have : ψ  B.frequencies := by simp [mem_frequencies, h₁]      specialize h this      rwa [ENNReal.coe_le_coe, coe_width this] at h  case mp =>    intro h₁ h₂    rwa [ENNReal.coe_le_coe, coe_width h₂]