All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Resolvent sub

LinearPMap.resolvent_sub

Project documentation

The continuous spectrum, σᶜ, of a partial linear map. A complex number z is in σᶜ T iff the range of T - z • 1 is not closed. -/ def continuousSpectrum (T : H →ₗ.[ℂ] H) : Set ℂ := {z : ℂ | ¬root.IsClosed ((T - z • 1).toFun.range : Set H)} @[inherit_doc continuousSpectrum] scoped notation "σᶜ" => continuousSpectrum lemma continuousSpectrum_eq (T...

Exact Lean statement

lemma resolvent_sub
    {T₁ T₂ : H →ₗ.[ℂ] H} (hT : T₂.domain ≤ T₁.domain) {z : ℂ} (hz₁ : z ∈ ρ T₁) (hz₂ : z ∈ ρ T₂) :
    𝑅 T₁ z - 𝑅 T₂ z = 𝑅 T₁ z * (T₂ - T₁) * 𝑅 T₂ z

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma resolvent_sub    {T₁ T₂ : H ₗ.[ℂ] H} (hT : T₂.domain  T₁.domain) {z : ℂ} (hz₁ : z  ρ T₁) (hz₂ : z  ρ T₂) :    𝑅 T₁ z - 𝑅 T₂ z = 𝑅 T₁ z * (T₂ - T₁) * 𝑅 T₂ z := by  symm  calc    _ = 𝑅 T₁ z ∘ᵣ ((T₂ - z • 1 - (T₁ - z • 1)) ∘ᵣ 𝑅 T₂ z) := by      rw [mul_assoc]      congr 2      exact (eq_of_le_of_domain_eq (sub_sub_sub_le_cancel_right _ _ _) (by simp [sub_domain])).symm    _ = 𝑅 T₁ z ∘ᵣ ((T₂ - z • 1) ∘ᵣ 𝑅 T₂ z - (T₁ - z • 1) ∘ᵣ 𝑅 T₂ z) := by      congr      exact sub_compRestricted _ _ _    _ = 𝑅 T₁ z ∘ᵣ (1 - (T₁ - z • 1) ∘ᵣ 𝑅 T₂ z) := by      congr      rw [compRestricted_inverse_eq hz₂.1, inverse_domain, hz₂.2.1]      simp [eq_of_le_of_domain_eq domRestrict_le]    _ = 𝑅 T₁ z - 𝑅 T₁ z ∘ᵣ ((T₁ - z • 1) ∘ᵣ 𝑅 T₂ z) := by      nth_rw 2 [ mul_one (𝑅 T₁ z)]      refine (eq_of_le_of_domain_eq (compRestricted_sub_ge _ _ _) ?_).symm      simp [sub_domain, compRestricted_domain, inverse_domain, hz₁.2]    _ = 𝑅 T₁ z - (domRestrict 1 T₁.domain) ∘ᵣ 𝑅 T₂ z := by      simp [ compRestricted_assoc, inverse_compRestricted_eq hz₁.1, sub_domain]    _ = 𝑅 T₁ z - 𝑅 T₂ z := by      ext x      · suffices 𝑅 T₂ z x, by simp [inverse_domain, hz₂.2]  T₁.domain by          simp [sub_domain, mem_compRestricted_domain_iff, inverse_domain, hz₁.2, hz₂.2, this]        have hR₂ : (𝑅 T₂ z).toFun.range = T₂.domain := by simp [inverse_range hz₂.1, sub_domain]        exact hT (hR₂ ▸ mem_range_self _)      · rfl
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/QuantumMechanics/Operators/SpectralTheory/Basic.lean:820-848

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

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.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

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.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record