Mem regularity Domain iff
LinearPMap.mem_regularityDomain_iff
Plain-language statement
z is a regular point for T iff T - z • 1 has a continuous (equivalently, bounded) inverse.
Exact Lean statement
lemma mem_regularityDomain_iff {T : H →ₗ.[ℂ] H} {z : ℂ} :
z ∈ T.regularityDomain ↔ (T - z • 1).toFun.ker = ⊥ ∧ Continuous (𝑅 T z)Formal artifact
Lean source
lemma mem_regularityDomain_iff {T : H →ₗ.[ℂ] H} {z : ℂ} : z ∈ T.regularityDomain ↔ (T - z • 1).toFun.ker = ⊥ ∧ Continuous (𝑅 T z) := by constructor · intro ⟨c, hc, h_bound⟩ have h_ker : (T - z • 1).toFun.ker = ⊥ := by ext x constructor <;> intro · have : c * ‖x‖ ≤ 0 → ‖x‖ ≤ 0 := fun h' ↦ nonpos_of_mul_nonpos_right h' hc specialize h_bound ⟨x, x.2.1⟩ simp_all [sub_apply] · simp_all use h_ker apply LinearMap.continuous_iff_bounded.mpr refine ⟨c⁻¹, inv_pos.mpr hc, fun ⟨x, hx⟩ ↦ ?_⟩ rw [inverse_domain] at hx obtain ⟨y, hy⟩ := hx specialize h_bound ⟨y, y.2.1⟩ simp_all [le_inv_mul_iff₀, sub_apply, inverse_apply_eq h_ker (y := ⟨x, hx⟩) hy] · intro ⟨h_ker, h_cont⟩ obtain ⟨c, hc, h_bound⟩ := LinearMap.continuous_iff_bounded.mp h_cont refine ⟨c⁻¹, inv_pos.mpr hc, fun x ↦ ?_⟩ apply (inv_mul_le_iff₀ hc).mpr have hx : ↑x ∈ (T - z • 1).domain := by simp [sub_domain] specialize h_bound ⟨(T - z • 1) ⟨x, hx⟩, by simp [inverse_domain]⟩ simp only [toFun_eq_coe, inverse_apply_eq h_ker (x := ⟨x, hx⟩), coe_norm] at h_bound simp_all [sub_apply]- Project
- Physlib
- License
- Apache-2.0
- Commit
- dd43e9e65791
- Source
- Physlib/QuantumMechanics/Operators/SpectralTheory/Basic.lean:185-210
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
Adiabatic relation log
adiabatic_relation_log
Plain-language statement
Adiabatic relation in logarithmic form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then c * log (Ua/Ub) + log (Va/Vb) = 0.
Source project: Physlib
Person-level attribution pending.
Adiabatic relation Ua Ub Va Vb
adiabatic_relation_UaUbVaVb
Plain-language statement
Adiabatic relation in product form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then (Ua/Ub)^c * (Va/Vb) = 1.
Source project: Physlib
Person-level attribution pending.
Deriv Within mean Energy Beta eq neg variance
CanonicalEnsemble.derivWithin_meanEnergy_Beta_eq_neg_variance
Plain-language statement
(∂U/∂β) = -Var(E) for finite systems.
Source project: Physlib
Person-level attribution pending.