pith. machine review for the scientific record. sign in
theorem proved term proof high

coprime_at_D3

show as:
view Lean formalization →

At the forced spatial dimension D=3 the integers 8 and 45 are coprime. Researchers working on dimensional selection within Recognition Science cite the result to confirm that the recognition period 2^D stays coprime to the integration gap precisely when D is odd. The proof is a one-line native decision procedure that evaluates the gcd directly.

claimLet $D=3$ be the forced spatial dimension. Then $gcd(2^D, D^2(D+2))=1$.

background

The integration gap is the integer $D^2(D+2)$, obtained as the product of the parity count $D^2$ and the configuration dimension $D+2$. At $D=3$ this product equals 45. The module establishes that $gcd(2^D, D^2(D+2))=1$ if and only if $D$ is odd, which combines with the linking argument in Foundation.DimensionForcing to restrict admissible dimensions to the single value $D=3$ among the odd candidates.

proof idea

The proof is a one-line wrapper that invokes the native_decide tactic. This reduces the coprimality predicate to a direct computation of the greatest common divisor of 8 and 45.

why it matters in Recognition Science

The declaration is packaged inside the IntegrationGapCert structure and supplies the coprimality leg of the ConstraintS_Cert used by Gap45.SyncMinimization. It closes the argument that only odd dimensions keep the recognition cycle orderly and, together with the dimension-forcing step, isolates D=3. The result therefore supports the eight-tick octave and the selection of three spatial dimensions in the T0-T8 forcing chain.

scope and limits

Lean usage

theorem use_in_cert : IntegrationGapCert where coprime_at_3 := coprime_at_D3

formal statement (Lean)

  89theorem coprime_at_D3 : Nat.Coprime (2 ^ D) (integrationGap D) := by native_decide

proof body

Term-mode proof.

  90
  91/-! ## Integration gap minus one -/
  92
  93/-- The integer `D²(D+2) - 1`. At `D = 3` this equals `44`. -/

used by (3)

From the project-wide theorem graph. These declarations reference this one in their body.

depends on (9)

Lean names referenced from this declaration's body.