Documentation

Physicslib4.AQFT.HaagKastler.LorentzCovariance

Axiom 5: Lorentz Covariance #

This file formalises the blueprint declaration def:lorentz-covariance (Axiom 5 of the "sharpened" Haag-Kastler axioms, section 10.3 of the AQFT-in-Lean blueprint):

The inhomogeneous Lorentz group 𝓛 (more precisely, its identity component; see section 7.1 of the blueprint) acts on the assignment B ↦ π”˜(B). For every L ∈ 𝓛, there is a *-isomorphism Ξ±L B : π”˜(B) ≃⋆ₐ[β„‚] π”˜(LΒ·B) such that the action commutes with isotony, in the sense that for every inclusion B₁ βŠ† Bβ‚‚ of basis sets the obvious diagram of inclusion arrows and Ξ±L-arrows commutes.

Main definitions #

Modelling notes #

The identity component of the inhomogeneous Lorentz group acting on Minkowski spacetime, as the set of pairs (L, t) where L is an ℝ-linear automorphism of the spacetime carrier lying in SO(1,3)↑ (Lorentz, proper, orthochronous) and t is a translation vector. The group law is composition of the affine maps x ↦ L x + t.

Instances For
    @[implicit_reducible]

    Group structure on the inhomogeneous Lorentz group: the product (L₁, t₁) * (Lβ‚‚, tβ‚‚) = (L₁ ∘ Lβ‚‚, t₁ + L₁ tβ‚‚) is the composition of the affine maps x ↦ Lα΅’ x + tα΅’.

    Equations
    • One or more equations did not get rendered due to their size.

    Topological group structure #

    The inhomogeneous Lorentz group is topologized as a subspace of the operator-norm space (Carrier β†’L Carrier)Β² Γ— Carrier, recording each element as its linear part, the inverse of its linear part, and its translation. Carrying the inverse linear part as a separate coordinate makes group inversion a continuous coordinate operation (a swap plus an application), so no continuity of operator inversion is needed.

    The faithful coordinate embedding used to topologize the inhomogeneous Lorentz group: g ↦ (g.linear, g.linear⁻¹, g.translation) inside the operator-norm space.

    Equations
    Instances For

      The embedding decomposes multiplication: the linear part composes, the inverse linear part composes in reverse, and the translation is the affine combination.

      The embedding decomposes inversion: swap the two linear coordinates and negate the back-transported translation.

      @[implicit_reducible]

      The MulAction of the inhomogeneous Lorentz group on the Minkowski spacetime carrier: (L, t) β€’ x = L x + t.

      Equations
      • One or more equations did not get rendered due to their size.

      The translation part of the action cancels on differences: the displacement between two points is transformed by the linear part alone.

      The inhomogeneous Lorentz group acts by isometries of the Minkowski form. Since the translation part cancels on differences and the linear part is Lorentz, the Minkowski inner product of displacements is preserved.

      The Minkowski interval between two events is invariant under the inhomogeneous Lorentz group: β€–g β€’ x - g β€’ yβ€–Β²_M = β€–x - yβ€–Β²_M. This is the diagonal case of minkowskiForm_smul_sub_smul.

      The action preserves timelike separation: g β€’ x and g β€’ y are timelike-separated (negative Minkowski interval) iff x and y are.

      The action preserves spacelike separation: g β€’ x and g β€’ y are spacelike-separated (positive Minkowski interval) iff x and y are.

      The action preserves null separation: g β€’ x and g β€’ y are null-separated (zero Minkowski interval) iff x and y are.

      Axiom 5 (Lorentz Covariance). A local net U is Lorentz covariant if the inhomogeneous Lorentz group acts on the assignment B ↦ U.algebra B and the action

      (1) sends the identity element of the Lorentz group to the identity automorphism, (2) is multiplicative in the group element, i.e. α (L' · L) = α L' ∘ α L, and (3) commutes with isotony.

      Concretely, there exist:

      • for every group element L : InhomogeneousLorentzGroup and every Alexandrov-basis set B, a *-algebra equivalence Ξ± L B : U.algebra B ≃⋆ₐ[β„‚] U.algebra (L β€’ B);
      • for every inclusion B₁ βŠ† Bβ‚‚ of basis sets, a choice of isotony-witness unital *-monomorphism ΞΉ B₁ Bβ‚‚ : U.algebra B₁ →⋆ₐ[β„‚] U.algebra Bβ‚‚;

      such that

      (1) [identity] for every basis set B and every a : U.algebra B, Ξ± 1 B a = a (modulo the canonical identification U.algebra (1 β€’ B) = U.algebra B coming from one_smul);

      (2) [composition] for every pair L, L' : InhomogeneousLorentzGroup, every basis set B and every a : U.algebra B, Ξ± (L' * L) B a = Ξ± L' (L β€’ B) (Ξ± L B a) (modulo the canonical identification U.algebra ((L' * L) β€’ B) = U.algebra (L' β€’ (L β€’ B)) coming from mul_smul); and

      (3) [isotony] for every L, every inclusion B₁ βŠ† Bβ‚‚, and every element a : U.algebra B₁, the action of L commutes with the isotony inclusion: Ξ± L Bβ‚‚ (ΞΉ B₁ Bβ‚‚ a) = ΞΉ' (L β€’ B₁) (L β€’ Bβ‚‚) (Ξ± L B₁ a), where ΞΉ' is the isotony-witness arrow for L β€’ B₁ βŠ† L β€’ Bβ‚‚ (which holds because L β€’ _ preserves set inclusions).

      The cross-fiber identifications in conditions (1) and (2) are implemented as Eq.mpr of the obvious congruence U.algebra _ = U.algebra _ produced from one_smul/mul_smul.

      Blueprint reference: def:lorentz-covariance.

      Equations
      • One or more equations did not get rendered due to their size.
      Instances For