Chapter - 11 Boolean Algebra
Chapter - 11 Boolean Algebra
Chapter - 11 Boolean Algebra
Chapter - 11
Boolean
Algebra
1. Introduction:
George Boole, a nineteenth-century English Mathematician,
developed a system of logical algebra by which reasoning can be
expressed mathematically. In 1854, Boole published a classic book, “An
Investigation of the Laws of thought” on which he founded the
Mathematical theories of Logic and Probabilities,
Boole‟s system of logical algebra, now called Boolean algebra, was
investigated as a tool for analyzing and designing relay switching circuits
by Claude E. Shannon at the Massachusetts institute of Technology in
1938. Shannon, a research assistant in the Electrical Engineering
Department, wrote a thesis entitled “A” symbolic Analysis of Relay and
Switching Circuits. As a result of his work, Boolean algebra is now, used
extensively in the analysis and design of logical circuits. Today Boolean
algebra is the backbone of computer circuit analysis.
2. Two Valued Logical Symbol:
Aristotle made use of a two valued logical system in devising a
method for getting to the truth, given a set of true assumptions. The
symbols that are used to represent the two levels of a two valued logical
system are 1 and 0. The symbol 1 may represent a closed switch, a true
statement, an “on” lamp, a correct action, a high voltage, or many other
things. The symbol “O” may represent on open switch, a false statement,
an “off” lamp, an incorrect action, a low voltage, or many other things.
For the electronics circuits and signals a logic 1 will represent
closed switch, a high voltage, or an “on” lamp, and a logic 0 will represent
an open switch, low voltage, or an “off” lamp. These describe the only two
states that exist in digital logic systems and will be used to represent the in
and out conditions of logic gates.
3. Fundamental Concepts of Boolean Algebra:
Boolean algebra is a logical algebra in which symbols are used to
represent logic levels. Any symbol can be used, however, letters of the
alphabet are generally used. Since the logic levels are generally associated
with the symbols 1 and 0, whatever letters are used as variables that can
take the values of 1 or 0.
254
Math 123 Boolean Algebra
The distributive law for three variables involves, both addition and
multiplication and is written as,
A (B+ C) = A B + AC
Note that while either '+' and „.‟ s can be used freely. The two cannot
be mixed without ambiguity in the absence of further rules.
For example does A . B + C means (A . B) + C or A . (B+ C)? These
two form different values for A = O, B = 1 and C = 1, because we have
(A . B) + C = (0.1) + 1 = 1
and A . (B + C) = 0 . (1 + 1) = 0
which are different. The rule which is used is that „.‟ is always performed
before '+'. Thus X . Y + Z is (X.Y) + Z.
11.6 Logic Gates:
A logic gate is defined as a electronics circuit with two or more
input signals and one output signal. The most basic logic Circuits are OR
gates, AND gates, and invertors or NOT gates. Strictly speaking, invertors
are not logic gates since they have only one input signal; however They
are best introduced at the same time as basic gates and will therefore be
dealt in this section.
256
Math 123 Boolean Algebra
OR Gate:
An OR gate is a logic circuit with two or more input signals and
one output signal. The output signal will be high (logic 1) if any one input
signal is high (logic 1). OR gate performs logical addition
The symbol for the logic OR gate is
X
OR X+Y= Z
Fig. 1
A circuit that will functions as an OR gate can be implemented in
several ways. A mechanical OR gate can be fabricated by connecting two
switches in parallel as shown in figure 2.
X
Fig. 2 Y
V =5v Z
Open Open 0
Open Closed 5V
Closed Open 5V
Closed Closed 5V
Note that for the switch circuit were use diodes and resistors,
Transistors and resistors and other techniques to control the voltage and
resistance.
257
Math 123 Boolean Algebra
X Y Z
0 0 0
0 1 1
1 0 1
1 1 1
X
X.Y
=Z
Y
Fig.3
Fig.4
Truth Table for a switch circuit operation as an
AND gate.
Table – 4
Switch X Switch Y Output Z
Open Open 0
Open Closed 0
Closed Open 0
Closed Closed 5V
259
Math 123 Boolean Algebra
X Y Z
0 0 0
0 1 0
1 0 0
1 1 1
Table 6
Inputs Output
A B C X
0 0 0 0
0 0 1 0
0 1 0 0
0 1 1 0
1 0 0 0
1 0 1 0
1 1 0 0
1 1 1 1
Complementation:
The logical operation of complementary or inverting a variable is
performed in the Boolean Algebra. The purpose of complementation is to
260
Math 123 Boolean Algebra
invert the, input signal, since there are only two values that variables can
assume in two-value logic system, therefore if the input is 1, the output is
0 and if the input is 0 the output is 1. The symbol used to represent
complementation of a variable is a bar (-) above the variable, for example
_
the complementation of A is written as A and is read as “complement of
A” or “A not”.
Since variables can only be equal to 0 or 1, we can say that
_ _
O=1 Or 1 =O
=
Also O=O Or =1
Invertors Or NOT gate:
An inventor is a gate with only one
input signal and one output signal; the output signal is always the
.
Fig.5 (i)
NX X XX
Fig.5 (ii)
Fig.5(ii) (Two invertors in series)
Fig. 5
The circle at the output or input indicates inversion. It also
distinguish between the symbol for the NOT gate or the symbol for an
261
Math 123 Boolean Algebra
5. X . 0 =0
6. X . 1 =X AND operations
7. X.X=X
8. X.X= 0
==
9. X=X Double complement
21. X.Y = X + Y
Proof of Boolean Algebra Rules:
Every rule can be proved by the application of rules and by perfect
Induction.
Rule 15:
(i) This rule does not apply to normal algebra We follow:
(X + Y) (X + Z) = XX + XZ +YX + YZ
=X+ XZ +YX + YZ,
X.X=X
263
Math 123 Boolean Algebra
= X (1 + Z) + YX + YZ
= X + YX + YZ, 1+Z=1
= X (1 + Y) + Y Z–
1+Y=1
= X + YZ
(ii)
Proof by Perfect induction Method:
Truth Table-8 for the R.H.S. (X + Y) (X+ Z)
and for L.H.S. X + YZ
X Y Z X+Y X+Z YZ (X+Y)(X+Z) X+YZ
0 0 0 0 0 0 0 0
0 0 1 0 1 0 0 0
0 1 0 1 0 0 0 0
0 1 1 1 1 0 1 1
1 0 0 1 1 0 1 1
1 0 1 1 1 0 1 1
1 1 0 1 1 1 1 1
1 1 1 1 1 1 1 1
R.H.S. = L.H.S.
Rule .16 X +XZ =X
L.H.S. =X + XZ = X(1 + Z) = X. 1 = X, I+Z=1
= R.H.S.
Rule 17: X(X +Z) =X
L.H.S. = X (X + Z)
=X X +XZ By distributive law
=X +XZ, as X.X = X
=X (1 +Z), As 1 +Z =1
=X.1
=X
L.H.S. = R.H.S.
264
Math 123 Boolean Algebra
= 1 . (X + Y) as X + X = 1
=X+Y
L.H.S. = R.H.S.
(ii) Proof by perfect Induction Method:
L.H.S. = X ( X + Y) =X X +X Y By distributive
law
= 0 +XY as X . X =0
=X Y
L.H.S. = R.H.S.
(ii) Proof by Perfect Induction Method:
X Y X X +Y X ( X + Y) X.Y
0 0 1 1 0 0
0 1 1 1 0 0
1 0 0 0 0 0
1 1 0 1 1 1
L.H.S. = R.H.S.
265
Math 123 Boolean Algebra
11.9 De Morgan’s Theorems:
(i) X+Y=X.Y
(ii) X.Y=X+ Y
Proof: (i) By Perfect induction
Rule 5: X.0=0
If X = 0, Then 0.0 = 1
X= 1, 1 .0 = 1
If = Then
Rule 9: X = X, i.e., the Boolean algebra is involuted.
XY + YZ + Y Z = XY + Z
Solution:
L.H.S. = XY + YZ + Y Z
= XY+Z(Y + Y )
= XY + Z.1
= XY + Z
L.H.S = R.H.S.
Example 3: Find the complement of the expression: X + YZ and
verified the result by perfect induction.
Solution:
X+ YZ = X . YZ
= X .( Y + Z ) by DeMorgan‟s Law
This relation can be verified by perfect induction.
267
Math 123 Boolean Algebra
X Y Z YZ X+YZ
Y + Z_
X Y Z X+YZ X(Y+Z )
0 0 0 1 1 1 0 0 1 1 1
0 0 1 1 1 0 0 0 1 1 1
0 1 0 1 0 1 0 0 1 1 1
0 1 1 1 0 0 1 1 0 0 0
1 0 0 0 1 1 0 1 1 0 0
1 0 1 0 1 0 0 1 1 0 0
1 1 0 0 0 1 0 1 1 0 0
1 1 1 0 0 0 1 1 0 0 0
L.H.S. = R.H.S.
(A+ B ) . ( C + D)
(b) AB +CD= 0
Taking complement on
both sides.
= AB + CD =O
= AB . CD =1
Example 5: (A + B) . (C+D)= 1
Simplify the Boolean
(i) (X +Y) ( X+ Y ) ( X +Z)
expressions:
(ii) XYZ + X Y Z + XY Z
268
Math 123 Boolean Algebra
Solution:
(X + Y) (X + Y ) = XX + X Y + YX + Y Y
= X + X Y + YX +O, as XX =X
as Y Y = 0
= X + X( Y + Y), as Y + Y =1
= X + X . 1, as X .1 = X
=X+X
=X
Now (X + Y) (X + Y ) ( X +Z)
=X( X + Z)
=X X +XZ, by distributive
law
= 0 + XZ
= XZ
(ii) XYZ + X Y Z + XY Z
=XZ (Y + Y ) + XY Z
=XZ + XY Z , as Y + Y =1
=X (Z +Y Z )
= X [(Z + Y). 1] = X (Z + Y)
(a) X = AB C + AB + AB C
(b) X = AB C + AB C + AB C + AB C
(c) AB + A C + B C = AB + A C
(d) (A + B) ( A + C) (B + C) =(A + B) ( A + C)
Solution:
(a) X =ABC + A B + AB C
= ABC + AB C + A B
= AB (C + C ) + A B
=AB + A B as C+C
=1
= (A + A ) B.
= 1. B
=B
(b) X = AB C + AB C + AB C +AB C
= AB C + AB C + AB C as A + A = A
= A B C +(A + A ) B C
= AB C + 1 . B C
=(AB+B )C
= [( A + B ) . ( B + B )] C by the dual of
distribution, rules 15
= ( A + B ) . 1] C
= ( A+ B ) C
270
Math 123 Boolean Algebra
(c) L.H.S. = AB + A C +
BC
= AB + A C + BC
= AB + A C + 1.BC as 1 = A+ A
= AB + A C + (A + A ) BC
= AB (1 + C) + A C (1 + B),
AS 1 + X = 1
=AB + A C
L.H.S. =R.H.S.
=(A A + AC + B A + BC) ( B + C)
=(AC + B A + BC ) (B + C)
=[AC + B( A + C)] (B + C)
=ABC + ACC + BB ( A + C) + BC ( A + C)
=ABC + AC + B ( A + C) + BC ( A + C)
= AC (B + 1) +B ( A + C) (1 + C)
= A A + AC + B ( A + C) as AA = 0
= AC + B( A + C)
= A( A + C) + B( A + C) or by rule 19.
271
Math 123 Boolean Algebra
= (A + B) ( A + C)
L.H.S. = R.H.S.
10. Sum of Product (Minterm):
The Sum of Product means that the products of the variables
that are seperated by a plus sign. The variables can be complemented or
uncomplemented, for-example,
AB + A B + A B + A B + AB C + A B C + A B C
11. Product of sum (Maxterm):
The Product of Sum means that the sum of variables that are
seperated by a multiplication sign. For example,
(A + B) ( A + B) (A + B ) ( A + B ), (A +
B + C)(A + B + C )( A + B + C)
12. Fundamental Products:
The products that produce a high (1) output are
called
Fundamental products. For example, for the two input
variables A and B.
We have four possible combination‟s, which are shown in the table below
and the fundamental product‟s corresponding to each:
1 1 0 1 1 0
AB C A + B +C
1 1 1 0 ABC 1 0
A+ B + C
Product of sum(POS)= (A + B + C) (A + B + C ) ( A + B + C)
(A+B+C)(A+B+C )
Note: See remarks for sum of product and product of sums.
Remarks:
( 1) A sum of product (minterm) is obtained as follows: For
each row of the truth table for which the out put is 1, the
Boolean term is the product of variables that are equal to 1
and the complement of variable that are equal to 0. The
sum of these products is the desired Boolean equation.
(2 A product of sum expression is obtained as follows: each
) row of the truth table for which the output is 0, the Boolean
term is the sum of the variables that are equal 0 plus the
complement of the variables that are equal to 1. The
273
Math 123 Boolean Algebra
product of these sum is the desired Boolean equation.
Example 7: Find the sum-of-products and product
of sums equations from the given truth Table - 16.
Table 16
A B C Output Functional Values
0 0 0 0
0 0 1 1
0 1 0 1
0 1 1 0
1 0 0 1
1 0 1 0
1 1 0 1
1 1 1 0
Sum-of-Product Equation
X = A B C + A B C + A B C + AB C
Product-of-Sums Equation:
Y = (A + B + C)(A + B + C )( A + B + C )( A + B + C )
NOTE:The Boolean expression from the truth table is the sum of product
(minterms)terms for which the output is i.e.,
X = A B C + A B C + A B C + AB C
11.13 NAND and NOR gates:
DeMorgan‟s theorems form two new gates NAND and NOR gates.
These gates are the most popular and most widely used logic gates. Since
any logic circuit can be constructed using only NAND and NOR gates,
they are often referred to as the Universal building blocks.
NAND gates:
This NAND (or not AND) gate is an AND gate followed by a
NOT circuit: The operation of the NAND gate is described by one of
A+ B =A. B
The NOR gate has two or more input signals but only one output
signal. All inputs must be low to get a high output.
A. A
A+B
B. B
A+B =A. A+B =A.
B B
NAND Gate ( c) Standard (d) Logical meaning of NAND Gate
Symbol
Fig. 6(C)(d)
Table 18
A B A+ B A+B
0 0 0 1
0 1 1 0
1 0 1 0
1 1 1 0
275
Math 123 Boolean Algebra
B A.B = A +B
D
C.
D
Fig. 7: NAND and NOR Gates in Two - Level Networks
Fig. 7
11.14 Combination of Gates:
The OR gate and AND gates and invertors can be interconnected to
form gatting or logic networks, in the switching theory, these are also
called combinational networks. The Boolean algebra expression
corresponding to a given Network can be driven by systematically
progressing from input to output on the gates.
and another net work that forms (ii) (X + Y). ( X + Y ) are shown as
276
Math 123 Boolean Algebra
(i)(i XX YY
)
ANDA X.
G Y XX+YY
OR
ANDA XY
G
Or,
X X.
Y Y
AND
OR
X.Y+X Y
X
AND X.Y
Y
(ii) X
Y OR
X+
Y (X+Y)
AN
(X+Y)
X D
Y OR
X+Y
Fig. 8
A
B
X
C Fig.10
Solution:
A
A A. B
AB +C X = AB
+C
B
C Fig.11
Fig.11 Circuit showing solution for 98
example
Solution:
Truth Table 18 for the Circuit in Fig.11
A B C A AB A B +C
AB+C
0 0 0 1 0 0 1
0 0 1 1 1 1 0
0 1 0 1 1 1 0
0 1 1 1 1 1 0
1 0 0 0 0 0 1
1 0 1 0 1 1 0
1 1 0 0 0 0 1
1 1 1 0 1 1 0
Thus the input conditions those produce a logic 1 output are : 0 0 0 , 100, 110
278
Math 123 Boolean Algebra
X = AB + ABC + A B C + A C
(a) Draw the logic diagram for the expression.
(b) Minimize the expression.
(c) Draw the logic diagram for the reduced expression.
Solution: (a) The logic diagram is shown in the Fig. 12.
(b) X = AB + ABC + A B C + A C
= AB (1 +C) + A C ( B + 1)
= AB. 1 + A C .1 = AB + A C
= A(B + C )
(c)
A
X=A(B + C )
C
Fig.13 Minimize diagram for example 9.
279
Math 123 Boolean Algebra
A A
B
B AB
A B
B B A AB
Fig. 16
Fig. 17
The maps showing cell assignments for three and four variables
expression are shown in Fig.18. The sides of the maps may be labeled in
only convenient way. Two cells of a map are considered to be adjacent as
long as their respective addressed differed by no more than one variable.
B C CD
B C C D
BC CD
C D
B C
(a) (b)
Fig. 18
After learning how to draw a Karnaugh map, the next step is to
plot the given expression. The given expression must be in the sum-of-
BC 1
BC 1 1
BC 1
Fig.19
To plot the expression, we start by identifying all cells that are
common to AB by placing 1 in these cells. If we repeat this procedure for
X = A + BC
282
Math 123 Boolean Algebra
Algebraic Proof:
The sum-of-products equation corresponding to larger group is
Y = A B C + A B C +AB C + ABC
= A ( B C + B C + B C + BC)
= A{ B ( C + C) + B ( C + C)
= A( B + B)
=A
Z = A BC + ABC
=( A + A) BC = BC
Example 11: Minimize the following Boolean expression by use of the
Karnaugh map.
X = B C + B D + AB + AD + AC + C D
Solution:
The number of cells are N = 24 = 16
To plot the expression, place 1 in the cells common to each term in
the expression: Fig: 20
A B AB AB AB
CD 1
1
CD
1
1
CD 1
1
CD 1
Fig.20
1 1 1 1
283
Math 123 Boolean Algebra
X = B C + AD + C D
NOTE: On four-variable maps, l‟s is cells on opposite sides of the map
may be enclosed since the map is continuous, like a cylinder, in
both the horizontal and vertical planes
Example 12: Minimize the following Boolean expression by use of
the Karnaugh map:-
X = A C D + A B C D + A B D+ A B CD
Solution:
A B AB AB A
Fig.21 shows the
Karnaugh map for the B
CD
expression.
The minimized expression is
CD 1
1
X=BD+C
CD 1 1 1 1
D
CD 1
1 1
Fig.21
11.17 Non-Unique Group:
Occasionally, we find a Karnaugh map for which more than one set
of groups exists. This situation is illustrated in Fig.19. One can readily see
that both maps yield Boolean expression with three two-variable
minterms. These equivalent expressions, described the same function;
however, they differ in the way in which variables are combined. Boolean
functions that can be described by two or more equivalent minimized
Boolean expressions are referred to as non-unique. On the other hand,
functions that described by a single minimized Boolean expressions are
referred as unique.
284
Math 123 Boolean Algebra
A A A A
B 1 B 1
C C
1
BC 1 BC 1
1
B B
1
C C
1
B 1 1 B 1 1
C C
(a)
Fig. 19: (b)
Boolean expressions from non-unique groups.
(a) X1 =AB + A C + B C , (b) X2 =A C + BC + A B
Example 12: Read out some of the possible Boolean expressions for
the Karnaugh map shown in Fig. 20.
A B AB AB A B
CD 1 1
CD 1 1
CD 1 1 1
1 1 1
C
Fig.20
D
Solution: Fig.20 shows several possible combinations of enclosure
and the resulting Boolean expression.
285
Math 123 Boolean Algebra
A B AB AB AB
A B AB AB AB
AB AB AB A B 1 1
C CD 1 1
CD
D 1 1 C 1 1
CD 1 1
C D
D 1 1
C 1 1 1 1
CD 1 1
C 1 1 D
D 1 1 1 1 1 1
C CD 1 1 1
C 1 1 1 D
D (b) (c)
1
(a)
(a) X = B C + A C + B C + C D
(b) X = B C + B C + A B + C D
(c) X = B C + A C + B C + B D
X = A B C + A B C+ A B C
Plot this expression on a Karnaugh map and reduce the expression
A A A
if the term A B C is a don't care. A
Solution: BC
BC
BC BC
BC BC
BC BC
(a)
Fig.22 (a) Karnaugh map for given (b) (b)
Karnaugh
map, illustrating
expression the use of don‟t care
The expression corresponding to the map in Fig. 22 (b) is :
states.
X= A B + AC+ C
put are A B C , AB C and ABC. Enter these 1‟s on the Karnaugh map.
A B C Output
A A
Y
0 0 0 0 BC 1
0 0 1 0
Karanaugh
0 1 0 1 BC map for the
0 1 1 0 TruthTable
1 0 0 0 BC 1
1 0 1 0
1 1 0 1 1 1
BC
1 1 1 1
Fig.2
3
287
Math 123 Boolean Algebra
X = A B C + AB C + ABC
To minimize this Boolean expression from the Karnaugh map, we
find that
X=BC+A B
Exercise 11
Q.1: Prepare a truth table for the following Boolean expression:
(v) AB + A B
Q.2: Simplifying the following with the help of Boolean algebra
Rules:
(iii) A BC + A B C + ABC + AB C + A B C
(iv) AB C + AB C + AB C + AB C
Q.3: Minimize the following expressions:
(b) X= (A+B) ( C )
(c) X=(A B C + B C )
(d) X = (A B C + ABC ) C
Q.4: Convert the following expression to sum-of-product form.
288
Math 123 Boolean Algebra
(i) (A + B)( B + C) ( A + C)
(ii) (A + C) (A B +AC)( A B + C )
Q.5: Convert the following expression to product-of-sum form:
X = A B C + A B C + AB
Q.7: Draw a logic circuit using only NAND gates for which output
expression is X = A C + B C.
Q.8: Draw a logic circuit using only NOR gates for which the output
expression is X = A C + B C.
Q.9: Prove the following by use of a truth table:
A B A + A BC + A B C = A B + A C
Q.10: Draw the circuit diagrams of the following:
(i) F = X Y Z + XY Z + X Y Z
(ii) F = AB +(A B + A B)
Q.11: Use the Karnaugh map to minimize the following expressions.
(i) X = AB + A B + B C + A C
(ii) X = A C + B C + B C + AC
(iii) X = ABC + A BC + A B C + A B C
(iv) X = A B C + ABC + A B C + A B C + AB C +A B C+ A B C
Q.12: For the given truth tables, find out logical expressions using
Boolean algebra and and minimize these expressions by
Boolean Rules or Karnaugh map techniques:
289
Math 123 Boolean Algebra
Truth Table 20 Truth Table 21
Output Output
(i) A B C (ii) A B C D
Y Y
0 0 0 0 0 0 0 0 0
0 0 1 0 0 0 0 1 0
0 1 0 0 0 0 1 0 1
0 1 1 0 0 0 1 1 0
1 0 0 0 0 1 0 0 0
1 0 1 0 0 1 0 1 0
1 1 0 1 0 1 1 0 1
1 1 1 1 0 1 1 1 1
1 0 0 0 0
1 0 0 1 0
1 0 1 0 0
1 0 1 1 0
1 1 0 0 0
1 1 0 1 0
1 1 1 0 1
1 1 1 1 0
Answers:11
Q.1(i)
X Y Z XYZ
X Y Z XYZ XYZ + X Y Z
0 0 0 1 1 1 0 1 1
0 0 1 1 1 0 0 0 0
0 1 0 1 0 1 0 0 0
0 1 1 1 0 0 0 0 0
1 0 0 0 1 1 0 0 0
1 0 1 0 1 0 0 0 0
1 1 0 0 0 1 0 0 0
1 1 1 0 0 0 1 0 1
(ii)
A B C ABC
A B C ABC ABC ABC + A B C + A B C
0 0 0 1 1 1 0 0 1 1
0 0 1 1 1 0 0 0 0 0
0 1 0 1 0 1 0 0 0 0
0 1 1 1 0 0 0 0 0 0
1 0 0 0 1 1 0 1 0 1
1 0 1 0 1 0 0 0 0 0
1 1 0 0 0 1 0 0 0 0
1 1 1 0 0 0 1 0 0 1
290
Math 123 Boolean Algebra
(iii)
A B C D A +D B+C (A + B)(B + C)
0 0 0 0 0 0 0
0 0 0 1 1 0 0
0 0 1 0 0 1 0
0 0 1 1 1 1 1
0 1 0 0 0 1 0
0 1 0 1 1 1 1
0 1 1 0 0 1 0
0 1 1 1 1 1 0
1 0 0 0 1 0 1
1 0 0 1 1 0 1
1 0 1 0 1 1 1
1 0 1 1 1 1 1
1 1 0 0 1 1 1
1 1 0 1 1 1 1
1 1 1 0 1 1 1
1 1 1 1 1 1 1
(iv)
A+
A B C A+B A+C
A
B B (A+B)(A+C)( A + B )
0 0 0 1 1 0 0 1 0
0 0 1 1 1 0 1 1 0
0 1 0 1 0 1 0 1 0
0 1 1 1 0 1 1 1 1
1 0 0 0 1 1 1 1 1
1 0 1 0 1 1 1 1 1
1 1 0 0 0 1 1 0 0
1 1 1 0 0 1 1 0 0
(v)
A B AB
A B A B AB+ A B
0 0 1 1 0 1 1
0 1 1 0 0 0 0
1 0 0 1 0 0 0
1 1 0 0 1 0 1
(iv) B C +AC+AB
A B C
A A B A .C A+ A B + A C
0 0 0 1 0 0 0
0 0 1 1 0 1 1
0 1 0 1 1 0 1
0 1 1 1 1 1 1
1 0 0 0 0 0 1
1 0 1 0 0 0 1
1 1 0 0 0 0 1
1 1 1 0 0 0 1
Hence product-of-sum is (A + B + C)
A B C
B AB
C
A
B AB ABC + ABC
C C +AB
AB
Fig.Circuit
Q.7:
A
AC
C
(A C . B C) =AC+BC
C
BC
B
Q.7: Fig..
Q.8:
A A
C
AC
A A
Q.9: AC+B C
C C (A C . B C)
BC
C
Q.8: Fig..
293
Math 123 Boolean Algebra
Truth Table
_
A B C A B C AB A C A BC AB+AC
AB C +
AB C A B A BC + A B C
C
0 0 0 1 1 1 0 0 0 0 0 0 0
0 0 1 1 1 0 0 1 0 0 1 1 1
0 1 0 1 0 1 1 0 1 0 0 1 1
0 1 1 1 0 0 1 1 0 1 0 1 1
1 0 0 0 1 1 0 0 0 0 0 0 0
1 0 1 0 1 0 0 0 0 0 0 0 0
1 1 0 0 0 1 0 0 0 0 0 0 0
1 1 1 0 0 0 0 0 0 0 0 0 0
L.H.S. = R.H.S.
Q.10
X Y
Z
Y XY Z
XY
Z
XYZ + XYZ +XYZ
X
XY Z
(ii)
A
B A
B
A B+(AB+ AB)
A
B
B
A
A (AB+
B AB)
BC 1 1 BC 1 1
BC 1 1 BC 1 1
BC 1 1 BC 1 1
(a) (b)
294
Math 123 Boolean Algebra
(b) X=1
A A A A
(iii (iv
1 1
) B ) B
C C 1
1 1 1
B
C B
1 1 1
BC CB
B B
C 1 1
C C
(c (d
) )
(c) X =C (d) X =A + B + C
A A
(v
)
B 1 1
C
1
BC
1 1
BC
B 1
C
(e)
(a) X = A + B + C
Q.12: Boolean expressions by Truth
table are:
(i) X = A B C + ABC
295
Math 123 Boolean Algebra
(a) (b)
(a) X = AB (b) X = A C D + A BC + BC D
Are the logical minimized expressions after applying Karnaugh map.
296
Math 123 Boolean Algebra
Short Questions
Q.1: Define Logic Gates.
Q.2: Define following gates and draw logic circuit diagram
(a) OR Gate (b) AND Gate
(c) NOT Gate (d) NAND Gate
(e) NOR Gate
Q.3: Prove by Boolean Algebra X + X Z– =
Q.4: Prove by Boolean Algebra rules
X X (X + Y) = X
Q.7:
XY + YZ–+ Y Z– = XY + Z–
Q.8: X ( X + Y) = XY
Q.9:
X + Y Z– = ( X +Y) ( X + Z– )
Q.10:
Construct a logic diagram for expression A. B + C
–– –– ––
Q.11: Construct a logic diagram for expression AB = A . B
W
Z
297
Math 123 Boolean Algebra
B
Q.20: Obtain the logic expression for logic diagram.
x
z
C
Q.23: Obtain the logic expression for logic diagram.
A
D
B
298
Math 123 Boolean Algebra
Answers
Q10. A
A.B
B A.B+C
Q11.
A
B A+B = A-B
A
Q12. A.B
B
A.B + B.C
B.C
C
Q13. A+ C
A
B
B.(A+C)
C
299
Math 123 Boolean Algebra
Q14.
X Y X +Y Y +X
0 0 0 0
0 1 1 1
1 0 1 1
1 1 1 1
Q15.
X Y XY YX
0 0 0 0
0 1 0 0
1 0 0 0
1 1 1 1
Q16.
X Y X +Y X(X+Y) X
0 0 0 0 0
0 1 1 0 0
1 0 1 1 1
1 1 1 1 1
Q17.
X X
Z– XZ– X+XZ–
0 0 0 0 0
0 1 0 0 0
1 0 0 1 1
1 1 1 1 1
300
Math 123 Boolean Algebra
Q18. X x+w=x.
w
W x.w+z
Z
Expression = x.w+z
Q19. A A .B = A + A+
B B
B
Expression = A + B = A .B
Q20.
x
xz
z xz +y
z
yz
y
Q21. Expression = x z + y z
x x
x+y
y
y
Expression = x+y
A AB
Q22.
AB+C
B
C D
CD
Q23.
D AB+C
D
A
A A
AB
AB+A
B B
B
AB+A
B
301
Math 123 Boolean Algebra
ANSWERS
1. c 2. d 3. b 4. b 5. b
6. a 7. a 8. a 9. a 10. b
<><><>
302
Math 123 Boolean Algebra