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

LocalityCert

definition
show as:
view math explainer →
module
IndisputableMonolith.Foundation.LocalityFromLedger
domain
Foundation
line
97 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Foundation.LocalityFromLedger on GitHub at line 97.

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

  94
  95/-! ## Certificate -/
  96
  97structure LocalityCert where
  98  uniform : ∀ (L : ZeroParameterLedger), ∀ n,
  99    L.levels n / L.levels (n + 1) = L.levels 0 / L.levels 1
 100  geometric : ∀ (L : ZeroParameterLedger),
 101    ∃ r : ℝ, r > 0 ∧ ∀ k, L.levels (k + 1) = r * L.levels k
 102
 103theorem locality_cert_exists : Nonempty LocalityCert :=
 104  ⟨{ uniform := fun L => uniform_ratio L
 105     geometric := fun L => locality_from_ledger L }⟩
 106
 107end IndisputableMonolith.Foundation.LocalityFromLedger