The Following Are Equivalent #
This file allows to state that all propositions in a list are equivalent. It is used by
tactic.tfae
.
tfae l
means ∀ x ∈ l, ∀ y ∈ l, x ↔ y
. This is equivalent to pairwise (↔) l
.
theorem
list.tfae_of_cycle
{a b : Prop}
{l : list Prop} :
list.chain (λ (_x _y : Prop), _x → _y) a (b :: l) → (list.ilast' b l → a) → (a :: b :: l).tfae