
Patrick B. answered 10/04/20
Math and computer tutor/teacher
#1 is A : (P ⊃ N)
#2 is also A: (P • A) v C)
#3 is noteworthy. The answer is again A: ~(J v L)
John does not know the answer AND Lisa does not know the answer,
so ~J and ~L = ~( J or L) by DeMorgan's
#4 is C: ((S v P) • ~(S • P)), and I will prove it via truth table
#5 is also C : (F • P)
Truth table to show that the answer to #4 is the same as S xor P
S | P | S or P | S and P | ~(S and P) | answer to #4 | S xor P
------------------------------------------------------------------------------------------------------------------------
T T T T F F F
T F T F T T T
F T T F T T T
F F F F T F F
Xor is the EXCLUSIVE OR and has the truth table
T xor T = F
F xor T = T
T xor F =T
F xor F = F
it works like the regular OR except if both are true, the result is FALSE.
This is exactly the situation in problem #4