edited by
12,464 views
48 votes
48 votes

Let $a, b, c, d$ be propositions. Assume that the equivalence $a ⇔ ( b \vee \neg b)$ and $b ⇔c$ hold. Then the truth-value of the formula $(a ∧ b) → (a ∧ c) ∨ d$ is always

  1. True
  2. False
  3. Same as the truth-value of $b$
  4. Same as the truth-value of $d$
edited by

7 Answers

Best answer
57 votes
57 votes

Given  that $\ a\Leftrightarrow (b\vee \neg b)$ and $ b\Leftrightarrow c$
Now,
$(a\wedge b)\rightarrow (a \wedge c)\vee d$
$\equiv (a\wedge b)\rightarrow (a \wedge b)\vee d\;\;\;\; (\because b \Leftrightarrow c)$
$\equiv \neg (a\wedge b)\vee (a \wedge b)\vee d$
$\equiv T \vee d$
$\equiv T$
Hence, Option(A) True.

edited by
49 votes
49 votes

Given that, a\Leftrightarrowb∨~b

It is equivalent to a\LeftrightarrowTRUE

\therefore (a∧b)\rightarrow((a∧c)∨d)

wkt, 1∧x = x

\therefore (a∧b) = 1∧b = b

similarly, 1∧c = c

We now have, b \rightarrow(c∨d)

Which can be written as,

~b∨c∨d

We also know that b\Leftrightarrowc

\therefore ~b∨c = TRUE

\therefore TRUE∨d = TRUE

And hence answer is option a

17 votes
17 votes
a ⇔ ( b V ~b) = and a ⇔  True means both a and True are equivalent
 b ⇔c means both b and c are equivalent

(a ∧ b) → (a ∧ c) ∨ d
=(True ∧ b) → (True ∧ c) ∨ d     (a ⇔  True)
= b → c ∨ d
= ~b ∨ c ∨ d
= ~b ∨ b ∨ d     (b ⇔c)
= True  ∨ d
=True

Hence ans is A
edited by
Answer:

Related questions

18.9k
views
4 answers
63 votes
Daggerhunt asked Nov 16, 2014
18,887 views
Let $G$ be an undirected graph. Consider a depth-first traversal of $G$, and let $T$ be the resulting depth-first search tree. Let $u$ be a vertex in $G$ and let $v$ be t...
19.1k
views
4 answers
65 votes
Kathleen asked Sep 14, 2014
19,130 views
In SQL, relations can contain null values, and comparisons with null values are treated as unknown. Suppose all comparisons with a null value are treated as false. Which ...
22.7k
views
2 answers
30 votes
Kathleen asked Sep 14, 2014
22,734 views
Which of the following is not a valid deadlock prevention scheme?Release all resources before requesting a new resource.Number the resources uniquely and never request a ...
10.9k
views
6 answers
27 votes
Kathleen asked Sep 14, 2014
10,946 views
Given the following expression grammar:$$\begin{align}E &\to E * F \mid F + E \mid F \\[1em]F &\to F - F \mid id\end{align}$$Which of the following is true?$*$ has higher...