Module 1 Introduction to Disgital System
Module 1 Introduction to Disgital System
AND Operation
• This operation is represented by a dot or by the absence of an operator.
• For example, x⋅y=z or xy=z is read “x AND y is equal to z.”
• The logical operation AND is interpreted to mean that z=1 if and only if x=1 and y=1; otherwise z=0.
(Remember that x, y, and z are binary variables and can be equal either to 1 or 0, and nothing else.)
• The result of the operation x⋅y is z.
NOT Operation
• This operation is represented by a prime (sometimes by an overbar).
• For example, x′=z (or x¯=z) is read “not x is equal to z,” meaning that z is what x is not.
• In other words, if x=1, then z=0, but if x=0, then z=1.
• The NOT operation is also referred to as the complement operation, since it changes a 1 to 0 and a 0 to 1, that
is, the result of complementing 1 is 0, and vice versa.
Note that theorem 1(b) is the dual of theorem 1(a) and that each step of the proof in part (b) is the dual of its counterpart in part (a).
1. Using the basic theorems and postulates of Boolean algebra, simplify the following Boolean
expression: F = x ′ y ′ z + x y z + x ′ y z + x y ′ z .
F= (x ′ +x) y ′ z + (x ′ +x) y z
F= y ′ z + y z
F=(y ′+ y) z
F= z
Answer: F = z
X Y Z X′ Y′ x′y′ x′y′z
0 0 0 1 1 1 0
0 0 1 1 1 1 1
0 1 0 1 0 0 0
0 1 1 1 0 0 0
1 0 0 0 1 0 0
1 0 1 0 1 0 0
1 1 0 0 0 0 0
1 1 1 0 0 0 0
0 0 0 1 1
0 0 1 1 0
0 1 0 1 0
0 1 1 1 0
1 0 0 1 0
1 0 1 1 0
1 1 0 1 0
1 1 1 0 0
0 0 0 1
0 1 1 0
1 0 1 0
1 1 0 1