Given p is true, q is false, and r is false, find the truth value of the statement (q ^~r) ->~p.

3 answers

Let's break it up to make it easier.

(q ^ ~r)

q is F.
~r is T.
Therefore, q ^ ~r is F.

~p is F.
Therefore, (q ^ ~r) --> ~p is T.
okay...that makes a little more sense...thanks Max!
You're welcome.