LF4 §14.2 multi-region spectral carving (N-arc partition of the fibre) #
Category: 3-Local (LF4 §14.2 ontic-side multi-region carving — the
infrastructure to lift the Hilbert-side spectral expansion
⟨ψ, A ψ⟩ = ∑ᵢ λᵢ · ‖⟨uᵢ, ψ⟩‖² (proved in SpectralExpansion.lean) to a
full ontic ↔ Hilbert observable correspondence for any Hermitian
observable of any finite dimension).
The existing fibreArc ℓ = (0, ℓ] primitive (SingletKahler.lean) is
anchored at zero: distinct fibreArc w₁, fibreArc w₂ are nested,
not disjoint. The existing Hardy four-region setup is "disjoint" only
because three of its four arcs are vacuous (zero-length). For a genuine
N-arc partition with weights summing to one we need a shifted primitive,
plus cumulative-sum index arithmetic.
Module contents #
Phase A —
fibreShiftedArc c ℓ := (0,1]⁻¹ preimage of (c, c+ℓ]. Measurability, volume= ENNReal.ofReal ℓwhen[c, c+ℓ] ⊆ [0,1], and pairwise disjointness when the underlying ℝ-intervals are disjoint.Phase B — cumulative-sum prefixes
cumWeights w : Fin (N+1) → ℝwithcumWeights w 0 = 0, `cumWeights w i.succ = cumWeights w i.castSucc- w i
, monotone for nonnegativew, and the boundcumWeights w i.castSucc + w i ≤ ∑ w. Built on aℕ-recursivecumWeightsAux` for a clean inductive structure.
- w i
Phase C — N-region spectral carving on the existing Kähler instance
KSigma M:spectralRegion w i := univ ×ˢ (fibreShiftedArc (cumWeights w i.castSucc) (w i) ×ˢ univ). Measurability, the carving identity(Dirac p₀ ⊗ vol_T²) (spectralRegion w i) = ENNReal.ofReal (w i)(forwnonnegative with∑ w ≤ 1), and pairwise disjointness.
Tier-2 posture (unchanged) #
The fibre arcs are carved to the Born values by construction
(the shifted-arc length equals the prescribed weight). What's new is
that the resulting N-arc partition is genuinely disjoint, and the
per-region carving identity composes through Finset.sum to give an
ontic spectral observable whose integral against the preparation
measure equals the Hilbert expectation value.
Axiom posture #
Foundational triple only.
Phase A — shifted fibre arc primitive #
The shifted fibre arc (c, c+ℓ] on AddCircle 1, the preimage of the
ℝ-interval Ioc c (c+ℓ) under the chart equivIoc 1 0 : AddCircle 1 ≃ Ioc 0 1. Concretely a subset of the unit circle of arc length ℓ shifted
to start at parameter c.
Equations
- CSD.LF4.fibreShiftedArc c ℓ = ⇑(AddCircle.equivIoc 1 0) ⁻¹' Subtype.val ⁻¹' Set.Ioc c (c + ℓ)
Instances For
The shifted fibre arc has Haar volume ℓ when [c, c+ℓ] ⊆ [0, 1].
Two shifted arcs whose ℝ-intervals satisfy c₁ + ℓ₁ ≤ c₂ are
disjoint as subsets of AddCircle 1.
Phase B — cumulative weights (Finset.filter form) #
Cumulative-sum prefixes of a weight vector w : Fin N → ℝ,
indexed by Fin (N+1). cumWeights w k = ∑_{j.val < k.val} w j.
The Finset.filter form gives clean direct proofs of the key lemmas
(succ-castSucc step, monotonicity, last-index sum) via
Finset.sum_insert / Finset.sum_le_sum_of_subset_of_nonneg.
Equations
- CSD.LF4.cumWeights w k = ∑ j : Fin N with ↑j < ↑k, w j
Instances For
Phase C — N-region spectral carving on KSigma M #
Multi-region fibre carving: the i-th spectral region on KSigma M,
indexed by Fin N, with weights w : Fin N → ℝ. The fibre arc spans
(cumWeights w i.castSucc, cumWeights w i.succ] (length w i by
cumWeights_succ_castSucc). Independent of the base preparation.
Equations
- CSD.LF4.spectralRegion w i = Set.univ ×ˢ CSD.LF4.fibreShiftedArc (CSD.LF4.cumWeights w i.castSucc) (w i) ×ˢ Set.univ
Instances For
The N-arc spectral carving identity on any Dirac-on-base × T² preparation:
the i-th region has measure w i, for nonnegative w with ∑ w ≤ 1.
Phase D — Born weights, spectral observable, and integration identity #
Born weights of a Hermitian matrix A on a state ψ: the squared
moduli ‖⟨uᵢ, ψ⟩‖² of the projections onto the eigenvectors of A. These
sum to ‖ψ‖² (Parseval / OrthonormalBasis.sum_sq_norm_inner_right).
Equations
- CSD.LF4.bornWeights hA ψ i = ‖inner ℂ (hA.eigenvectorBasis i) ψ‖ ^ 2
Instances For
Ontic spectral observable: the eigenvalue-weighted indicator sum
over the N spectral outcome regions. Each region spectralRegion (bornWeights hA ψ) i has fibre measure ‖⟨uᵢ, ψ⟩‖² under the Dirac × T² preparation,
and the indicator-weighted sum represents the ontic counterpart of A.
Equations
- CSD.LF4.spectralOntic hA ψ σ = ∑ i : Fin N, hA.eigenvalues i * (CSD.LF4.spectralRegion (CSD.LF4.bornWeights hA ψ) i).indicator (fun (x : CSD.LF4.KSigma M) => 1) σ
Instances For
§14.2 ontic-Hilbert observable correspondence at the integration level:
for any Hermitian A : Matrix (Fin N) (Fin N) ℂ and unit state
ψ : EuclideanSpace ℂ (Fin N), on any Kähler instance KSigma M with
preparation (Dirac p₀) × vol_T², the ontic spectral observable integrates
to the real part of the Hilbert expectation value. Composes the Phase C
multi-region carving identity (diracProd_spectralRegion) with the
SpectralExpansion.hermitian_inner_spectral_expansion_re identity.