Boolean Algebra Notes (2)
Boolean Algebra Notes (2)
1. Basic Definitions
Boolean Variable: A variable that takes only two values: 1 (True) or 0 (False).
Boolean Operations:
AND (⋅): Output is 1 if all inputs are 1.
OR (+): Output is 1 if at least one input is 1.
NOT (overline or complement): Inverts the input (1 → 0, 0 → 1).
4. DeMorgan's Theorems
1. First Theorem: (A ⋅ B)' = A' + B'
2. Second Theorem: (A + B)' = A' ⋅ B'
9. Important Properties
Absorption Law:
A+A⋅B=A
A ⋅ (A + B) = A
Consensus Theorem:
A ⋅ B + A' ⋅ C + B ⋅ C = A ⋅ B + A' ⋅ C
Involution Law:
A'' = A
0 0 0 0 1
0 1 1 0 1
1 0 1 0 0
1 1 1 1 0