Axiom 4: Quasilocal Completeness #
This file formalises the blueprint declaration
def:quasilocal-completeness (Axiom 4 of the "sharpened"
Haag-Kastler axioms, section 10.3 of the AQFT-in-Lean blueprint):
All "observables" are quasilocal observables: the union of the images of all local algebras
๐(๐)is dense in (and thus completes to) the quasilocal algebra๐, which is the C*-algebra that "contains all observables of interest".
Main definitions #
Physicslib4.AQFT.HaagKastler.QuasilocalCompleteness: aProp-valued predicate on aLocalNetasserting Axiom 4.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ฯ.
Modelling notes #
Following the blueprint, the quasilocal algebra
๐is the C*-algebraic completion of the set-theoretic union of all๐(B). The bundledQuasilocalAlgebra Ustructure already packages exactly this data โ an ambient C*-algebra together with faithful unital*-monomorphisms whose images have dense union โ so Axiom 4 collapses to bare nonemptiness:Nonempty (QuasilocalAlgebra U).In particular, both the faithfulness of the embeddings and the density of the union of their images are part of the
QuasilocalAlgebrastructure itself; there is nothing further to assert at this level.This is closely related to (and refines) the existence statement used in
LocalCommutativity; the two predicates can in principle be witnessed by the same ambientQuasilocalAlgebra, but we keep them separate so each axiom can be stated and tested in isolation.
Axiom 4 (Quasilocal Completeness). A local net U satisfies
quasilocal completeness if it admits a quasilocal algebra,
i.e. Nonempty (QuasilocalAlgebra U).
Unfolding the QuasilocalAlgebra structure, this says there exists
a unital ambient C*-algebra Q.carrier โ the quasilocal algebra
๐ โ together with unital *-monomorphisms
Q.ฮน B : U.algebra B โโโ[โ] Q.carrier for every Alexandrov-basis
set B, each injective on Alexandrov-basis sets, and such that the
union โ B, Set.range (Q.ฮน B) is dense in Q.carrier.
This expresses the blueprint's "all observables are quasilocal
observables": every element of Q.carrier is the norm-limit of a
sequence of elements of โ_B ๐(B).
Blueprint reference: def:quasilocal-completeness.
Equations
Instances For
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.