Quasilocal observables #
This file formalises the blueprint declaration
def:quasilocal-observable and develops the elementary API of the
quasilocal observables of a representation.
Main definitions #
Physicslib4.AQFT.HaagKastler.IsQuasilocalObservable: aProp-valued predicate (blueprintdef:quasilocal-observable) saying a bounded operator on the GNS Hilbert space is the imageπ aof a self-adjoint elementaof the quasilocal algebra under a GNS*-representationπ.Physicslib4.AQFT.HaagKastler.quasilocalObservables: the set of those operators, shown to be exactly the self-adjoint elements in the range ofπ.
Note on the file name, and on Axiom 4 #
This file no longer defines a QuasilocalCompleteness predicate, and
despite its name it does not formalise Axiom 4. The predicate that
used to live here was Nonempty (QuasilocalAlgebra U i) — a
mathematical existence claim about the net wearing Axiom 4's name.
That claim is now a theorem, exists_quasilocalAlgebra
(thrm:quasilocal-algebra-exists), proved by building the quasilocal
algebra from the net alone, so a hypothesis asserting it would be
vacuous and is gone.
Axiom 4 proper (def:quasilocal-completeness) is a bridge principle
relating physical observables to the formalism. It is encoded in
Physicslib4/AQFT/HaagKastler/ObservableBridge.lean and has no
mathematical consumers, which is why nothing here depends on it.
Quasilocal Observable (blueprint label def:quasilocal-observable).
Fix a quasilocal algebra Q for a local net U and a GNS
*-representation π : Q.carrier →⋆ₐ[ℂ] (H →L[ℂ] H) of the
quasilocal algebra 𝔘 = Q.carrier on a complex Hilbert space H
(in practice obtained from Physicslib4.GNS.gns_construction
applied to a state ω on Q.carrier). A bounded operator
T : H →L[ℂ] H is a quasilocal observable if it is the image
T = π a of some self-adjoint element a of the quasilocal
algebra.
By IsQuasilocalObservable.isSelfAdjoint, every quasilocal
observable is self-adjoint, matching the blueprint's "the image
π_ω(a) of a self-adjoint member a of the quasilocal algebra
𝔘 ... is self-adjoint and thus corresponds to an observable".
Blueprint reference: def:quasilocal-observable.
Equations
- Physicslib4.AQFT.HaagKastler.IsQuasilocalObservable Q π T = ∃ (a : Q.carrier), IsSelfAdjoint a ∧ T = π a
Instances For
Every quasilocal observable is self-adjoint: it is the image of a
self-adjoint element of the quasilocal algebra under a *-homomorphism.
This is the self-adjointness clause of def:quasilocal-observable.
For any state ω on the quasilocal algebra and any self-adjoint
element a of it, the GNS construction provides a *-representation
in which π a is a quasilocal observable (and is self-adjoint). This is
the existence content of def:quasilocal-observable, tying together
thrm:gns-construction-theorem and def:state.
The identity operator on the GNS Hilbert space is a quasilocal observable:
it is the image π 1 of the (self-adjoint) unit of the quasilocal algebra.
Quasilocal observables are closed under addition: the sum of the images of two self-adjoint elements is the image of their (self-adjoint) sum.
Quasilocal observables are closed under scaling by a self-adjoint complex
scalar (equivalently, a real scalar): self-adjointness of c • a requires
star c = c.
Real-linear combinations of quasilocal observables are quasilocal
observables. The scalars are taken self-adjoint in ℂ, i.e. real, which is
exactly the condition under which the combination stays self-adjoint.
Characterisation of quasilocal observables. An operator T on the GNS
Hilbert space is a quasilocal observable precisely when it is self-adjoint and
lies in the range of the representation π. The forward direction is
IsQuasilocalObservable.isSelfAdjoint; the converse holds even when π is not
injective, by replacing a preimage b with its self-adjoint part
2⁻¹ • (b + star b), which π still sends to T.
The set of quasilocal observables on the GNS Hilbert space H for the
representation π: all bounded operators of the form π a with a a
self-adjoint element of the quasilocal algebra.
Equations
Instances For
The quasilocal observables are exactly the self-adjoint elements lying in
the range of the representation π.
The identity operator is a quasilocal observable.
The quasilocal observables are closed under addition.
The quasilocal observables are closed under scaling by a self-adjoint (i.e. real) complex scalar.