443 views
1 votes
1 votes
Suppose we have to construct a formula that expresses the truth function $\phi$ given by:       
$$
\begin{array}{c|c|c}
p & q & \phi \\\hline
T & T & T \\
T & F & T \\
F & T & F \\
F & F & F
\end{array}
$$
(T stands for True and F stands for False)      
Which of the following statement(s) is/are correct ?   

  1. The formula that $\phi$ expresses is $p$       
  2. The formula that $\phi$ expresses is $(p \wedge q) \vee (p \wedge \neg q)$        
  3. The formula that $\phi$ expresses is $(p \wedge \neg r \wedge q) \vee (~q \wedge p) \vee (r \wedge p) \vee p$      
  4. The formula that $\phi$ expresses is $\neg p \rightarrow ((p \rightarrow \neg p) \rightarrow (\neg p \rightarrow p))$

1 Answer

Best answer
3 votes
3 votes
  1. From truth table we can see that $\phi$ = p because columns of p & $\phi$ are same.
  2. (pq) + (pq’) = p(q+q’) = p
  3. (pr’q) + (qp) + (rp) + (p) = (r’q + q + r + 1)p = p
  4. p’ → ((p → p’) → (p’ → p)) = p + ((p → p’) → (p’ → p)) = p + ((p’ + p’) → (p + p)) = p + (p’ → p) = p + (p + p) = p.

Ans is A,B,C,D.

selected by
Answer:

Related questions