DIGITAL LOGIC SYSTEM

Boolean Operations

Key Points to Include:


Input A       Input B     AND (A⋅B)     OR (A+B)     NOT A (¬A)

0             1           0               0             1

0             0           0               1             1

1             1           0               1             0

1             1           1               1             0

Boolean Expressions & Truth Tables

Key Points:


Example: Boolean Expression: F = x AND y OR NOT z

X     Y     Z     x∧y     ¬z     F = x∧y + ¬z

0     0     0         0         1         1

0     1     0         0         1         1

1     0     1         0         0         0

1     1     0         1         1         1

Boolean Laws & Simplification

Key Points


Example:


Visuals:

Logic Gates & Circuits

Key Points


Examples:

  1. Boolean Expression: AB + C → Logic Circuit (AND + OR gates)
  2. Boolean Expression: (A+B)⊕(C+D) → XOR + OR + AND gates