Unbounded operators #
i. Overview #
In this module we define unbounded operators on a Hilbert space.
ii. Key results #
UnboundedOperator: Densely defined, closable unbounded operators on a Hilbert space.IsGeneralizedEigenvector: The notion of eigenvector/value for linear functionals.
iii. Table of contents #
- A. Definition
- B. Partial order
- C. Closure
- D. Adjoint
- E. Symmetric operators
- F. Self-adjoint operators
- G. Generalized eigenvectors
iv. References #
- M. Reed & B. Simon, (1972). "Methods of modern mathematical physics: Vol. 1. Functional analysis". Academic Press. https://doi.org/10.1016/B978-0-12-585001-8.X5001-6
- K. Schmüdgen, (2012). "Unbounded self-adjoint operators on Hilbert space" (Vol. 265). Springer. https://doi.org/10.1007/978-94-007-4753-1
A. Definition #
An UnboundedOperator is a linear map from a submodule of H to H',
assumed to be both densely defined and closable.
The domain of an unbounded operator is dense in
H.- is_closable : self.IsClosable
An unbounded operator is closable.
Instances For
Equations
- QuantumMechanics.UnboundedOperator.instCoeFunForallSubtypeMemSubmoduleComplexDomain = { coe := fun (U : QuantumMechanics.UnboundedOperator H H') => ↑U.toLinearPMap }
B. Partial order #
Unbounded operators inherit the structure of a poset from LinearPMap,
but not that of a SemilatticeInf because U₁.domain ⊓ U₂.domain may not be dense.
Equations
- One or more equations did not get rendered due to their size.
C. Closure #
The closure of an unbounded operator.
Instances For
An unbounded operator is closed iff the graph of its defining LinearPMap is closed.
Instances For
D. Adjoint #
The adjoint of a densely defined, closable LinearPMap is densely defined.
The adjoint of an unbounded operator, denoted as U†.
Instances For
The adjoint of an unbounded operator, denoted as U†.
Equations
- QuantumMechanics.UnboundedOperator.«term_†» = Lean.ParserDescr.trailingNode `QuantumMechanics.UnboundedOperator.«term_†» 1024 1024 (Lean.ParserDescr.symbol "†")
Instances For
E. Symmetric operators #
An UnboundedOperator constructed from a symmetric linear map on a dense submodule E.
Equations
Instances For
F. Self-adjoint operators #
G. Generalized eigenvectors #
A map F : D(U) →L[ℂ] ℂ is a generalized eigenvector of an unbounded operator U
if there is an eigenvalue c such that for all ψ ∈ D(U), F (U ψ) = c ⬝ F ψ.
Equations
- T.IsGeneralizedEigenvector F c = ∀ (ψ : ↥T.domain), ∃ (ψ' : ↥T.domain), ↑ψ' = ↑T.toLinearPMap ψ ∧ F ψ' = c • F ψ