SigmaLayer/PointerRotation: the fixed-outcome pointer rotation (brick 1) #
Category: dynamical measurement — the smooth-Hamiltonian witness route
(specs/pointer-witness-plan.md brick 1).
The generator for outcome j is the Hermitian plane-swap
hⱼ = |f₀⟩⟨f_{j+1}| + |f_{j+1}⟩⟨f₀| (pointerH, pointerH_isHermitian). Its rotation family
pointerRot θ j = 1 + (cos θ − 1)•Pⱼ − (i sin θ)•hⱼ, Pⱼ = |f₀⟩⟨f₀| + |f_{j+1}⟩⟨f_{j+1}|
is a continuous one-parameter unitary group — machine-checked as: the group law
(pointerRot_add), the identity at 0 (pointerRot_zero), unitarity
(pointerRot_mem_unitaryGroup, via the closed form (pointerRot θ)ᴴ = pointerRot (−θ)), and
continuity in θ, both into the unitary group (continuous_pointerRotU) and through the
projective action (continuous_pointerRotU_smul). At the quarter turn it transports the ready
vertex to the record vertex, projectively:
pointerRotU (π/2) j • readyState = recordState j (pointerRotU_pi_div_two_ready),
and every pointerRotU θ j preserves the pointer Fubini–Study measure
(pointerRotU_measurePreserving — FS unitary invariance, the same one-liner as
joinSwap_measurePreserving). This is the map the torus register provably could not give
as any continuous flow slice (shearEvolve_not_continuous): here record transport is a
continuous curve of unitaries, no seams, no flux.
⚠️ Honest scope. The identification pointerRot θ j = exp(−iθ hⱼ) — the generation
statement — is brick 5 of the plan, not this module; here the family is given in closed
trigonometric form and its group properties are proved directly (the closed form and the
exponential agree because both solve the same linear recursion, but that identification is
not formalised yet, and nothing below cites it). What brick 1 delivers is exactly: a
continuous one-parameter unitary group on the pointer, with Hermitian infinitesimal data
pointerH, transporting ready → record and preserving Liouville. The selector-modulated
coupling (bump-weighted sums of the pointerH j — which do not commute pairwise, since
all planes share f₀) is brick 2 and will need the exponential route, not this closed form.
References #
specs/pointer-witness-plan.md (bricks 1, 2, 5); specs/BACKLOG.md (the ★ L row);
specs/future-work.md. Reused corpus API: Matrix.single algebra (Mathlib),
smul_mk_eq_mk_toEuclideanLin + orbit_map_continuous
(Mathlib/LinearAlgebra/Projectivization/{TransitionProbability,FubiniStudy}.lean staging),
fubiniStudyMeasure_smul_invariant (ibid.), readyState/recordState
(SigmaLayer/PointerArena.lean).
The generator and its plane #
The plane projector Pⱼ = |f₀⟩⟨f₀| + |f_{j+1}⟩⟨f_{j+1}| onto the ready–record plane.
Equations
- CSD.RecordLayer.pointerPlane j = Matrix.single 0 0 1 + Matrix.single j.succ j.succ 1
Instances For
The Hermitian generator hⱼ = |f₀⟩⟨f_{j+1}| + |f_{j+1}⟩⟨f₀|: the plane swap between the
ready direction and the j-th record direction.
Equations
- CSD.RecordLayer.pointerH j = Matrix.single 0 j.succ 1 + Matrix.single j.succ 0 1
Instances For
The generator is Hermitian — the coupling the smooth witness rotates by is honest Hamiltonian data.
The rotation family #
The pointer rotation at angle θ in the ready–record plane of outcome j:
1 + (cos θ − 1)•Pⱼ − (i sin θ)•hⱼ — the closed form of exp(−iθ hⱼ) (the identification
itself is brick 5; nothing here consumes it).
Equations
- CSD.RecordLayer.pointerRot θ j = 1 + (↑(Real.cos θ) - 1) • CSD.RecordLayer.pointerPlane j + -(Complex.I * ↑(Real.sin θ)) • CSD.RecordLayer.pointerH j
Instances For
The generic product in the rotation plane's algebra: {1, Pⱼ, hⱼ} is closed under
multiplication, with the stated structure constants.
The rotation at angle 0 is the identity.
The group law: rotations in a fixed plane compose additively in the angle.
The conjugate transpose of a rotation is the reverse rotation.
Every pointer rotation is unitary.
The pointer rotation as a unitary-group element.
Equations
Instances For
The group law at the unitary-group level.
Continuity #
The rotation family is continuous in the angle — with the group law and unitarity,
pointerRotU · j is a continuous one-parameter unitary group.
Continuity through the projective action: for every pointer state q, the rotation orbit
θ ↦ Uⱼ(θ) • q is a continuous curve on ℂℙ^K.
Liouville preservation and record transport #
Every pointer rotation preserves the pointer Fubini–Study measure — Liouville preservation is FS unitary invariance, exactly as on the join arena.
The quarter turn transports ready to record: Uⱼ(π/2) • [f₀] = [f_{j+1}]
(projectively; the representative picks up the phase −i).