2

$$(r\leftrightarrow \neg p)\wedge p\wedge (q\rightarrow \neg (p\oplus q))$$

Steps I took:

I broke up the proposition into bits and pieces and assigned them to variables as such:

$a=(p\oplus q)$, $b=(q\rightarrow \neg a)$, $c=(r\leftrightarrow \neg p)$

I wrote up the following truth table:

enter image description here

After looking at the truth table, I came up with $(r\leftrightarrow \neg p)\wedge p$ as the shortest possible equivalent expression. However, I don't think this is the right answer. How do I go about figuring the shortest possible equivalent expression?

1 Answers1

1

$$(r\leftrightarrow \neg p)\wedge p\wedge (q\rightarrow \neg (p\oplus q))$$

is the same as

$$\neg r\wedge p\wedge (q\rightarrow \neg (p\oplus q))$$

because $$\neg p \wedge p$$ can not be true. This furthermore simplifies to

$$\neg r\wedge p$$

because we know $p$ must be true and therefore $$\neg (p\oplus q)$$ is the same as $$q.$$

Loreno Heer
  • 4,460