theorem
proved
term proof
postural_minimization
show as:
view Lean formalization →
formal statement (Lean)
49theorem postural_minimization (pa : PosturalAxis) :
50 alignment_quality pa = 1 →
51 postural_coupling_cost pa = 0 := by
proof body
Term-mode proof.
52 intro h_qual
53 unfold postural_coupling_cost
54 rw [h_qual]
55 ring
56
57/-- **DEFINITION: System Stability (Posture)**
58 Biological stability derived from postural alignment. -/