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

Unbounded 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[] HilbertSpace
instance : CoeFun (UnboundedOperator ι ) (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 ι := ι ∘L Op
@[simp] lemma ofSelfCLM_apply (Op : S →L[] S) (ψ : S) : ofSelfCLM ( := ) 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 ( := ) Op) F c ψ : S, F (Op ψ) = c F ψ := S:Typeinst✝²:AddCommGroup Sinst✝¹:Module Sinst✝:TopologicalSpace Sι:S →L[] HilbertSpace: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⟫_