Bca-Ist Sem (Computer Architecture) - Unit-1 Notes
Bca-Ist Sem (Computer Architecture) - Unit-1 Notes
Von Neumann architecture was first published by John von Neumann in 1945.
His computer architecture design consists of a Control Unit, Arithmetic and Logic Unit (ALU),
Memory Unit, Registers and Inputs/Outputs.
Von Neumann architecture is based on the stored-program computer concept, where instruction
data and program data are stored in the same memory. This design is still used in
most computers produced today.
The Central Processing Unit (CPU) is the electronic circuit responsible for executing the
instructions of a computer program.
Registers are high speed storage areas in the CPU. All data must be stored in a register before
it can be processed.
MDR Memory Data Register Holds data that is being transferred to or from memory
Current Instruction
CIR Contains the current instruction during processing
Register
The ALU allows arithmetic (add, subtract etc) and logic (AND, OR, NOT etc) operations to be
carried out.
The control unit controls the operation of the computer’s ALU, memory and input/output devices,
telling them how to respond to the program instructions it has just read and interpreted from the
memory unit.
The control unit also provides the timing and control signals required by other computer
components.
Buses
Buses are the means by which data is transmitted from one part of a computer to another,
connecting all major internal components to the CPU and memory.
A standard CPU system bus is comprised of a control bus, data bus and address bus.
Carries the addresses of data (but not the data) between the processor and
Address Bus
memory
Carries data between the processor, the memory unit and the input/output
Data Bus
devices
Carries control signals/commands from the CPU (and status signals from
Control Bus other devices) in order to control and coordinate all the activities within the
computer
Memory Unit
The memory unit consists of RAM, sometimes referred to as primary or main memory. Unlike a
hard drive (secondary memory), this memory is fast and also directly accessible by the CPU.
RAM is split into partitions. Each partition consists of an address and its contents (both
in binary form).
Loading data from permanent memory (hard drive), into the faster and directly accessible
temporary memory (RAM), allows the CPU to operate much quicker.
NUMBER SYSTEM
Number systems are the technique to represent numbers in the computer system architecture,
every value that you are saving or getting into/from computer memory has a defined number
system.
A Binary number system has only two digits that are 0 and 1. Every number (value) represents
with 0 and 1 in this number system. The base of binary number system is 2, because it has only
two digits.
Octal number system has only eight (8) digits from 0 to 7. Every number (value) represents with
0,1,2,3,4,5,6 and 7 in this number system. The base of octal number system is 8, because it has
only 8 digits.
Decimal number system has only ten (10) digits from 0 to 9. Every number (value) represents
with 0,1,2,3,4,5,6, 7,8 and 9 in this number system. The base of decimal number system is 10,
because it has only 10 digits.
A Hexadecimal number system has sixteen (16) alphanumeric values from 0 to 9 and A to F.
Every number (value) represents with 0,1,2,3,4,5,6, 7,8,9,A,B,C,D,E and F in this number
system. The base of hexadecimal number system is 16, because it has 16 alphanumeric values.
Here A is 10, B is 11, C is 12, D is 14, E is 15 and F is 16.
CONVERSIONS
DECIMAL TO OTHER
1. DECIMAL TO BINARY
To convert Number system from Decimal Number System to Any Other Base is quite easy;
you have to follow just two steps:
A) Divide the Number (Decimal Number) by the base of target base system (in which you want
to convert the number: Binary (2), octal (8) and Hexadecimal (16)).
B) Write the remainder from step 1 as a Least Signification Bit (LSB) to Step last as a Most
Significant Bit (MSB).
Binary Number is
(11000000111001)2
2. DECIMAL TO OCTAL
Octal Number is
(30071)8
3. DECIMAL TO HEXADECIMAL
Decimal to Hexadecimal Conversion Result
Example 1
Decimal Number is : (12345)10
Hexadecimal Number is
(3039)16
Example 2
Decimal Number is : (725)10 Hexadecimal Number is
(2D5)16
Convert
10, 11, 12, 13, 14, 15
to its equivalent...
A, B, C, D, E, F
BINARY TO OTHER
A) Multiply the digit with 2(with place value exponent). Eventually add all the multiplication
becomes the Decimal number.
1. BINARY TO DECIMAL
2. BINARY TO OCTAL
An easy way to convert from binary to octal is to group binary digits into sets of three, starting
with the least significant (rightmost) digits.
3. BINARY TO HEXADECIMAL
An equally easy way to convert from binary to hexadecimal is to group binary digits into sets of
four, starting with the least significant (rightmost) digits.
OCTAL TO OTHER
1. OCTAL TO BINARY
Converting from octal to binary is as easy as converting from binary to octal. Simply look up
each octal digit to obtain the equivalent group of three binary digits.
Octal: 0 1 2 3 4 5 6 7
Binary: 000 001 010 011 100 101 110 111
Octal = 3 4 5
Binary = 011 100 101 = 011100101 binary
2. OCTAL TO HEXADECIMAL
When converting from octal to hexadecimal, it is often easier to first convert the octal number
into binary and then from binary into hexadecimal. For example, to convert 345 octal into hex:
Hexadecimal: 0 1 2 3 4 5 6 7
Hexadecimal: 8 9 A B C D E F
Hexadecimal = E 5 = E5 hex
Therefore, through a two-step conversion process, octal 345 equals binary 011100101 equals
hexadecimal E5.
3. OCTAL TO DECIMAL
The conversion can also be performed in the conventional mathematical way, by showing each
digit place as an increasing power of 8.
OR
HEXADECIMAL TO OTHER
1. HEXADECIMAL TO BINARY
Hexadecimal: 0 1 2 3 4 5 6 7
Binary: 0000 0001 0010 0011 0100 0101 0110 0111
Hexadecimal: 8 9 A B C D E F
Binary: 1000 1001 1010 1011 1100 1101 1110 1111
Hexadecimal = A 2 D E
Binary = 1010 0010 1101 1110 = 1010001011011110 binary
2. HEXADECIMAL TO OCTAL
1's complement
The 1's complement of a number is found by changing all 1's to 0's and all 0's to 1's. This is
called as taking complement or 1's complement. Example of 1's Complement is as follows.
Binary Addition
It is a key for binary subtraction, multiplication, division. There are four rules of binary addition.
In fourth case, a binary addition is creating a sum of (1 + 1 = 10) i.e. 0 is written in the given
column and a carry of 1 over to the next column.
Example − Addition
2's complement
The 2's complement of binary number is obtained by adding 1 to the Least Significant Bit (LSB)
of 1's complement of the number.
For example,
0 x 0 = 0
0 x 1 = 0
1 x 0 = 0
1 x 1 = 1, and no carry or borrow bits
For example,
0 0 1 1 1 1 0 1 1 0 = 246(base 10)
Binary Division
For example,
1 borrows
1
1 0 0 1
- 1 1 0
1 1 0
- 1 1 0
1 1
- 0
1 1 1
- 1 0 1
1 0 1
- 1 0 1
Example − Division
18
Notice that the first three rules result in a single bit and in the fourth rule the
addition of two 1s yields a binary two (10). When binary numbers are added, the
last condition creates a sum of 0 in a given column and a carry of 1 over to the
next column to the left, as illustrated in the following examples:
Example: Add 11 + 1
Sol.
Carry Carry
1 1
0 1 1
+ 0 0 1
1 0 0
In the right column, 1 + 1 = 0 with a carry of 1 to the next column to the left. In
the middle column, 1 + 1 + 0 = 0 with a carry of 1 to the next column to the left.
In the left column, 1 + 0 + 0 = 1.
Carry bits
1 + 0 + 0 = 0 1 Sum of 1 with a carry of 0
1 + 1 + 0 = 1 0 Sum of 0 with a carry of 1
1 + 0 + 1 = 1 0 Sum of 0 with a carry of 1
1 + 1 + 1 = 1 1 Sum of 1 with a carry of 1
19
Sol.
Carry Carry
1 1
1 1 1
+ 1 1
1 0 1 0
0-0=0
1-1=0
1-0=1
10 - 1 = 1 0 - 1 with a borrow of 1
When subtracting numbers, you sometimes have to borrow from the next column
to the left. A borrow is required in binary only when you try to subtract a 1 from
a 0. In this case, when a 1 is borrowed from the next column to the left, a 10 is
created in the column being subtracted, and the last of the four basic rules just
listed must be applied.
Sol.
Left column: Middle column:
When a 1 is borrowed, Borrow 1 from next column
a 0 is left, so 0 - 0 = 0. to the left, making a 10 in
this column, then 10 - 1 = 1.
0
1 10 1
- 0 1 1
0 1 0
18/5/2021
20
0 × 0 = 0, 0 × 1 = 0, 1 × 0 = 0, 1 × 1 = 1
Multiplication is performed with binary numbers in the same manner as with
decimal numbers. It involves forming partial products, shifting each successive
partial product left one place, and then adding all the partial products.
Sol.
Example: Perform the following binary divisions: (a) 1102 ÷ 112 (b) 1102 ÷ 102
Sol.
18/5/2021
21
The simplest way to obtain the 1’s complement of a binary number with a
digital circuit is to use parallel inverters (NOT circuits), as shown in Figure
below for an 8-bit binary number.
18/5/2021
22
Example: Find the 2’s complement of 10111000 using the alternative method.
Sol.
Related Problem:
Find the 2’s complement of 11000000.
The 2’s complement of a negative binary number can be realized using inverters
and an adder, as indicated in Figure below. This illustrates how an 8-bit number
can be converted to its 2’s complement by first inverting each bit (taking the 1’s
complement) and then adding 1 to the 1’s complement with an adder circuit.
18/5/2021
23
Sol.
Change each bit in a number to get the 1’s complement. The 1’s complement of
a binary number is found by changing all 1s to 0s and all 0s to 1s, as illustrated
below:
0 0 0 1 0 0 1 1 Binary number
↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓
1 1 1 0 1 1 0 0 1's complement
In the 2’s complement form, a negative number is the 2’s complement of the
corresponding positive number.
18/5/2021
24
Sol.
2 = 0 0 1 0
1 1 0 1 1’s complement
1 1 1 0 = -2
Binary coded decimal (BCD) is a way to express each of the decimal digits with a
binary code. There are only ten code groups in the BCD system, so it is very easy
to convert between decimal and BCD. Because we like to read and write in
decimal, the BCD code provides an excellent interface to binary systems.
Examples of such interfaces are keypad inputs and digital readouts.
18/5/2021
25
Sol.
It is equally easy to determine a decimal number from a BCD number. Start at the
right-most bit and break the code into groups of four bits. Then write the decimal
digit represented by each 4-bit group.
Sol.
18/5/2021
26
2.9.1.2 Applications
Digital clocks, digital thermometers, digital meters, and other devices with seven-
segment displays typically use BCD code to simplify the displaying of decimal
numbers. BCD is not as efficient as straight binary for calculations, but it is
particularly useful if only limited processing is required, such as in a digital
thermometer.
Note that in each case the sum in any 4-bit column does not exceed 9, and the
results are valid BCD numbers.
18/5/2021
27
18/5/2021
28
18/5/2021
29
The single bit change characteristic of the Gray code minimizes the chance for
error.
18/5/2021
30
Example: The conversion of the Gray code word 11011 to binary is as follows:
Sol.
18/5/2021
31
2.10.3 ASCII
ASCII is the abbreviation for American Standard Code for Information
Interchange. Pronounced “askee,” ASCII is a universally accepted alphanumeric
code used in most computers and other electronic equipment. Most computer
keyboards are standardized with ASCII. When you enter a letter, a number, or
control command, the corresponding ASCII code goes into the computer.
ASCII has 128 characters and symbols represented by a 7-bit binary code.
Actually, ASCII can be considered an 8-bit code with the MSB always 0. This
8-bit code is 00 through 7F in hexadecimal. The first 32 ASCII characters are
nongraphic commands that are never printed or displayed and are used only for
control purposes. Examples of the control characters are “null,” “line feed,” “start
of the text,” and “escape.” The other characters are graphic symbols that can be
printed or displayed and include the letters of the alphabet (lowercase and
uppercase), the ten decimal digits, punctuation signs, and other commonly used
symbols.
Info Note: A computer keyboard has a dedicated microprocessor that constantly
scans keyboard circuits to detect when a key has been pressed and released. A
unique scan code is produced by computer software representing that particular
key. The scan code is then converted to an alphanumeric code (ASCII) for use by
the computer.
18/5/2021
32
18/5/2021
33
Example Use ASCII table to determine the binary ASCII codes that are entered
from the computer’s keyboard when the following C language program statement
is typed in. Also express each code in hexadecimal. If (x > 5)
Sol.
The ASCII code for each symbol is found in ASCII table.
18/5/2021
Chapter 2- Boolean Algebra II PUC, MDRPUC, Hassan
Chapter-2
BOOLEAN ALGEBRA
Introduction:
An algebra that deals with binary number system is called “Boolean Algebra”.
It is very power in designing logic circuits used by the processor of computer system.
The logic gates are the building blocks of all the circuit in a computer.
Boolean algebra derives its name from the mathematician George Boole (1815-1864) who is
considered the “Father of symbolic logic”.
Boolean algebra deals with truth table TRUE and FALSE.
It is also called as “Switching Algebra”.
Truth Table:
A truth table is a mathematical table used in logic to computer functional values of logical
expressions.
A truth table is a table whose columns are statements and whose rows are possible scenarios.
Example: Consider the logical expression
Logical Statement: Meals = “Ram prefer rice and roti for the meal”
Y = A AND B (Logical Variables: Y, A, B, Logical Operator AND)
Ram Prefer Rice Ram Prefer Roti Meals
FALSE FALSE FALSE
FALSE TRUE FALSE
TRUE FALSE FALSE
TRUE TRUE TRUE
If result of any logical statement or expression is always TRUE or 1, it is called Tautology and
if the result is always FALSE or 0, it is called Fallacy.
Logical Operators:
There are three logical operator, NOT, OR and AND.
These operators are now used in computer construction known as switching circuits.
NOT Operator:
The Not operator is a unary operator. This operator operates on single variable.
The operation performed by Not operator is called complementation.
The symbol we use for it is bar.
𝐗 means complementation of X
If X=1, X=0 If X=0, X=1
The Truth table and the Venn diagram for the NOT operator is:
X X
1 0
0 1
OR Operator:
The OR operator is a binary operator. This operator operates on two variables.
The operation performed by OR operator is called logical addition.
The symbol we use for it is ‘+’.
Example: X + Y can be read as X OR Y
The Truth table and the Venn diagram for the NOT operator is:
X Y X+Y
0 0 0
0 1 1
1 0 1
1 1 1
AND Operator:
The AND operator is a binary operator. This operator operates on two variables.
The operation performed by AND operator is called logical multiplication.
The symbol we use for it is ‘.’.
Example: X . Y can be read as X AND Y
2|Page Keerthi Kumar H.M
Chapter 2- Boolean Algebra II PUC, MDRPUC, Hassan
The Truth table and the Venn diagram for the NOT operator is:
X Y X.Y
0 0 0
0 1 0
1 0 0
1 1 1
Exercise Problems:
1. Prepare a table of combination for the following Boolean algebra expressions.
a) X Y + XY b) XY Z + X Y Z
2. Verify using truth table for the following Boolean algebra.
a) X + XY = X b) X + Y = X . Y
Boolean Postulates:
The fundamental laws of Boolean algebra are called as the postulates of Boolean algebra.
These postulates for Boolean algebra originate from the three basic logic functions AND, OR
and NOT.
Properties of 0 and 1:
I. If X ≠ 0 then X = 1, and If X ≠1 then X = 0
II. OR relation ( Logical Addition)
a. 0 + 0 = 0 c. 1 + 0 = 1
b. 0 + 1 = 1 d. 1 + 1 = 1
III. AND relation ( Logical Multiplication)
a. 0 . 0 = 0 c. 1 . 0 = 0
b. 0 . 1 = 0 d. 1 . 1 = 1
IV. Complement Rules
a. 0 = 1 b. 1 = 0
Principle of Duality Theorem:
This is very important principle used in Boolean algebra.
Principle of Duality states that;
o Changing each OR sign (+) to an AND sign (.)
o Changing each AND sign (.) to an OR sign (+)
o Replacing each 0 by 1 and each 1 by 0.
The derived relation using duality principle is called dual of original expression.
Example: Take postulate II, related to logical addition:
1) 0 + 0 = 0 2) 0 + 1 = 1 3) 1 + 0 = 1 4) 1 + 1 = 1
2. Now working according to above relations, + is changed to . and 0’s replaced by 1’s
a) 1 . 1 = 1 b) 1 . 0 = 0 c) 0 . 1 = 0 d) 0 . 0 = 0
which are nothing but same as that of postulate III related to logical multiplication.
So 1, 2, 3, 4, are the duals of a, b, c, d.
Example: Find the duals for the following Boolean Expression
Sl No Boolean Expression Duals
1 X+0=X X.1=X
2 X+1=1 X.0=0
3 X.X=0 X+X=1
4 X . ( Y + Z) X + ( Y . Z)
5 X + X.Y = X + Y X.(X + Y) = X.Y
Boolean Theorems:
Boolean Theorem can be proved by substituting all possible values of the variable that are 0
and 1.
This technique of proving theorem is called Proof by perfect induction.
Sl No Theorem Sl No Theorem
Properties of 0 and 1 Associative Law
1 0+X=X 12 X .(Y.Z) = (X.Y).Z
2 1+X=1 13 (X+Y).Z = X+(Y.Z)
3 0.X=0 Distributive Law
4 1.X=X 14 X.(Y+Z) = X.Y + X.Z
Indempotence Law 15 X+Y.Z = (X+Y).(X+Z)
5 X+X=X Absorption Law
6 X.X=X 16 X + XY = X
Complementary Law 17 X(X+Y) = X
7 X+X=1 18 XY + XY = X
8 X.X=0 19 (X+Y)(X+Y)= X
Involution Law 20 X+XY = X+Y
9 X=X 21 X(X+Y) = XY
Commutative Law
10 X+Y=Y+X
11 X.Y=Y.X
Theorem 1: 0+X=X
Proof: If X = 0 Proof: If X = 1 Using Truth Table
then LHS =0+X then LHS =0+X
0 X 0+X
=0+0 =0+1
0 0 0
=0 =1
0 1 1
= RHS = RHS
Theorem 2: 1+X=1
Proof: If X = 0 Proof: If X = 1 Using Truth Table
then LHS =1+X then LHS =1+X
1 X 1+X
=1+0 =1+1
1 0 1
=1 =1
1 1 1
= RHS = RHS
5|Page Keerthi Kumar H.M
Chapter 2- Boolean Algebra II PUC, MDRPUC, Hassan
Theorem 3: 0.X=0
Proof: If X = 0 Proof: If X = 1 Using Truth Table
then LHS =0.X then LHS =0.X
0 X 0.X
=0.0 =0.1
0 0 0
=0 =0
0 1 0
= RHS = RHS
Theorem 4: 1.X=X
Proof: If X = 0 Proof: If X = 1 Using Truth Table
then LHS =1.X then LHS =1.X
1 X 0.X
=1.0 =1.1
1 0 0
=0 =1
1 1 1
= RHS = RHS
Indempotence Law: “This law states that when a variable is combines with itself
using OR or AND operator, the output is the same variable”.
Theorem 5: X+X=X
Proof: If X = 0 Proof: If X = 1 Using Truth Table
then LHS =X+X then LHS =X+X
X X X+X
=0+0 =1+1
0 0 0
=0 =1
1 1 1
= RHS = RHS
Theorem 6: X.X=X
Proof: If X = 1 Using Truth Table
Proof: If X = 0
then LHS =X.X
then LHS =X.X X X X.X
=1.1
=0+0 0 0 0
=1
=0 1 1 1
= RHS
= RHS
Complementary Law: “This law states that when a variable is And ed with its
complement is equal to 0 and a variable is OR ed with its complement is equal to 1”.
Theorem 7: X+𝐗=1
Proof: If X = 0 Proof: If X = 1 Using Truth Table
then LHS =X+X then LHS =X+X
X 𝐗 X+𝐗
=0+1 =1+0
0 1 1
=1 =1
1 0 1
= RHS = RHS
Theorem 8: X.𝐗=0
Proof: If X = 0 Proof: If X = 1 Using Truth Table
then LHS =X.X then LHS =X.X
X 𝐗 X.𝐗
=0.1 =1.0
0 1 0
=0 =0
1 0 0
= RHS = RHS
Involution Law: “This law states that when a variable is inverted twice is equal to
the original variable”.
Theorem 9: 𝐗=X
Proof: If X = 0, then X = 1 Using Truth Table
Take complement again, then X = 0 i.e. X 𝐗
X 𝐗
If X = 1, then X = 0
0 1 0
Take complement again, then X = 1 i.e. X 1 0 1
Commutative Law: “This law states that the order in which two variable are Or ed
or AND ed make no difference”.
Associative Law: “This law allows the removal of brackets from an expression and
regrouping of the variables”.
Distributive Law: “This law allows the multiplying or factoring out an expression”.
Theorem 14: X.(Y+Z) = XY + XZ
Proof: If X = 0 Proof: If X = 1
LHS = X.(Y+Z) LHS = X.(Y+Z)
= 0.(Y+Z) = 1.(Y+Z)
=0 = Y+Z
RHS = XY + XZ RHS = XY + XZ
= 0.Y+0.Z = 1.Y+1.Z
=0 = Y+Z
Therefore LHS = RHS Therefore LHS = RHS
Theorem 15: (𝑋 + 𝑌) (𝑋 + 𝑍) = 𝑋 + 𝑌𝑍
LHS: (𝑋 + 𝑌) (𝑋 + 𝑍) = 𝑋𝑋 + 𝑋𝑍 + 𝑋𝑌 +𝑌𝑍
= 𝑋 + 𝑋𝑍 + 𝑋𝑌 + 𝑌𝑍
= 𝑋(1 + 𝑍) + 𝑋𝑌 + 𝑌𝑍
Important
= 𝑋 + 𝑋𝑌 + 𝑌𝑍
2 Marks
= 𝑋(1 + 𝑌) + 𝑌𝑍
= 𝑋 + 𝑌𝑍
= RHS
DeMorgan’s Theorem:
DeMorgan’s First Theorem:
o Statement: “When the OR sum of two variables is inverted, this is same as inverting
each variable individually and then AND ing these inverted variables”
o This can be written as 𝐗 + 𝐘 = 𝐗. 𝐘
Important
o We can prove the DeMorgan’s First theorem by using Truth Table is 5 Marks
X Y 𝐗 𝐘 X+Y 𝐗 + 𝐘 𝐗. 𝐘
0 0 1 1 0 1 1
0 1 1 0 1 0 0
1 0 0 1 1 0 0
1 1 0 0 1 0 0
o Compare the column 𝐗 + 𝐘 and 𝐗. 𝐘. Both of these are identical. Hence the DeMorgan’s
first theorem is proved.
DeMorgan’s Second Theorem:
o Statement: “When the AND product of two variables is inverted, this is same as
inverting each variable individually and then OR ing these inverted variables”
o This can be written as 𝐗. 𝐘 = 𝐗+𝐘
o We can prove the DeMorgan’s Second theorem by using Truth Table is:
X Y 𝐗 𝐘 X.Y 𝐗. 𝐘 𝐗+𝐘
0 0 1 1 0 1 1
0 1 1 0 0 1 1
1 0 0 1 0 1 1
1 1 0 0 1 0 0
o Compare the column 𝐗. 𝐘 and 𝐗+𝐘. Both of these are identical. Hence the DeMorgan’s
Second theorem is proved.
Application of DeMorgan’s Theorem:
o It is used in simplification of Boolean expression.
o DeMorgan’s law commonly apply to text searching using Boolean operators AND, OR and
NOT.
o It is useful in the implementation of the basic gates operations with alternative gates.
1) 𝐗 𝐘 Z + 𝐗 Y Z + X 𝐘 2) XYZ + XYZW + XZ
=XYZ+XYZ+XY = XYZ (1 + W) + XZ
= XZ (Y + Y) + X Y = XYZ . 1 + XZ
= XZ 1 + X Y = XZ (Y + 1)
= XZ
= XZ + X Y
3) Z(Y+Z)(X+Y+Z)
= (ZY + ZZ) (X+Y+Z) 4) 𝐗 + 𝐗 𝐘 + 𝐘 + 𝐗 + 𝐘 𝐗 𝐘
2) AB + AB + A B
3) B(A+C) + AB + BC + C
Exercise Problems: Solving using DeMorgan’s Theorem
1) (A + C). B + D
2) AB + C)
Minterm:
Minterm is a product of all the literal (with or without bar) within the logic system.
(OR) A single variable or the logical product of several variables. The variables may or may not
be complemented.
A variable may appear either in its normal form (X) or in its complement form (X)
If a variable value is 0 then its complemented otherwise it is in its normal form.
For example, if you have two variables X & Y, there are four possible combination can be formed
with AND operation. Each of these four AND operations represents one of the Boolean
expressions terms and is called a Minterm or a standard product.
X Y Minterm Designation
0 0 XY m0
0 1 XY m1
1 0 XY m2
1 1 XY m3
A symbol for each Minterm is also shown in the table and is of the form mj where j denotes the
decimal equivalent of the binary number of the Minterm designated.
For example, the Minterm 𝐗 𝐘 𝐙 whose combination is 1 1 0 can be written as m6 as decimal
equivalent of 1 1 0 is 6.
A Boolean expression may be represented from a given truth table by forming a Minterm for each
combination of the variables which produces as 1 in the function, and then taking the OR
(Logical Addition) of all those terms.
Assume the truth table
X Y Z Output Minterm Designation
0 0 0 0 XYZ m0
0 0 1 0 XYZ m1
0 1 0 1 XYZ m2 Minterm
0 1 1 1 XYZ Results 1
m3
1 0 0 0 XYZ m4
1 0 1 0 XYZ m5
1 1 0 1 XYZ m6
1 1 1 0 XYZ m7
The Boolean function of truth table is obtained by OR ing (Add) three Minterm i.e. 010 (X Y Z),
011 (X Y Z), 110 (X Y Z). Since each of these Minterm results is 1 (output).
12 | P a g e Keerthi Kumar H.M
Chapter 2- Boolean Algebra II PUC, MDRPUC, Hassan
f (X, Y, Z) = 𝐗 𝐘 𝐙 + 𝐗 Y Z + 𝐗 𝐘 𝐙 = m2 + m3 + m6
The above Boolean function is the sum of three product terms. This type of expression is known as
Sum of Product (SOP) expression.
f (X, Y, Z) = ∑ (2, 3, 6)
Where f is a Boolean function with three variables (X, Y, Z) and it can be read as function f is sum
of 2nd, 3rd, and 6th Minterm.
Sum of Product (SOP): A Sum of product expression is a product term or several product terms
logically added.
What are the fundamental products for each of the input words; ABCD = 0010, ABCD =110,
Maxterm:
Maxterm is a sum of all the literal (with or without bar) within the logic system.
(OR) A single variable or the logical sum of several variables. The variables may or may not be
complemented.
A variable may appear either in its normal form (X) or in its complement form (X)
If a variable value is 1 then its complemented otherwise it is in its normal form.
For example, if you have two variables X & Y, there are four possible combination can be formed
with OR operation. Each of these four OR operations represents one of the Boolean expressions
1 0 0 0 𝐗+Y+Z M4
1 0 1 0 𝐗+ 𝐘+𝐙 M5
1 1 0 1 X+ Y+Z M6
1 1 1 0 𝐗+ 𝐘+ 𝐙 M7
The Boolean function of truth table is obtained by AND ing (Multiply) five Maxterm i.e. 000, 001,
100, 101, 111. Since each of these Maxterm results is 0 (output).
f (X, Y, Z) = (X + Y + Z)(𝐗 + 𝐘 + 𝐙)( 𝐗 + Y + Z)( 𝐗 + 𝐘 + 𝐙)( 𝐗 + 𝐘 + 𝐙)= M0.M1.M4.M5.M7
The above Boolean function is the product of three sum terms. This type of expression is known as
Product of Sum (POS) expression.
f (X, Y, Z) = π (0, 1, 4, 5, 7)
Where f is a Boolean function with three variables (X, Y, Z) and it can be read as function f is
product of 0th, 1st, 4th, 5th and 7th Maxterm.
Product of Sum (POS): A product of sum expression is a sum term or several sum terms
logically multiplied.
Canonical Form:
Boolean expression expressed as sum of Minterms or product of Maxterms are called
canonical forms.
For example, the following expressions are the Minterm canonical form and Maxterm canonical
form of two variables X and Y.
o Minterm Canonical = f(X, Y) = X + X Y + X Y + X Y + X Y
o Maxterm Canonical = f(X, Y) = X + Y X + Y (X + Y)
The Minterm canonical expression is the sum of all Minterms. Each Minterm contain all the
variables.
The maxterm canonical expression is the product of all Maxterms. Each Maxterm contain all the
variables.
Construction of K-Map:
The K-Map is a pictorial representation of a truth table made up of squares.
Each square represents a Minterm or Maxterm.
A K-Map for n variables is made up of 2n squares.
CD CD
CD CD CD CD 00 01 11 10
Important Questions
2 Marks Question:
1. Prove that X + XY = X [March 2015, March 2017]
2. Define Minterm and Maxterm [March 2015, March 2016]
3. State and prove Involution law. [June 2015]
4. State and prove Commutative law using truth table. [June 2016]
5. What is principle of duality? Give Example [June 2015, March 2017]
6. Prove algebraically that (𝑋+𝑌) (𝑋+𝑍)=𝑋+𝑌𝑍 [March 2016]
7. Prove: (X+Y) (X+(Y) = X [June 2016]
8. Prove algebraically that 𝑋+X𝑌=𝑋+𝑌
9. Draw a general K-map for four variables A, B, C and D.
5 Marks Question:
1. Give the Boolean function F (W, X, Y, Z) = ∑ (0, 4, 8, 9, 10, 11, 12, 13, 15). Reduce it by
using K-Map. [March 2015]
2. Reduce F (A, B, C, D) = ∑ (1, 2, 3, 4, 5, 7, 9, 11, 12, 13, 14, 15) using K-Map [June 2015]
3. Using K-Map, Simplify the following expression in four variables
F (A, B, C, D) = m1 + m2 + m4 + m5 + m9 + m11 + m12 + m13. [March 2016]
18 | P a g e Keerthi Kumar H.M