Imports
/-
Copyright (c) 2025 Joseph Tooby-Smith. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Authors: Joseph Tooby-Smith
-/
module
public import Physlib.QuantumMechanics.HilbertSpaces.OneDimension.BasicUnbounded operators
Note
It is likely one day the material in this file will be moved to or appear in another form within Mathlib.
@[expose] public section
An unbounded operator on the one-dimensional Hilbert space,
corresponds to a subobject ι : S →L[ℂ] HilbertSpace of the Hilbert
space along with the operator op : S →L[ℂ] HilbertSpace
@[nolint unusedArguments]
def UnboundedOperator {S : Type} [AddCommGroup S] [Module ℂ S]
[TopologicalSpace S] (ι : S →L[ℂ] HilbertSpace)
(_ : Function.Injective ι) := S →L[ℂ] HilbertSpaceinstance : CoeFun (UnboundedOperator ι hι) (fun _ => S → HilbertSpace) where
coe := fun U => U.toFun
An unbounded operator created from a continuous linear map S →L[ℂ] S.
def ofSelfCLM (Op : S →L[ℂ] S) : UnboundedOperator ι hι := ι ∘L Op@[simp]
lemma ofSelfCLM_apply (Op : S →L[ℂ] S) (ψ : S) :
ofSelfCLM (hι := hι) Op ψ = ι (Op ψ) := rfl
A map F : S →L[ℂ] ℂ is a generalized eigenvector of an unbounded operator U
on S if there is an eigenvalue c such that for all ψ, F (U ψ) = c ⬝ F ψ
def IsGeneralizedEigenvector (F : S →L[ℂ] ℂ) (c : ℂ) : Prop :=
∀ ψ : S, ∃ ψ' : S, ι ψ' = U ψ ∧ F ψ' = c • F ψlemma isGeneralizedEigenvector_ofSelfCLM_iff {Op : S →L[ℂ] S}
(F : S →L[ℂ] ℂ) (c : ℂ) :
IsGeneralizedEigenvector (ofSelfCLM (hι := hι) Op) F c ↔
∀ ψ : S, F (Op ψ) = c • F ψ := S:Typeinst✝²:AddCommGroup Sinst✝¹:Module ℂ Sinst✝:TopologicalSpace Sι:S →L[ℂ] ↥HilbertSpacehι:Function.Injective ⇑ιOp:S →L[ℂ] SF:S →L[ℂ] ℂc:ℂ⊢ (ofSelfCLM Op).IsGeneralizedEigenvector F c ↔ ∀ (ψ : S), F (Op ψ) = c • F ψ
All goals completed! 🐙
The condition for an unbounded operator to be symmetric (equivalently, formally
self-adjoint): ⟪U ψ1, ι ψ2⟫ = ⟪ι ψ1, U ψ2⟫ for all ψ1 ψ2. This is the Hermitian
pairing on the underlying space S; on its own it does not imply genuine
self-adjointness (A† = A, including equality of domains), which for an unbounded
operator on a proper dense core is strictly stronger.
def IsSymmetric : Prop :=
∀ ψ1 ψ2 : S, ⟪U ψ1, ι ψ2⟫_ℂ = ⟪ι ψ1, U ψ2⟫_ℂ