Hello to everyone who's reading this. :)
I have a sort of pedantic question.
Let's say I wanted to construct the truth table for p ^ ¬q.
Is it correct to give the following?:
_____________
p | q | ¬q | p ^ ¬q |
0 | 0 | 1 | 0 |
0 | 1 | 0 | 0 |
1 | 0 | 1 | 1 |
1 | 1 | 0 | 0 |
---------------------
Or, would I have to give the following?:
___________
p | q | p ^ ¬q |
0 | 0 | 0 |
0 | 1 | 0 |
1 | 0 | 1 |
1 | 1 | 0 |
-----------------
(This isn't really about what a teacher would accept on a test, but rather about whether both are strictly correct or if only the bottom one is correct.)
Any input would be greatly appreciated!