Why is $\neg(P\land Q)$ equivalent to $\neg P\lor\neg Q$, and how do we prove it?
Thanks!
Why is $\neg(P\land Q)$ equivalent to $\neg P\lor\neg Q$, and how do we prove it?
Thanks!
First of all you have the following acts in logic: ∧:Conjugation ∨:Divorcement ¬ :Negation
In Boolean Calculus there also the following:
$\bigoplus$:either(where we have true or 1 only if one of the operators in the act is true ,e.x $0 \bigoplus 0=0$, $0 \bigoplus 1=1$, $1 \bigoplus 0=1$, $1 \bigoplus 1=0$.
$<->$:which is the equality
$->$:implication.
All these Boolean acts can be described with the non boolean ones like:
$P∨Q$=$¬(¬P∧¬Q)$
$P->Q$=$¬P∨Q$
$P<->Q$=$(P->Q)∧(Q->P)$
$P \bigoplus Q$=$¬(P<->Q)$
Now a main tool for these things is the distributive property.
With all these you can get minimal forms.
Now for the $¬(P∧Q)=¬P∨¬Q$
When you use $¬$ in front of a bracket it acts on every operators in the bracket.So the $∧$ becomes $∨$ and everything that has $¬$ then doesn't because $¬(¬P)=P$,because if you say no to no then it's yes!
De Morgan's laws, you'll find ample questions that discuss this. – Lord_Farin Oct 25 '13 at 10:04