asked 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

answered
User Ben Winding
by
8.0k points

No related questions found

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.