A comprehensive guide to Boolean algebra, covering fundamental concepts, logic gates, truth tables, and problem-solving techniques.
0
(False) and 1
(True). The fundamental operations are:
⋅
or ∧
)1
only if both inputs are 1
.
+
or ∨
)1
if at least one input is 1
.
¬
or !
)⊼
)⊽
)⊕
)1
if the inputs are different.
⊙
)1
if the inputs are the same.
A + 0 = A
, A ⋅ 1 = A
A + 1 = 1
, A ⋅ 0 = 0
A + A = A
, A ⋅ A = A
A + ¬A = 1
, A ⋅ ¬A = 0
A + B = B + A
, A ⋅ B = B ⋅ A
(A + B) + C = A + (B + C)
, (A ⋅ B) ⋅ C = A ⋅ (B ⋅ C)
A ⋅ (B + C) = (A ⋅ B) + (A ⋅ C)
¬(A ⋅ B) = ¬A + ¬B
¬(A + B) = ¬A ⋅ ¬B
A ⋅ (A + B)
.
Solution:
Using the Absorption Law:
1
only when exactly one of two switches is ON.
Solution:
Use the XOR gate (A ⊕ B
).