LF3 Hamiltonian: tensor-factor readout algebra and measurement unitary #
Category: 3-Local (LF3 abstract structural interfaces for the impulsive-readout measurement model).
Paper §3 / §9.5. Abstract structural interfaces for the impulsive-readout measurement model:
TensorFactorReadoutAlgebracarrieshA,hBand their commutation as a field. The local Hamiltonians are self-adjoint continuous linear maps.MeasurementUnitarycarries aLinearIsometryEquivtriple(u, uA, uB)for the full and per-wing measurement unitaries (unitarity in the type), the factorisation law in pointwise form, and the eigenstate-action field encoding the impulsive-readout idealisation.
Per spec §9.5, the operator exponential is not constructed in v1.00; the unitaries enter as structural data.
Abstract tensor-factor readout algebra on H_SA. hA acts on the A
factor, hB on the B factor; commutation is recorded as a field per
spec §9.11.
Self-adjointness is stated via the inner-product equation directly,
matching the convention used in BinaryPointerProjectors (avoids the
Star typeclass synthesis on H_SA →L[ℂ] H_SA).
Local readout Hamiltonian on the A wing.
Local readout Hamiltonian on the B wing.
hAis self-adjoint with respect to the inner product.hBis self-adjoint with respect to the inner product.The two readout Hamiltonians commute.
Instances For
Sum of the two local readout Hamiltonians.
Equations
- CSD.LF3.hTotal R = R.hA + R.hB
Instances For
A measurement unitary, its single-wing factors, the factorisation law, and the action on joint spin/pointer eigenstates.
D4 / G6 disclosure. Per spec §9.5: u / uA / uB are not
derived from exp(-iHt) in v1.00. They are supplied as a
LinearIsometryEquiv triple (unitarity is part of the type) satisfying
the factorisation and eigenstate-action laws (paper §3.6–§3.7) as
structural fields rather than as theorems. Together with the abstract
ProjectorAlgebra (LF3/Projectors/Core.lean), this carries the
composite-tensor-structure debt D4 / G6 in Lean form.
v2 derivation status, partial discharge landed. The factorisation
field factorises : ∀ x, u x = uA (uB x) is now derivable via
MeasurementUnitary.ofUnitaryTensorEmbedding in
LF3/Projectors/TensorModel.lean. The constructor takes a
UnitaryTensorEmbedding K_A K_B H_SA (per-wing unitary lifts with
commuting images), per-wing unitaries vA, vB, the joint-eigenstate
/ pointer-translation data, and the action proof; it defines
u := (liftB_unitary vB).trans (liftA_unitary vA) and discharges
factorises by rfl. The eigenstate-action field action, encoding
the impulsive-readout idealisation, requires exp(-iHt) machinery
(operator exponential, Stone on bounded self-adjoint operators); spec
§9.5 explicitly carves this out of v1.00 and LF4 or later is the
natural home, gated on the operator-exponential pickup. The abstract
MeasurementUnitary structure remains available for callers without a
tensor model.
The full measurement unitary on
H_SA.The A-wing measurement unitary.
The B-wing measurement unitary.
Abstract joint spin / pointer eigenstate injection
|s_a, t_b⟩ ⊗ |φ_A⟩ ⊗ |φ_B⟩ ∈ H_SA.- ptrTransA : Sign → K_A → K_A
The A-wing pointer translation by the A-wing unitary, conditional on the spin label
s. - ptrTransB : Sign → K_B → K_B
The B-wing pointer translation by the B-wing unitary, conditional on the spin label
t. - action (s t : Sign) (φA : K_A) (φB : K_B) : self.u (self.jointEig (s, t) φA φB) = self.jointEig (s, t) (self.ptrTransA s φA) (self.ptrTransB t φB)
Action of
uon a joint spin / pointer eigenstate: the composite translates each pointer factor by its own wing's translation map and preserves spin labels (the per-wing actions are not individually constrained). Encodes the impulsive-readout idealisation (paper §3.2).
Instances For
The total readout Hamiltonian is self-adjoint (paper §3.4).
Factorisation of the measurement unitary (paper §3.6). Field re-export
of MeasurementUnitary.factorises, applied at a specific vector.
Action of the measurement unitary on a joint spin / pointer eigenstate
(paper §3.7). Field re-export of MeasurementUnitary.action.