Sie sind auf Seite 1von 35

Digital Electronics

Presentation on
Lecture 6 : Canonical and Standard forms
revisited
Presented By :
Parag Parandkar

Acknowledgement
The presenter would like to thanks and
acknowledge for the adoption of slides from
Logic and Computer Design fundamentals 4th Edition
by Charles Kime and Thomas for 2008 Pearson
Education limited.

The copyrights belongs to the original author.


The presentation is being used for educational
and non commercial purpose.

Contents
Logic gate symbols and behavior revisited
Gate Delay
Review of Boolean Algebra
Min Terms and Max terms revisited
Observations
Converting to Sum of Min terms form
Converting to product of Max terms form
Conversion between canonical forms
Standard form

Binary Logic and Gates


Binary variables take on one of two values.
Logical operators operate on binary values and
binary variables.
Basic logical operators are the logic functions
AND, OR and NOT.
Logic gates implement logic functions.
Boolean Algebra: a useful mathematical system
for specifying and transforming logic functions.
We study Boolean algebra as a foundation for
designing and analyzing digital systems!
Boolean Algebra and Logic Gates 4

Logic Gate Symbols and Behavior


Logic gates have special symbols:
X

X
Z =

X Y

Z =

X +

Z =

NOT gate or

OR gate

AND gate

And waveform behavior in time as follows:

(AND)

(OR)

(NOT)

X Y

X +

Boolean Algebra and Logic Gates 5

inverter

Gate Delay
In actual physical gates, if an input changes that
causes the output to change, the output change
does not occur instantaneously.
The delay between an input change and the
output change is the gate delay denoted by tG:
1

Input

tG

tG
Output

tG = 0.3 ns

1
0
0

0.5

1.5

Time (ns)
Boolean Algebra and Logic Gates 6

Boolean Algebra

Invented by George Boole in 1854


An algebraic structure defined by a set B = {0, 1}, together with two binary operators (+ and ) and a unary operator (
)

1.

+0

3.

+ 1

2.

= 1

4.

.
.

= X

= 0

5.

X+X

= X

6.

X X

7.

X+X

= 1

8.

X X

9.

X=X

Identity element

= X

Idempotence

= 0

Complement
Involution

10.

X+Y

12.

(X + Y)

14.

X(Y +

Z)

16.

X+Y

.
= X Y

Y+X
+ Z
=

X + (Y

XY + XZ

+ Z)

11.

XY

13.

(XY)

15.

17.

= YX
Z
+ YZ

.
X Y

Commutative
X(Y

=
=

Associative

Z)

(X + Y)

(X + Z)

Distributive
DeMorgan

X+Y

Boolean Algebra and Logic Gates 7

Some Properties of Boolean Algebra

Boolean Algebra is defined in general by a set B that can have more than two values

A two-valued Boolean algebra is also know as Switching Algebra. The Boolean set B is restricted to
0 and 1. Switching circuits can be represented by this algebra.

The dual of an algebraic expression is obtained by interchanging + and and interchanging 0s


and 1s.

The identities appear in dual pairs. When there is only one identity on a line the identity is selfdual, i. e., the dual expression = the original expression.

Sometimes, the dot symbol (AND operator) is not written when the meaning is clear

Boolean Algebra and Logic Gates 8

Dual of a Boolean Expression


Example: F = (A + C) B + 0
dual F = (A C + B) 1 = A C + B
Example: G = X Y + (W + Z)
dual G = (X+Y) (W Z) = (X+Y) (W+Z)
Example: H = A B + A C + B C
dual H = (A+B) (A+C) (B+C)
Unless it happens to be self-dual, the dual of an
expression does not equal the expression itself
Are any of these functions self-dual?
H is self-dual
(A+B)(A+C)(B+C)=(A+BC)(B+C)=AB+AC+BC
Boolean Algebra and Logic Gates 9

Complementing Functions
Use DeMorgan's Theorem:
1.
2.

Interchange AND and OR operators


Complement each constant and literal

Example: Complement F =

F = (x + y + z)(x + y + z)

xy z x y z

Example: Complement G = (a + bc)d + e

G = (a (b + c) + d) e
Boolean Algebra and Logic Gates 10

Next Canonical Forms


Minterms and Maxterms
Sum-of-Minterm (SOM) Canonical Form
Product-of-Maxterm (POM) Canonical Form
Representation of Complements of Functions
Conversions between Representations

Boolean Algebra and Logic Gates 11

Minterms
Minterms are AND terms with every variable
present in either true or complemented form.
Given that each binary variable may appear
normal (e.g., x) or complemented (e.g., x ), there
are 2n minterms for n variables.
Example: Two variables (X and Y) produce
2 x 2 = 4 combinations:
(both normal)
Y (X normal, Y complemented)
Y (X complemented, Y normal)
Y (both complemented)

XY
X
X
X

Thus there are four minterms of two variables.


Boolean Algebra and Logic Gates 12

Maxterms
Maxterms are OR terms with every variable in
true or complemented form.
Given that each binary variable may appear
normal (e.g., x) or complemented (e.g., x), there
are 2n maxterms for n variables.
Example: Two variables (X and Y) produce
2 x 2 = 4 combinations:
X Y (both normal)
X Y (x normal, y complemented)
X Y (x complemented, y normal)
X Y (both complemented)
Boolean Algebra and Logic Gates 13

Minterms & Maxterms for 2 variables


Two variable minterms and maxterms.
x

Index

Minterm

Maxterm

m0 = x y

M0 = x + y

m1 = x y

M1 = x + y

m2 = x y

M2 = x + y

1 1
3
m3 = x y
M3 = x + y
The minterm mi should evaluate to 1 for each
combination of x and y.
The maxterm is the complement of the minterm
Boolean Algebra and Logic Gates 14

Minterms & Maxterms for 3 variables


x

Index

Minterm

Maxterm

m0 = x y z

M0 = x + y + z

m1 = x y z

M1 = x + y + z

m2 = x y z

M2 = x + y + z

m3 = x y z

M3 = x + y + z

m4 = x y z

M4 = x + y + z

m5 = x y z

M5 = x + y + z

m6 = x y z

M6 = x + y + z

m7 = x y z

M7 = x + y + z

Maxterm Mi is the complement of minterm mi


Mi = mi and mi = Mi
Boolean Algebra and Logic Gates 15

Purpose of the Index


Minterms and Maxterms are designated with an index
The index number corresponds to a binary pattern
The index for the minterm or maxterm, expressed as a
binary number, is used to determine whether the variable
is shown in the true or complemented form
For Minterms:
1 means the variable is Not Complemented and
0 means the variable is Complemented.

For Maxterms:
0 means the variable is Not Complemented and
1 means the variable is Complemented.

Boolean Algebra and Logic Gates 16

Standard Order
All variables should be present in a minterm or
maxterm and should be listed in the same order
(usually alphabetically)
Example: For variables a, b, c:
Maxterms (a + b + c), (a + b + c) are in standard order
However, (b + a + c) is NOT in standard order
(a + c) does NOT contain all variables
Minterms (a b c) and (a b c) are in standard order
However, (b a c) is not in standard order
(a c) does not contain all variables
Boolean Algebra and Logic Gates 17

Sum-of-Minterm (SOM)
Sum-Of-Minterm (SOM) canonical form:
Sum of minterms of entries that evaluate to 1
x

0
0
0
0
1
1
1
1

0
0
1
1
0
0
1
1

0
1
0
1
0
1
0
1

0
1
0
0
0
0
1
1

Minterm
m1 = x y z
Focus on the 1
entries

m6 = x y z
m7 = x y z

F = m1 + m6 + m7 = (1, 6, 7) = x y z + x y z + x y z
Boolean Algebra and Logic Gates 18

Sum-of-Minterm Examples
F(a, b, c, d) = (2, 3, 6, 10, 11)
F(a, b, c, d) = m2 + m3 + m6 + m10 + m11
abcd

+abcd

+abcd

+abcd

+abcd

G(a, b, c, d) = (0, 1, 12, 15)


G(a, b, c, d) = m0 + m1 + m12 + m15
abcd

+abcd

+abcd

+abcd

Boolean Algebra and Logic Gates 19

Product-of-Maxterm (POM)
Product-Of-Maxterm (POM) canonical form:
Product of maxterms of entries that evaluate to 0
x
y z
F
Maxterm
0
0
0
0
1
1
1
1

0
0
1
1
0
0
1
1

0
1
0
1
0
1
0
1

1
1
0
1
0
1
0
1

M2 = (x + y + z)
M4 = (x + y + z)

Focus on the 0
entries

M6 = (x + y + z)

F = M2M4M6 = (2, 4, 6) = (x+y+z) (x+y+z) (x+y+z)


Boolean Algebra and Logic Gates 20

Product-of-Maxterm Examples
F(a, b, c, d) = (1, 3, 6, 11)
F(a, b, c, d) = M1 M3 M6 M11
(a+b+c+d)

(a+b+c+d)

(a+b+c+d)

(a+b+c+d)

G(a, b, c, d) = (0, 4, 12, 15)


G(a, b, c, d) = M0 M4 M12 M15
(a+b+c+d)

(a+b+c+d)

(a+b+c+d)

(a+b+c+d)

Boolean Algebra and Logic Gates 21

Observations
We can implement any function by "ORing" the minterms
corresponding to the 1 entries in the function table. A
minterm evaluates to 1 for its corresponding entry.
We can implement any function by "ANDing" the maxterms
corresponding to 0 entries in the function table. A maxterm
evaluates to 0 for its corresponding entry.
The same Boolean function can be expressed in two
canonical ways: Sum-of-Minterms (SOM) and Product-ofMaxterms (POM).
If a Boolean function has fewer 1 entries then the SOM
canonical form will contain fewer literals than POM.
However, if it has fewer 0 entries then the POM form will
have fewer literals than SOM.
Boolean Algebra and Logic Gates 22

Converting to Sum-of-Minterms Form


A function that is not in the Sum-of-Minterms form can
be converted to that form by means of a truth table
Consider F = y + x z
x y z

Minterm

0
0
0
0
1
1
1
1

1
1
1
0
1
1
0
0

m0 = x y z
m1 = x y z
m2 = x y z

0
0
1
1
0
0
1
1

0
1
0
1
0
1
0
1

F = (0, 1, 2, 4, 5) =
m0 + m1 + m2 + m4 + m5 =
xyz+xyz+xyz+

m4 = x y z
m5 = x y z

xyz+xyz

Boolean Algebra and Logic Gates 23

Converting to Product-of-Maxterms Form


A function that is not in the Product-of-Minterms form
can be converted to that form by means of a truth table
Consider again: F = y + x z
x y z

0
0
0
0
1
1
1
1

1
1
1
0
1
1
0
0

0
0
1
1
0
0
1
1

0
1
0
1
0
1
0
1

Minterm

F = (3, 6, 7) =
M3 M6 M7 =

M3 = (x+y+z)

(x+y+z) (x+y+z) (x+y+z)

M6 = (x+y+z)
M7 = (x+y+z)
Boolean Algebra and Logic Gates 24

Conversions Between Canonical Forms


x

0
0
0
0
1
1
1
1

0
0
1
1
0
0
1
1

0
1
0
1
0
1
0
1

0
1
1
1
0
1
0
1

Minterm

Maxterm
M0 = (x + y + z)

m1 = x y z
m2 = x y z
m3 = x y z
M4 = (x + y + z)
m5 = x y z
M6 = (x + y + z)
m7 = x y z

F = m1+m2+m3+m5+m7 = (1, 2, 3, 5, 7) =
xyz+xyz+xyz+xyz+xyz
F = M0 M4 M6 = (0, 4, 6) = (x+y+z)(x+y+z)(x+y+z)
Boolean Algebra and Logic Gates 25

Algebraic Conversion to Sum-of-Minterms


Expand all terms first to explicitly list all minterms
AND any term missing a variable v with (v + v)
Example 1: f = x + x y (2 variables)
f = x (y + y) + x y
f=xy+xy+xy
f = m3 + m2 + m0 = (0, 2, 3)
Example 2: g = a + b c (3 variables)
g = a (b + b)(c + c) + (a + a) b c
g=abc+abc+abc+abc+abc+abc
g=abc+abc+abc+abc+abc
g = m1 + m4 + m5 + m6 + m7 = (1, 4, 5, 6, 7)
Boolean Algebra and Logic Gates 26

Algebraic Conversion to Product-of-Maxterms


Expand all terms first to explicitly list all maxterms
OR any term missing a variable v with v v
Example 1: f = x + x y
(2 variables)
Apply 2nd distributive law:
f = (x + x) (x + y) = 1 (x + y) = (x + y) = M1
Example 2: g = a c + b c + a b (3 variables)
g = (a c + b c + a) (a c + b c + b) (distributive)
g = (c + b c + a) (a c + c + b)
(x + x y = x + y)
g = (c + b + a) (a + c + b) (x + x y = x + y)
g = (a + b + c) (a + b + c) = M5 . M2 = (2, 5)
Boolean Algebra and Logic Gates 27

Function Complements
The complement of a function expressed as a
sum of minterms is constructed by selecting the
minterms missing in the sum-of-minterms
canonical form
Alternatively, the complement of a function
expressed by a Sum of Minterms form is simply
the Product of Maxterms with the same indices
Example: Given F(x, y, z) = (1, 3, 5, 7)

F(x, y, z) = (0, 2, 4, 6)
F(x, y, z) = (1, 3, 5, 7)
Boolean Algebra and Logic Gates 28

Summary of Minterms and Maxterms


There are 2n minterms and maxterms for Boolean
functions with n variables.
Minterms and maxterms are indexed from 0 to 2n 1
Any Boolean function can be expressed as a logical
sum of minterms and as a logical product of maxterms
The complement of a function contains those minterms
not included in the original function
The complement of a sum-of-minterms is a product-ofmaxterms with the same indices
Boolean Algebra and Logic Gates 29

Standard Forms
Standard Sum-of-Products (SOP) form:
equations are written as an OR of AND terms
Standard Product-of-Sums (POS) form:
equations are written as an AND of OR terms
Examples:
SOP:
POS:

A B C A B

C B

(A B) (A B C ) C

These mixed forms are neither SOP nor POS

(A

B C)

A B C

(A C)

A C (A

B)

Boolean Algebra and Logic Gates 30

Standard Sum-of-Products (SOP)


A sum of minterms form for n variables can
be written down directly from a truth table.
Implementation of this form is a two-level
network of gates such that:
The first level consists of n-input AND gates
The second level is a single OR gate

This form often can be simplified so that the


corresponding circuit is simpler.

Boolean Algebra and Logic Gates 31

Standard Sum-of-Products (SOP)


A Simplification Example:
F( A, B, C)

( 1, 4 , 5 , 6 , 7 )

Writing the minterm expression:


F = A B C + A B C + A B C + ABC + ABC
Simplifying:
F = A B C + A (B C + B C + B C + B C)
F = A B C + A (B (C + C) + B (C + C))
F = A B C + A (B + B)
F= AB C + A
F=BC+A
Simplified F contains 3 literals compared to 15
Boolean Algebra and Logic Gates 32

AND/OR Two-Level Implementation


The two implementations for F are shown below
A
B
C
A
B
C
A
B
C
A
B
C
A
B
C

It is quite apparent which


is simpler!

Boolean Algebra and Logic Gates 33

SOP and POS Observations


The previous examples show that:
Canonical Forms (Sum-of-minterms, Product-of-Maxterms),
or other standard forms (SOP, POS) differ in complexity
Boolean algebra can be used to manipulate equations into
simpler forms
Simpler equations lead to simpler implementations

Questions:
How can we attain a simplest expression?
Is there only one minimum cost circuit?
The next part will deal with these issues
Boolean Algebra and Logic Gates 34

Terms of Use
All (or portions) of this material 2008 by Pearson
Education, Inc.
Permission is given to incorporate this material or
adaptations thereof into classroom presentations and
handouts to instructors in courses adopting the latest
edition of Logic and Computer Design Fundamentals
as the course textbook.
These materials or adaptations thereof are not to be
sold or otherwise offered for consideration.
This Terms of Use slide or page is to be included within
the original materials or any adaptations thereof.

Boolean Algebra and Logic Gates 35

Das könnte Ihnen auch gefallen