Encyclopedia Gravity Gravity Analysis Regge Ttsymbol Specification Audit Is Ttpolarization Smul Iff

ARTICLE 3 claims 3 theorems

Gravity Analysis Regge Ttsymbol Specification Audit Is Ttpolarization Smul Iff

A fixed number for a physical quantity is only meaningful if rescaling that quantity cannot change the answer; this theorem pins down exactly when a rescaling is allowed.

The normalization pin

In the study of gravitational waves, a polarization describes the pattern of stretching and squeezing that a passing wave imprints on space. A transverse-traceless (TT) polarization is a special kind: it is symmetric, leaves no trace, and points purely sideways to the wave's motion. In the Recognition Science framework, such a polarization is represented by a 3 by 3 matrix E, and the framework's ledger of recognition events tracks how this matrix behaves under rescaling, that is, when every entry is multiplied by the same number c.

The declaration isTTPolarization_smul_iff answers a precise question: if you take a valid TT polarization and multiply every entry by c, when is the result still a valid TT polarization? The theorem proves that this happens exactly when c squared equals 1, meaning c is either 1 or -1. The reason is that the definition of a TT polarization includes a normalization condition, a fixed size for the matrix measured by its Frobenius norm, the square root of the sum of the squares of all entries. Rescaling by any other c changes this size, so the rescaled matrix no longer qualifies.

This matters because the framework is investigating a specific claim: that a certain quantity, the continuum TT Bloch symbol, has a fixed value of -1/4. A fixed value is only meaningful if the statement cannot be rescaled into a contradiction. Without a normalization, the same physical situation could report both H and c squared times H for any c, making the fixed value meaningless. The theorem isTTPolarization_smul_iff, together with the scaling law it supports, shows that the normalization pin works: the only rescalings that preserve the hypothesis class are c squared equals 1, and for those the reported value is unchanged.

In Recognition Science, this is a theorem, machine-checked in the framework's library of formal theorems. It does not claim that the value -1/4 is correct. It only establishes that the statement is well-posed, that is, that a fixed value can be meaningfully assigned. The actual value of the continuum TT Bloch symbol remains an open target, not yet derived.

THEOREM isTTPolarization_smul_iff · IndisputableMonolith/Gravity/Analysis/ReggeTTSymbolSpecificationAudit.lean
/-- (e) THEOREM, the pin is real: starting from a TT polarization `E`, the
rescaled matrix `c • E` remains a TT polarization exactly when `c² = 1`.
Symmetry, tracelessness, and transversality survive every rescaling; the
Frobenius pin is the ONLY normalization-fixing clause, and it works. -/
theorem isTTPolarization_smul_iff (m : Fin 3 → ℤ)
    (E : Fin 3 → Fin 3 → ℝ) (c : ℝ) (h : IsTTPolarization m E) :
    IsTTPolarization m (c • E) ↔ c ^ 2 = 1 := by
  obtain ⟨hsym, htr, htrans, hfrob⟩ := h
  constructor
  · intro hcE
    have hpin := hcE.2.2.2
    have hfrob' : frobeniusSq (c • E) = 1 := hpin
    rw [frobeniusSq_smul] at hfrob'
    have hfrobE : frobeniusSq E = 1 := hfrob
    rw [hfrobE, mul_one] at hfrob'
    exact hfrob'
  · intro hc2
    refine ⟨?_, ?_, ?_, ?_⟩
    · intro i j
      show c * E i j = c * E j i
      rw [hsym i j]
    · show (∑ i : Fin 3, c * E i i) = 0
      rw [← Finset.mul_sum, htr, mul_zero]
    · intro j
      show (∑ i : Fin 3, (m i : ℝ) * (c * E i j)) = 0
      calc (∑ i : Fin 3, (m i : ℝ) * (c * E i j))
          = c * ∑ i : Fin 3, (m i : ℝ) * E i j := by
            rw [Finset.mul_sum]
            exact Finset.sum_congr rfl fun i _ => by ring
        _ = 0 := by rw [htrans j, mul_zero]
    · have h1 : frobeniusSq (c • E) = c ^ 2 * frobeniusSq E :=
        frobeniusSq_smul c E
      have h2 : frobeniusSq E = 1 := hfrob
      show frobeniusSq (c • E) = 1
      rw [h1, h2, hc2, mul_one]
THEOREM reggeTT_target_scaling_wellPosed · IndisputableMonolith/Gravity/Analysis/ReggeTTSymbolSpecificationAudit.lean
/-- **GATE A0 VERDICT (THEOREM): the `-1/4` target statement is
well-posed under the `polEdgeCoeff` scaling convention.**

The three clauses, all kernel-checked, assemble the well-posedness
argument:

1. (pin) every `E` in the target's hypothesis class `IsTTPolarization`
   has Frobenius square-sum exactly `1`;
2. (quadratic scaling) the Bloch symbol value transforms as `H ↦ c²·H`
   under `E ↦ c·E`, so WITHOUT a normalization the fixed-value claim
   would be contradictory (the same family would report `H` and `c²·H`);
3. (pin bites) the only rescalings that stay inside the hypothesis class
   are `c² = 1`, and for those `c²·H = H` — the reported value is
   invariant on the quantified class.

Hence `ReggeTTContinuumIsotropyTarget`, which quantifies over
`IsTTPolarization` (pin included), assigns a scaling-coherent meaning to
the fixed constant `reggeTTContinuumCoefficient = -(1/4)`.  Nothing here
proves (or evidences) that the value IS `-1/4`; that target remains OPEN
with status flag `false`. -/
theorem reggeTT_target_scaling_wellPosed {c : ℝ} (hc : c ≠ 0)
    (m : Fin 3 → ℤ) (E : Fin 3 → Fin 3 → ℝ) (H : ℝ)
    (hE : IsTTPolarization m E) :
    frobeniusSq E = 1 ∧
      (TTBlochSymbolIs N E m H ↔ TTBlochSymbolIs N (c • E) m (c ^ 2 * H)) ∧
      (IsTTPolarization m (c • E) ↔ c ^ 2 = 1) :=
  ⟨isTTPolarization_frobenius_pinned m E hE,
    TTBlochSymbolIs_smul N hc E m H,
    isTTPolarization_smul_iff m E c hE⟩
THEOREM reggeTT_target_scaling_wellPosed · IndisputableMonolith/Gravity/Analysis/ReggeTTSymbolSpecificationAudit.lean
/-- **GATE A0 VERDICT (THEOREM): the `-1/4` target statement is
well-posed under the `polEdgeCoeff` scaling convention.**

The three clauses, all kernel-checked, assemble the well-posedness
argument:

1. (pin) every `E` in the target's hypothesis class `IsTTPolarization`
   has Frobenius square-sum exactly `1`;
2. (quadratic scaling) the Bloch symbol value transforms as `H ↦ c²·H`
   under `E ↦ c·E`, so WITHOUT a normalization the fixed-value claim
   would be contradictory (the same family would report `H` and `c²·H`);
3. (pin bites) the only rescalings that stay inside the hypothesis class
   are `c² = 1`, and for those `c²·H = H` — the reported value is
   invariant on the quantified class.

Hence `ReggeTTContinuumIsotropyTarget`, which quantifies over
`IsTTPolarization` (pin included), assigns a scaling-coherent meaning to
the fixed constant `reggeTTContinuumCoefficient = -(1/4)`.  Nothing here
proves (or evidences) that the value IS `-1/4`; that target remains OPEN
with status flag `false`. -/
theorem reggeTT_target_scaling_wellPosed {c : ℝ} (hc : c ≠ 0)
    (m : Fin 3 → ℤ) (E : Fin 3 → Fin 3 → ℝ) (H : ℝ)
    (hE : IsTTPolarization m E) :
    frobeniusSq E = 1 ∧
      (TTBlochSymbolIs N E m H ↔ TTBlochSymbolIs N (c • E) m (c ^ 2 * H)) ∧
      (IsTTPolarization m (c • E) ↔ c ^ 2 = 1) :=
  ⟨isTTPolarization_frobenius_pinned m E hE,
    TTBlochSymbolIs_smul N hc E m H,
    isTTPolarization_smul_iff m E c hE⟩

What this page does not claim

The theorem does not prove that the continuum TT Bloch symbol has the value -1/4. The theorem does not provide any numerical evidence for the value -1/4. The theorem does not claim that the normalization convention is the only possible one.

Verify this page

Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:

$ lake env lean IndisputableMonolith/Gravity/Analysis/ReggeTTSymbolSpecificationAudit.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)

A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.

Derived articles

This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND