I am having trouble finding which of the following statements are true:
Which of the following statements are true?
- [a] Pizza does NOT have mushrooms
- [b] Pizza does have mushrooms AND bacon
- [c] Pizza does have mushrooms OR bacon
- [d] Pizza does have mushrooms AND NOT shrimps
- [e] Pizza does NOT have mushrooms OR NOT bacon
I've tried to solve this problem like below.
- I assigned a letter to each unique statement:
- P=Pizza does have mushrooms
- Q=Pizza does have bacon
- R=Pizza does have shrimps
- I've translated each statement in terms of P,Q,R like this: $$a=\neg P$$ $$b=P \wedge Q$$ $$c=P \vee Q$$ $$d=P \wedge \neg R$$ $$e=\neg P \vee \neg Q$$
Because I don't know the value of truth of neither P,Q or R I could just assume "what if P is true" and then "what if Q is true" and then "what if R is true" and all other combinations (which is 2^3 because |{T,F}|=2 and |{P,Q,R}|=3).
Just having that table it doesn't (seem to) help me deciding which are really true because in one case or another any of them can be true, depending on our assumption regarding the value of truth for P,Q,R.
According to the book's key the answer should be [c] and [e]. I can remark in my table that if I have to compare/count which of [a]->[e] have more T than others then [c] and [e] are the winners. But this is not a formal proof, does it?
Please give me a tip or point me into the right direction. Thx.