30.9k views
1 vote
If s is true and j is false, is the following true or false (~s v j) ^ (s v~ j)

1 Answer

3 votes
s = true
~s = false
-------------
j = false
~j = true
-------------
~s = false and j = false, so,
~s v j = (false) v (false)
~s v j = false
-------------
Similarly,
s v ~j = (true) v (true)
s v ~j = true
-------------
We have
~s v j = false
and
s v ~j = true
which lead to this when we conjunct the two logical expressions
(~s v j) ^ (s v ~j) = (false) ^ (true)
(~s v j) ^ (s v ~j) = false
-------------
-------------
The final answer is false

User Ben Winding
by
8.0k points

No related questions found

Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.