structure
definition
CoherenceCollapseCert
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Gravity.CoherenceCollapse on GitHub at line 135.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
132
133/-! ## Certificate -/
134
135structure CoherenceCollapseCert where
136 C_is_2A : ∀ θ, recognition_action θ = 2 * rate_action θ
137 born_positive : ∀ C, 0 < born_weight C
138 normalization : ∀ θ, Real.sin θ ^ 2 + Real.cos θ ^ 2 = 1
139 threshold_nanogram : m_coh_kg < 1e-9
140
141theorem coherence_collapse_cert : CoherenceCollapseCert where
142 C_is_2A := C_equals_2A
143 born_positive := born_weight_pos
144 normalization := born_normalization
145 threshold_nanogram := by unfold m_coh_kg; norm_num
146
147end
148
149end CoherenceCollapseBridge
150end Gravity
151end IndisputableMonolith