3

$$¬(p ↔ q) ⇔ (p ↔ ¬q)$$

I started with the left side.

$LS: ¬(p ↔ q)$

$\Leftrightarrow ¬ ((p → q)∧(q → p)) $ Biconditional Law

$\Leftrightarrow ¬((¬pvq)∧(¬qvp)) $ Conditional Law

$\Leftrightarrow(¬(¬pvq))v(¬(¬qvp))) $ DeMorgan's

$\Leftrightarrow (p∧¬q)v(q∧¬p)) $ DeMorgan's

I am having trouble figuring out where to go from here.

Were there also any mistakes in any of my steps?

Thanks.

Ethan
  • 5,291
Isaiah
  • 53

2 Answers2

2

$$\neg(p\leftrightarrow q)$$ $$\neg (p \to q \wedge q\to p)$$ $$\neg(p\to q)\vee\neg (q\to p)$$ $$(p\wedge\neg q)\vee(q\wedge\neg p)$$ $$(p\vee q)\wedge(\neg q\wedge \neg p)$$ $$(\neg q\to p)\wedge(p\to\neg q)$$ $$p\leftrightarrow \neg q$$

ajotatxe
  • 65,084
2

So far: all good.

Next: use Distribution, Negation, then Identity.

Graham Kemp
  • 129,094
  • How would you distribute:(p∧¬q)v(q∧¬p).

    I know that p V (q ∧ r) <=> (p V q) ∧ (p V r)

    – Isaiah Nov 07 '19 at 06:29
  • 1
    So treat the first conjunction as one term.$${\color{blue}{(p\wedge \neg q)}~\vee~(\neg p~\wedge ~q)\=(\color{blue}{(p\wedge\neg q)}\vee\neg p)\wedge(\color{blue}{(p\wedge\neg q)}\vee q)\ =\ldots}$$Now distribute those two disjunction. [Or you might use Absorption if you like.] – Graham Kemp Nov 07 '19 at 06:41