edited by
664 views
3 votes
3 votes

If the proposition $\lnot p \to q$ is true, then the truth value of the proposition $\lnot p \lor \left ( p \to q \right )$, where $\lnot$ is negation,$\lor$ is inclusive OR and $\to$ is implication, is

  1. True
  2. Multiple Values
  3. False
  4. Cannot be determined
edited by

3 Answers

4 votes
4 votes

$$\sim p\rightarrow q$$ = p+q, and it is given that $$\sim p\rightarrow q$$ is true.

$$\sim p\rightarrow q$$ will be TRUE when one of the variable is true. So the valid value pair for p and q are (1,1), (1,0), and (0,1).

If we use these value pairs for $$\sim p\vee \left ( p\rightarrow q \right )$$ $\cong$ $\sim p \vee q$ we get final output as below

p

p'

q

p'+q

1

0

1

1

1

0

0

0

0

1

1

1

Here at the ouput column we are getting multiple values.

So, the answer is D.

edited by
3 votes
3 votes

I did this in the following way :

Truth value can be determined means : if A always 1 then truth then truth value of A is 1. Or,if A ia always 0 then truth then truth value of A is 0.

From the question valid combinations of p and q are restricted to (0,1) , (1,0) and (1,1).

Based on that, Truth value of last column is not always 1 or always 0.

=> can not be determined.

edited by
0 votes
0 votes

given ¬p→q =True

(p')'+q=True => p+q=T

p q p+q
0 0 0
0 1 1
1 0 1
1 1 1

now check for

¬p∨(p→q)=p'+(p'+q)=p'+q

p' q p'+q
1 0 1
1 1 1
0 0 0
0 1 1

p'+q=p+q hence answe isTRUE 

please correct me if i wrong

Related questions

3 votes
3 votes
2 answers
2
2 votes
2 votes
1 answer
4
♥_Less asked Dec 31, 2017
1,012 views
When should we use implication and when conjunction? For example in this question:https://gateoverflow.in/989/gate2006-26?show=188041#c188041What is the difference in opt...