@@ -31,13 +31,14 @@ The declarations below separate three mathematical statements:
3131 idempotents on each finite chain;
3232* the already formalized Appendix B structural form.
3333
34- **Scope restriction (overlapping two-site terms):** The current \( N\) -site state
35- space is a function space indexed by configurations. It does not yet expose the
36- tensor-product support maps needed to state directly the source relation
37- \( [ \tau_1(P_2),P_2 ] =0\) for the two overlapping nearest-neighbor terms. For this
38- reason commutativity of the translated idempotents is an explicit hypothesis in
39- `HasProductPairLocalProjectors`. Eliminating this hypothesis is the
40- overlapping product-of-entangled-pairs locality step recorded in
34+ **Scope restriction (overlapping two-site terms):** The three-site support maps
35+ for the source \( AX\) and \( XB\) windows are now available in
36+ `TNLean.MPS.ParentHamiltonian.LocalSupport`. What is still missing is the
37+ Appendix-B theorem identifying the product-of-entangled-pairs parent projectors
38+ with the translated length-two parent terms and proving their overlapping
39+ commutation. For this reason commutativity of the translated idempotents is
40+ still an explicit hypothesis in `HasProductPairLocalProjectors`. Eliminating
41+ this hypothesis is the product-of-entangled-pairs locality step recorded in
4142`docs/paper-gaps/cpsv16_nncph_ground_state_scope.tex`.
4243-/
4344
@@ -111,10 +112,12 @@ theorem HasProductPairMPV.exists_twoSiteAmplitude {A : MPSTensor d D}
111112\( p_i\) associated to the adjacent two-site factors on an \( N\) -site chain, with
112113\( p_i p_j=p_j p_i\) .
113114
114- **Scope restriction (tensor-product locality):** The current formal state space
115- does not yet carry the tensor-product support maps used in the source
116- product-of-entangled-pairs argument, so the projectors are stated directly as
117- endomorphisms of the full \( N\) -site space. -/
115+ **Scope restriction (local projectors):** The formal development now has the
116+ three-site \( AX/XB\) support maps for adjacent windows. This structure still does
117+ not construct, from the Appendix-B product-of-entangled-pairs form, the
118+ chain-level projectors that equal the translated length-two parent terms. The
119+ projectors are therefore still stated directly as endomorphisms of the full
120+ \( N\) -site space. -/
118121structure HasProductPairLocalProjectors (A : MPSTensor d D) (N : ℕ) where
119122 proj : Fin N → NSiteSpace d N →ₗ[ℂ] NSiteSpace d N
120123 hidem : ∀ i, proj i * proj i = proj i
@@ -183,12 +186,12 @@ theorem ProductPairBridge.localTerm_idempotent
183186/-! ### Appendix B structural form as the preceding input -/
184187
185188/-- Structure recording the Appendix B normal-tensor decomposition
186- \( A^i=X\Lambda U^iX^{-1}\) .
189+ \( A^i=X\Lambda U^iX^{-1}\) in the source unit pair-index convention .
187190
188- The theorem `rfp_nt_structural_full ` proves existence of this structural form
189- from the RFP, normality, and left-canonical hypotheses. The remaining
190- product-of-entangled-pairs factorization and parent-term identities must use
191- the same \( X,\Lambda,U\) . -/
191+ The theorem `rfp_nt_structural_full_unit_pair ` proves existence of this
192+ structural form from the RFP, normality, and left-canonical hypotheses. The
193+ remaining product-of-entangled-pairs factorization and parent-term identities
194+ must use the same \( X,\Lambda,U\) . -/
192195structure AppendixBStructuralData (A : MPSTensor d D) where
193196 /-- The virtual-bond change of basis. -/
194197 X : Matrix (Fin D) (Fin D) ℂ
@@ -200,15 +203,11 @@ structure AppendixBStructuralData (A : MPSTensor d D) where
200203 hX_det : X.det ≠ 0
201204 /-- The diagonal weights are strictly positive. -/
202205 hΛ_pos : ∀ k, 0 < Λ k
203- /-- The residual tensor is left-canonical. -/
204- hU_left : ∑ i : Fin d, (U i)ᴴ * U i = 1
205- /-- The residual tensor satisfies the normalized per-block pair-index
206- orthonormality condition. The normalization differs from the source's unit
207- pair-index convention as recorded in
208- `docs/paper-gaps/cpsv16_rfp_isometry_scope.tex`. -/
206+ /-- The residual tensor satisfies the source unit pair-index orthonormality
207+ condition from arXiv:1606.00608, lines 550--554, restricted to one block. -/
209208 hU_pair : ∀ p q : Fin D × Fin D,
210209 ∑ i : Fin d, star (U i p.1 p.2 ) * U i q.1 q.2 =
211- if p = q then (D : ℂ)⁻¹ else 0
210+ if p = q then 1 else 0
212211 /-- The original tensor has the Appendix B structural form. -/
213212 hA_eq : ∀ i, A i = X * Matrix.diagonal (fun k => (Λ k : ℂ)) * U i * X⁻¹
214213
@@ -218,15 +217,14 @@ theorem AppendixBStructuralData.exists_ofRFP (A : MPSTensor d D) [NeZero D]
218217 (hLeft : ∑ i : Fin d, (A i)ᴴ * A i = 1 ) :
219218 Nonempty (AppendixBStructuralData A) := by
220219 classical
221- obtain ⟨X, Λ, U, hX_det, hΛ_pos, hU_left, hU_pair, hA_eq⟩ :=
222- rfp_nt_structural_full A hNT hRFP hLeft
220+ obtain ⟨X, Λ, U, hX_det, hΛ_pos, hU_pair, hA_eq⟩ :=
221+ rfp_nt_structural_full_unit_pair A hNT hRFP hLeft
223222 exact ⟨
224223 { X := X
225224 Λ := Λ
226225 U := U
227226 hX_det := hX_det
228227 hΛ_pos := hΛ_pos
229- hU_left := hU_left
230228 hU_pair := hU_pair
231229 hA_eq := hA_eq }⟩
232230
@@ -309,7 +307,7 @@ theorem AppendixBStructuralData.mpv_eq_productPairState_one {A : MPSTensor d D}
309307/-- The remaining product-of-entangled-pairs input needed after Appendix B.
310308
311309For a fixed structural form, this captures the two facts that are still not
312- produced internally by `rfp_nt_structural_full` : the even-chain MPV must be a
310+ produced by the Appendix-B structural datum : the even-chain MPV must be a
313311repeated copy of the two-site amplitude determined by that same witness, and the
314312nearest-neighbor parent projectors on each finite chain must be identified with a
315313commuting family attached to these adjacent two-site factors. -/
0 commit comments