Answer:
First truth table:
~q p V ~q ~(p V ~q)
F T F
T T F
F F T
T T F
Second truth table:
~q p V ~q ~(p V ~q)
F T F
Step-by-step explanation:
The ~ operator is a negator (or NOT), such that it is the opposite of the sign.
The first column wants the negation of , and the values of q are
T, F, T, F, for the columns starting from the top. The negation for the columns are F, T, F, T.
For the second column, The 'V' operator is the OR operator, so a single True, or T will result in a True.
For the first row, not q is F, and T OR F will result in T.
For the second row, not q is T, and T OR T will result in T.
For the third row, not q is F, and F OR F will result in F.
For the fourth row, not q is T, and F OR T will result in T.
In the last column, we must figure out not p OR not q, which we did in the last column, so all we must do is figure out the NOT of values of the last column.
The values of the last column are T, T, F, T, respectively, so the not of the columns will be F, F, T, F.
In the bottom truth table, not q, will be F because the value of q is T. The second column wants p OR not q, and we already know that not q is F, and the value of p is T. T OR F is equal to T. In the last column, the question wants the not of p OR not q, which we did in the last column, so we must figure out the not value of the last column, which is T. The not of T is F.