theorem
proved
cost_to_recognition_bridge
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Foundation.RecognitionForcing on GitHub at line 194.
browse module
All declarations in this module, on Recognition.
explainer page
Derivations using this theorem
depends on
-
RecognitionStructure -
carrier -
carrier -
J_symmetric -
J_symmetric -
RecognitionEvent -
RecognitionEvent -
global_minimum_is_self_recognition -
JStableStructure -
ObservableExtractionMechanism -
recognition_cost -
recognition_from_extraction -
RecognitionLikeStructure -
RecognitionStructure -
stability_forces_recognition -
RecognitionEvent -
J_symmetric -
M -
RecognitionStructure -
M -
S -
RecognitionStructure -
RecognitionStructure
formal source
191
192/-! ## Part 6: Complete Bridge -/
193
194theorem cost_to_recognition_bridge :
195 (∀ x : ℝ, x ≠ 0 → LedgerForcing.J x = LedgerForcing.J x⁻¹) ∧
196 (∃ e : LedgerForcing.RecognitionEvent, e.ratio = 1 ∧ recognition_cost e = 0) ∧
197 (∀ (S : Type) (M : ObservableExtractionMechanism S), ∃ R : RecognitionStructure S, True) ∧
198 (∀ (S : JStableStructure), ∃ (R : RecognitionLikeStructure), R.carrier = S.carrier) :=
199 ⟨fun x hx => LedgerForcing.J_symmetric hx,
200 global_minimum_is_self_recognition,
201 fun _ M => ⟨recognition_from_extraction M, trivial⟩,
202 stability_forces_recognition⟩
203
204end RecognitionForcing
205end Foundation
206end IndisputableMonolith