def
definition
def or abbrev
universalStructure
show as:
view Lean formalization →
formal statement (Lean)
84def universalStructure : UniversalStructure := {
proof body
Definition body.
85 State := ℝ, -- Real numbers as universal state space
86 recognizes := fun x y => x = y, -- Identity recognition
87 has_self_recognition := ⟨0, rfl⟩,
88 strain := fun x => x^2, -- Quadratic strain
89 strain_nonneg := fun x => sq_nonneg x,
90}
91
92/-! ## The Embedding Theorems -/
93
94/-- Physics can be embedded. -/