English
Let a and b be propositions. Then not (a if and only if b) is equivalent to (not a) if and only if b.
Русский
Пусть a и b — высказывания. Тогда не (a ⇔ b) эквивалентно ((¬a) ⇔ b).
LaTeX
$$$\\\\neg(a\\\\leftrightarrow b)\\\\leftrightarrow(\\\\neg a\\\\leftrightarrow b)$$$
Lean4
theorem not_iff : ¬(a ↔ b) ↔ (¬a ↔ b) :=
open scoped Classical in Decidable.not_iff