All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Is Closed spectrum eq

LinearPMap.IsClosed.spectrum_eq

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 IsClosed.spectrum_eq [CompleteSpace H] {T : H →ₗ.[ℂ] H} (hT : T.IsClosed) :
    σ T = σᵖ T ∪ σʳ T ∪ σᶜ T

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma IsClosed.spectrum_eq [CompleteSpace H] {T : H ₗ.[ℂ] H} (hT : T.IsClosed) :    σ T = σᵖ T ∪ σʳ T ∪ σᶜ T := by  refine Subset.antisymm ?_ ?_  · intro z hσ    apply mem_spectrum_iff.mp at hσ    rcases eq_or_ne (T - z • 1).toFun.kerwith h_ker | h_ker    · by_cases h_cont : Continuous (𝑅 T z)      · left; right; exact h_ker, (hσ.neg_resolve_left h_ker).neg_resolve_right h_cont, h_cont      · right        rw [mem_continuousSpectrum_iff,  inverse_domain]        refine fun h  h_cont ?_        refine continuous_of_isClosed_domain ?_ h        apply (inverse_closed_iff h_ker).mpr        exact hT.sub_continuous (Continuous.const_smul (by fun_prop) _) le_top    · left; left; exact h_ker  · refine union_subset ?_ T.continuousSpectrum_subset_spectrum    exact union_subset T.pointSpectrum_subset_spectrum T.residualSpectrum_subset_spectrum
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/QuantumMechanics/Operators/SpectralTheory/Basic.lean:795-811

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