pith. machine review for the scientific record. sign in
theorem

gap45_eq

proved
show as:
view math explainer →
module
IndisputableMonolith.CrossDomain.CardinalitySpectrum
domain
CrossDomain
line
34 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.CrossDomain.CardinalitySpectrum on GitHub at line 34.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  31def cubeFaces : ℕ := 6       -- 2 * Dspatial
  32
  33theorem eightTick_eq : eightTick = 2 ^ Dspatial := by decide
  34theorem gap45_eq : gap45 = Dspatial^2 * Dconfig := by decide
  35theorem cubeFaces_eq : cubeFaces = twoFace * Dspatial := by decide
  36
  37/-! ## Spectrum members with RS decompositions -/
  38
  39/-- 3 = D_spatial. -/
  40theorem three_is_Dspatial : (3 : ℕ) = Dspatial := rfl
  41
  42/-- 4 = 2². -/
  43theorem four_is_2sq : (4 : ℕ) = 2^2 := by decide
  44
  45/-- 5 = D_config. -/
  46theorem five_is_Dconfig : (5 : ℕ) = Dconfig := rfl
  47
  48/-- 6 = 2·3 = cube faces. -/
  49theorem six_is_cubeFaces : (6 : ℕ) = cubeFaces := rfl
  50
  51/-- 7 = 2³ − 1 (working memory). -/
  52theorem seven_is_cube_minus_one : (7 : ℕ) = 2^3 - 1 := by decide
  53
  54/-- 8 = 2³. -/
  55theorem eight_is_2cube : (8 : ℕ) = eightTick := rfl
  56
  57/-- 10 = 2·5. -/
  58theorem ten_is_2_D : (10 : ℕ) = 2 * Dconfig := by decide
  59
  60/-- 12 = 3·4 = D · 2² (cube edges). -/
  61theorem twelve_is_D_4 : (12 : ℕ) = Dspatial * 4 := by decide
  62
  63/-- 15 = 3·5 = 3 nested configDim (planet strata). -/
  64theorem fifteen_is_3_D : (15 : ℕ) = 3 * Dconfig := by decide