theorem
proved
term proof
composite_refines_left
show as:
view Lean formalization →
formal statement (Lean)
68theorem composite_refines_left (r₁ : Recognizer C E₁) (r₂ : Recognizer C E₂)
69 {c₁ c₂ : C} (h : Indistinguishable (r₁ ⊗ r₂) c₁ c₂) :
70 Indistinguishable r₁ c₁ c₂ :=
proof body
Term-mode proof.
71 ((composite_indistinguishable_iff r₁ r₂ c₁ c₂).mp h).1
72
73/-- If configs are indistinguishable under composite, they are under r₂ -/