2

I'm Trying to prove that

¬(p ↔ q) is equivalent to ¬p ↔ q.

I have done the work for ¬p ↔ q and simplified it to (p ∨ q) ∧ ¬(p ∧ q) .....My trouble is on the other proposition how do i distribute that not(¬)?

Elchavo18
  • 183

1 Answers1

2

De Morgan's Law: $\neg(p\wedge q) \equiv \neg p\vee\neg q$ and $\neg(p\vee q)\equiv \neg p\wedge \neg q)$

So $\neg(p\leftrightarrow q)~{\equiv \neg((p\to q)\wedge(q\to p))\\\equiv\neg (p\to q)\vee\neg(q\to p)}$

Now, if you do not know how to negate a conditional, first use the equivalence $p\to q\equiv \neg p\vee q$.

$~\\~\\~$


PS: Calling DeMorgan's Law "distributing the not" will only confuse you.

Graham Kemp
  • 129,094