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

PerpetualComplexityCert

definition
show as:
view math explainer →
module
IndisputableMonolith.Cosmology.PerpetualComplexity
domain
Cosmology
line
117 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Cosmology.PerpetualComplexity on GitHub at line 117.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

used by

formal source

 114
 115/-! ## Certificate -/
 116
 117structure PerpetualComplexityCert where
 118  coprime_8_45 : Nat.Coprime 8 45
 119  sync_360 : Nat.lcm 8 45 = 360
 120  misalignment : ∀ t : ℕ, t % 360 ≠ 0 → (t % 8 ≠ 0 ∨ t % 45 ≠ 0)
 121  no_heat_death : ¬ (∀ t : ℕ, t % 8 = 0 ∧ t % 45 = 0)
 122
 123def perpetualComplexityCert : PerpetualComplexityCert where
 124  coprime_8_45 := by native_decide
 125  sync_360 := by native_decide
 126  misalignment := fun t ht => misalignment_exists t ht
 127  no_heat_death := no_heat_death
 128
 129end IndisputableMonolith.Cosmology.PerpetualComplexity