Example 1. 3>1 OR 2=1
To me this is True or False and I don't understand if the entire question has to make sense or if the answer is just False because not all of it is true. Thank you.
Assume that a = 3, b = 2, and c = 1. What is the value of each of the following Boolean expressions? Show your work.
- (a > 1) OR (b = c)
- ((a + b) > c) AND (b < c)
- NOT (a = 1)
- NOT ((a = b) OR (b = c)).
- (a = 1) AND (b = 1) AND (c = 2)
- (a = 1) OR (b = 1) OR (c = 2)
Assume that a = 4, b = 3, and c = 2. What problem do you encounter when attempting to evaluate this Boolean expression? Give a couple examples illustrating the problem.
(a = 2) OR (b = 3) AND (c = 4)
How can this problem be solved?