lemma
proved
term proof
identity_in_ball
show as:
view Lean formalization →
formal statement (Lean)
85lemma identity_in_ball (c : Config) (hr : r > modal_distance c (identity_config c.time)) :
86 ∃ t : ℕ, identity_config t ∈ PossibilityBall c r := by
proof body
Term-mode proof.
87 use c.time
88 simp only [PossibilityBall, Set.mem_setOf_eq]
89 exact le_of_lt hr
90
91/-- **CONNECTIVITY**: Every configuration connects to identity.
92
93 This gives possibility space a "star" topology with identity at the center. -/