theorem
proved
term proof
composite_indistinguishable_iff
show as:
view Lean formalization →
formal statement (Lean)
61theorem composite_indistinguishable_iff (r₁ : Recognizer C E₁) (r₂ : Recognizer C E₂)
62 (c₁ c₂ : C) :
63 Indistinguishable (r₁ ⊗ r₂) c₁ c₂ ↔
64 Indistinguishable r₁ c₁ c₂ ∧ Indistinguishable r₂ c₁ c₂ := by
proof body
Term-mode proof.
65 simp only [Indistinguishable, composite_R_eq, Prod.mk.injEq]
66
67/-- If configs are indistinguishable under composite, they are under r₁ -/