DLD Presentation 1
DLD Presentation 1
.
R’s complement And (R-1)’s Complement
R’s Complement
• OR
• AND
• NAND
• NOR
• X-OR
• X-NOR
• NOT
6
AND, OR, NOT Operation
Click to edit Master title style
If A=1 then A’=0 and vice It gives high logic if either one If A=1 then A'=0 and vice
versa of the inputs is high . versa.
7
Click to edit Master title style
8
EX-OR, EX-NOR
Click to edit Master title style
Operation
It is also called as odd ones counter , it gives high output If gives the output high when the no of ones in
when no of ones in the in are odd in number. input are even.
9
Truth Table For AND Gate
the output Q is true if EITHER input A “OR” input B is true, giving the Boolean
Expression of: ( Q = A or B ).
Boolean Expression for OR gate can be written as: A+B
Truth Table For NOT Gate
the output Q is ONLY true when the input is “NOT” true, the
output is the inverse or complement of the input giving the
Boolean Expression of: ( Q = NOT A ).
Boolean Expression for NOT gate can be written as: A'.
Truth Table For NAND Gate
the output Q is true if BOTH input A and input B are the same, either
true or false, giving the Boolean Expression of: ( Q = (A and B) or (NOT A
and NOT B) ).
Boolean Expression for NOR gate can be written as: (A.B)+(A'.B').
Click to edit Master title style
17
Click to
Basic Postulates:
edit Master title style
• The common postulates used to formulate algebraic structures are:
1. Closure: w.r.t to operator + and .
2. Associative law: This law allows the removal of brackets from an
expression and regrouping of the variables.
A + (B + C) = (A + B) + C = A + B + C (OR Associate Law)
A(B.C) = (A.B)C = A . B . C (AND Associate Law)
3. Commutative law : The order of application of two separate terms is not
important for eg. A . B = B . A & A + B = B + A .
4. Identity element: A + 0 = A A. 1=A
5. Idempotent Law – An input that is AND‘ed or OR´ed with itself is equal to
that input. A + A = A
A.A=A
6. Distributive Law – This law permits the multiplying or factoring out of an
expression. A(B + C) = A.B + A.C (OR Distributive Law)A + (B.C) = (A +
B).(A + C) (AND Distributive Law)
18 18
Click to edit Master title style
19 19
Click to edit
Boolean Functions
Master title style
For example,
F1= x y z'
F2 = x + y'z
F3 = x' y' z + x' y z + x y'
F4 = x y' + x' z
20 20
Click to edit
Boolean Functions
Master title style
21 21
22
So, F can be expressed as sum of
product
F=(X+Y+Z)(X+Y’+Z)(X’+Y+Z)(X’+Y+Z’)
Group 9