Documentation

Physicslib4.Spacetime.LorentzianSpacetime

Lorentzian spacetime #

This file formalises the blueprint declaration def:lorentzian-spacetime (Chapter 10, sections/sec10/10-2_spacetime, of the AQFT-in-Lean blueprint; the notion is also discussed expositorily in the Chapter 9 prologue):

A Lorentzian spacetime is a smooth, connected, four-dimensional manifold equipped with a smooth, nowhere-vanishing global vector field tᵃ and associated Lorentzian metric. In addition it is equipped with an associated Hausdorff Alexandrov topology.

Main definitions #

Modelling notes #

The three ingredients of the blueprint definition are already available individually in this development, so the bundle simply records them together:

By the blueprint's "Properties of the Alexandrov Topology" theorem the Hausdorff-Alexandrov assumption is equivalent to strong causality and to the agreement of the Alexandrov and manifold topologies; we take the Hausdorff form as the primitive assumption, exactly as the Chapter 9 prologue does.

This bundle is the concrete object intended to instantiate the abstract Physicslib4.AQFT.HaagKastlerCurved.LorentzianSpacetime interface over which Axioms 1-5 are stated. The remaining ingredient for that bridge is the identity-component isometry group of the spacetime (used by Axiom 5), which is developed separately.

Lorentzian spacetime (blueprint def:lorentzian-spacetime).

A smooth, connected, four-dimensional Hausdorff manifold with a smooth non-degenerate symmetric Lorentzian metric (toSpacetime), equipped with a smooth nowhere-vanishing global timelike vector field (timeOrientation) and an associated Hausdorff Alexandrov topology (alexandrov_t2).

This is the geometric bundle; LorentzianSpacetime.toAbstract exposes it as the axiom-facing interface Physicslib4.AQFT.HaagKastlerCurved.LorentzianSpacetime over which the curved Haag-Kastler axioms are stated.

Blueprint reference: def:lorentzian-spacetime.

  • toSpacetime : Spacetime

    The underlying spacetime: a 4D connected smooth Hausdorff manifold with a smooth non-degenerate symmetric Lorentzian metric (def:spacetime).

  • timeOrientation : self.toSpacetime.TimeOrientation

    The smooth, nowhere-vanishing, everywhere-timelike global vector field tᵃ orienting time.

  • alexandrov_t2 : T2Space self.toSpacetime.Carrier

    The associated Alexandrov topology (generated by the diamonds I⁺(p) ∩ I⁻(q)) is Hausdorff. By the Alexandrov-topology theorem this is equivalent to strong causality and to the Alexandrov topology agreeing with the manifold topology.

Instances For
    @[reducible, inline]

    The points of the Lorentzian spacetime.

    Equations
    Instances For

      The Alexandrov-basis sets I⁺(p) ∩ I⁻(q) of the Lorentzian spacetime, as a predicate on subsets of the carrier.

      Equations
      Instances For

        Complete spacelike separation of two regions, with respect to the spacetime's time orientation (used by Axiom 3).

        Equations
        Instances For

          The Alexandrov topology of the Lorentzian spacetime is Hausdorff, re-exposed from the structure field as a T2Space instance on the carrier with the Alexandrov topology.

          Complete spacelike separation of two regions is symmetric.

          theorem Physicslib4.Spacetime.LorentzianSpacetime.isCompletelySpacelike_mono (M : LorentzianSpacetime) {O₁ O₁' O₂ O₂' : Set M.Carrier} (h₁ : O₁'O₁) (h₂ : O₂'O₂) (h : M.IsCompletelySpacelike O₁ O₂) :
          M.IsCompletelySpacelike O₁' O₂'

          Complete spacelike separation is monotone under shrinking either region.

          A union of regions is completely spacelike to O₂ iff each part is.

          O₁ is completely spacelike to a union iff it is to each part.

          Every Alexandrov-basis set I⁺(p) ∩ I⁻(q) is open in the Alexandrov topology of the Lorentzian spacetime.

          The Alexandrov diamonds as a genuine topological basis #

          Covering from the Hausdorff assumption. On a Lorentzian spacetime with at least two points, the Alexandrov diamonds cover the whole space: every point lies in some diamond I⁺(p) ∩ I⁻(q). A point in no diamond would have univ as its only Alexandrov-open neighbourhood, contradicting Hausdorffness.

          The Alexandrov diamonds form a topological basis. On a Lorentzian spacetime with at least two points, if the diamonds are downward-directed (the intersection property), they form a genuine IsTopologicalBasis for the Alexandrov topology. The covering condition is sUnion_alexandrovBasis_eq_univ; the generation condition is definitional.