For a Boolean variable ๐ฅ, which of the following statements is/are FALSE?
2024
For a Boolean variable ๐ฅ, which of the following statements is/are FALSE?
- A.
\(๐ฅ. 1 = ๐ฅ\) - B.
\(๐ฅ + 1 = ๐ฅ\) - C.
\(๐ฅ. ๐ฅ = 0\) - D.
\(๐ฅ + \overline {๐ฅ}ย = 1\)
Attempted by 1403 students.
Show answer & explanation
Correct answer: B, C
Solution:
Evaluate each statement for a Boolean variable x:
x ยท 1 = x: True. 1 is the identity for AND, so true AND x equals x.
x + 1 = x: False. 1 represents logical TRUE, and TRUE OR anything is TRUE, so x + 1 = 1, not x.
x ยท x = 0: False. By the idempotent law, x AND x equals x, so x ยท x = x, not 0.
x + not x = 1: True. A variable OR its complement is always TRUE (the complement law).
Therefore, the statements that are FALSE are: x + 1 = x and x ยท x = 0.
A video solution is available for this question โ log in and enroll to watch it.