Standard & Canonical Forms: Chapter Objectives

Download as pdf or txt
Download as pdf or txt
You are on page 1of 9

Standard & Canonical Forms

CHAPTER OBJECTIVES
‰ Learn Binary Logic and BOOLEAN AlgebraLearn How to Map a Boolean
Expression into Logic Circuit Implementation Learn How To Manipulate

Boolean Expressions and Simplify ThemLesson OjectivesLearn how


to derive a Boolean expression of a function defined by its truth table. The
derived expressions may be in one of two possible standard forms: The Sum
of Min-terms or the Product of Max-Terms.
2. Learn how to map these expressions into logic circuit implementations (2-
Level Implementations).

MinTerms
‰ Consider a system of 3 input signals (variables) x, y, & z.
‰ A term which ANDs all input variables, either in the true or complement form,
is called a minterm.
‰ Thus, the considered 3-input system has 8 minterms, namely:
x y z,x y z,x y z, x y z,x y z,x y z,x y z & x y z

‰ Each minterm equals 1 at exactly one particular input combination and is


equal to 0 at all other combinations
‰ Thus, for example, x y z is always equal to 0 except for the input
combination xyz = 000, where it is equal to 1.
‰ Accordingly, the minterm x y z is referred to as m0.
‰ In general, minterms are designated mi, where i corresponds the input
combination at which this minterm is equal to 1.
‰ For the 3-input system under consideration, the number of possible input
combinations is 23, or 8. This means that the system has a total of 8 minterms
as follows:
¾ m0 = x y z =1 IFF xyz = 000, otherwise it equals 0

¾ m1 = x yz =1 IFF xyz = 001, otherwise it equals 0

¾ m2 = x y z =1 IFF xyz = 010, otherwise it equals 0

¾ m3 = x yz =1 IFF xyz = 011, otherwise it equals 0

¾ m4 = x y z =1 IFF xyz = 100, otherwise it equals 0

¾ m5 = x yz =1 IFF xyz = 101, otherwise it equals 0

¾ m6 = xy z =1 IFF xyz = 110, otherwise it equals 0


¾ m7 = xyz =1 IFF xyz = 111, otherwise it equals 0

In general,
‰ For n-input variables, the number of minterms = the total number of possible
input combinations = 2n.
‰ A minterm = 0 at all input combinations except one where the minterm = 1.

MaxTerms
‰ Consider a circuit of 3 input signals (variables) x, y, & z.
‰ A term which ORs all input variables, either in the true or complement form,
is called a Maxterm.
‰ With 3-input variables, the system under consideration has a total of 8
Maxterms, namely:
( x + y + z ), ( x + y + z ) , ( x + y + z ) , ( x + y + z ), ( x + y + z ) , ( x + y + z ) , ( x + y + z ) & ( x + y + z )

‰ Each Maxterm equals 0 at exactly one of the 8 possible input combinations


and is equal to 1 at all other combinations.
‰ For example, ( x + y + z ) equals 1 at all input combinations except for the
combination xyz = 000, where it is equal to 0.
‰ Accordingly, the Maxterm ( x + y + z ) is referred to as M0.
‰ In general, Maxterms are designated Mi, where i corresponds to the input
combination at which this Maxterm is equal to 0.
‰ For the 3-input system, the number of possible input combinations is 23, or 8.
This means that the system has a total of 8 Maxterms as follows:
¾ M0 = ( x + y + z ) =0 IFF xyz = 000, otherwise it equals 1
¾ M1 = ( x + y + z ) = 0 IFF xyz = 001, otherwise it equals 1
¾ M2 = ( x + y + z ) = 0 IFF xyz = 010, otherwise it equals 1
¾ M3 = ( x + y + z ) = 0 IFF xyz = 011, otherwise it equals 1
¾ M4 = ( x + y + z ) = 0 IFF xyz = 100, otherwise it equals 1
¾ M5 = ( x + y + z ) = 0 IFF xyz = 101, otherwise it equals 1
¾ M6 = ( x + y + z ) = 0 IFF xyz = 110, otherwise it equals 1
¾ M7 = ( x + y + z ) = 0 IFF xyz = 111, otherwise it equals 1

In general,
‰ For n-input variables, the number of Maxterms = the total number of possible
input combinations = 2n.
‰ A Maxterm = 1 at all input combinations except one where the Maxterm = 0.

Imprtant Result
Using De-Morgan’s theorem, or truth tables, it can be easily shown that:
n
M =mi i
∀i = 0,1, 2, ....., ( 2 − 1)

Expressing Functions as a Sum of Minterms and Product of


Maxterms
Example: Consider the function F defined by the shown truth table
x y z F
Now let’s rewrite the table, with few added columns.
0 0 0 0
¾ A column i indicating the input combination 0 0 1 0
¾ Four columns of minterms m2, m4, m5 and m7 0 1 0 1
¾ One last column OR-ing the above minterms (m2 + m4 + m5 0 1 1 0
1 0 0 1
+ m7)
1 0 1 1
1 1 0 0
1 1 1 1
i x y z F m2 m4 m5 m7 m2+ m4+ m5+ m7

0 0 0 0 0 0 0 0 0 0
1 0 0 1 0 0 0 0 0 0
2 0 1 0 1 1 0 0 0 1
3 0 1 1 0 0 0 0 0 0
4 1 0 0 1 0 1 0 0 1
5 1 0 1 1 0 0 1 0 1
6 1 1 0 0 0 0 0 0 0
7 1 1 1 1 0 0 0 1 1

‰ From this table, we can clearly see that F = m2 + m4 + m5 + m7


‰ This is logical since F = 1, only at input combinations i= 2, 4, 5 and 7
‰ Thus, by ORing minterm m2 (which has a value of 1 only at input combination
i= 2) with minterm m4 (which has a value of 1 only at input combination i= 4)
with minterm m5 (which has a value of 1 only at input combination i= 5) with
minterm m7 (which has a value of 1 only at input combination i= 7) the
resulting function will equal F.
‰ In general, Any function can be expressed by OR-ing all minterms (mi)
corresponding to input combinations (i) at which the function has a value of 1.
‰ The resulting expression is commonly referred to as the SUM of minterms and
is typically expressed as F = ∑(2, 4, 5, 7), where ∑ indicates OR-ing of the
indicated minterms. Thus, F = ∑(2, 4, 5, 7) = (m2 + m4 + m5 + m7)

Example:
‰ Consider the function F of the previous example.
i x y z F F`
‰ We will, first, derive the sum of minterms expression for the
complement function F`.
0 0 0 0 0 1
The truth table of F` shows that F` equals 1 at i = 0, 1, 3 and 6, then, 1 0 0 1 0 1
2 0 1 0 1 0
F` = m0 + m1 + m3 + m6, i.e 3 0 1 1 0 1
F` = ∑(0, 1, 3, 6), (1) 4 1 0 0 1 0
5 1 0 1 1 0
F = ∑(2, 4, 5, 7) (2)
6 1 1 0 0 1
• Obviously, the sum of minterms expression of F` contains all 7 1 1 1 1 0
minterms that do not appear in the sum of minterms expression of F.
Using De-Morgan theorem on equation (2),
F = (m 2 + m 4 + m 5 + m 7 ) = m 2.m 4.m 5.m 7 = M 2.M 4.M 5.M 7
This form is designated as the Product of Maxterms and is expressed using the ∏
symbol, which is used to designate product in regular algebra, but is used to designate
AND-ing in Boolean algebra.
Thus,
F` = ∏ (2, 4, 5, 7) = M2. M4. M5. M7 (3)

From equations (1) and (3) we get,


F` = ∑(0, 1, 3, 6) = ∏ (2, 4, 5, 7)

In general, any function can be expressed both as a sum of minterms and as a product
of maxterms. Consider the derivation of F back from F` given in equation (3):

F = F = m 0 + m1 + m 3 + m 6 = m 0 . m1. m 3 . m 6 = M .M .M .M
0 1 3 6

F = ∑(2, 4, 5, 7) = ∏ (0, 1, 3, 6)
F` = ∏ (2, 4, 5, 7) = ∑ (0, 1, 3, 6)

Conclusions:
• Any function can be expressed both as a sum of minterms (∑ mi) and as a
product of maxterms. The product of maxterms expression (∏ Mj) expression
of F contains all maxterms Mj (∀ j ≠ i) that do not appear in the sum of
minterms expression of F.
• The sum of minterms expression of F` contains all minterms that do not
appear in the sum of minterms expression of F.
• This is true for all complementary functions. Thus, each of the 2n minterms
will appear either in the sum of minterms expression of F or the sum of
minterms expression of F but not both.
• The product of maxterms expression of F` contains all maxterms that do
not appear in the product of maxterms expression of F.
• This is true for all complementary functions. Thus, each of the 2n maxterms
will appear either in the product of maxterms expression of F or the product of
maxterms expression of F but not both.
Example:
Given that F (a, b, c, d) = ∑(0, 1, 2, 4, 5, 7), derive the product of maxterms
expression of F and the 2 standard form expressions of F`.

Since the system has 4 input variables (a, b, c & d) Æ The number of minterms and
Maxterms = 24= 16
F (a, b, c, d) = ∑(0, 1, 2, 4, 5, 7)

1. List all maxterms in


the Product of
maxterms expression F = ∏ (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15).

2. Cross out maxterms


corresponding to input
F = ∏ (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15).
combinations of the
minterms appearing in
the sum of minterms
expression

F = ∏ (3, 6, 8, 9, 10, 11, 12, 13, 14, 15).

Similarly, obtain both canonical form expressions for F`

F` = ∑ (3, 6, 8, 9, 10, 11, 12, 13, 14, 15).

F` = ∏ (0, 1, 2, 4, 5, 7)
Canonical Forms:
The sum of minterms and the product of maxterms forms of Boolean expressions are
known as the canonical forms (‫ )ﺍﻟﺼﻴﻎ ﺍﻟﻘﺎﻨﻭﻨﻴﺔ‬of a function.

Standard Forms:
• A product term is a term with ANDed literals*. Thus, AB, A’B, A’CD are all
product terms.
• A minterm is a special case of a product term where all input variables appear
in the product term either in the true or complement form.
• A sum term is a term with ORed literals*. Thus, (A+B), (A’+B), (A’+C+D) are
all sum terms.
• A maxterm is a special case of a sum term where all input variables, either in
the true or complement form, are ORed together.
• Boolean functions can generally be expressed in the form of a Sum of
Products (SOP) or in the form of a Product of Sums (POS).
• The sum of minterms form is a special case of the SOP form where all product
terms are minterms.
• The product of maxterms form is a special case of the POS form where all
sum terms are maxterms.
• The SOP and POS forms are Standard forms for representing Boolean
functions.

*
A Boolean variable in the true or complement forms
Two-Level Implementations of Standard Forms

Sum of Products Expression (SOP):


• Any SOP expression can be implemented in 2-levels of gates.
• The first level consists of a number of AND gates which equals the number of
product terms in the expression. Each AND gate implements one of the
product terms in the expression.
• The second level consists of a SINGLE OR gate whose number of inputs
equals the number of product terms in the expression.

Example Implement the following SOP function


F = XZ + Y`Z + X`YZ

Level 1

X
Z
Level 2

Y` F
Z

X`
Y
Z

Two-Level Implementation (F = XZ + Y`Z + X`YZ )


Level-1: AND-Gates ; Level-2: One OR-Gate
Product of Sums Expression (POS):
• Any POS expression can be implemented in 2-levels of gates
• The first level consists of a number of OR gates which equals the number of
sum terms in the expression, each gate implements one of the sum terms in the
expression.
• The second level consists of a SINGLE AND gate whose number of inputs
equals the number of sum terms.

Example Implement the following SOP function


F = (X+Z )(Y`+Z)(X`+Y+Z )

Level 1

X
Z
Level 2

Y` F
Z

X`
Y
Z

Two-Level Implementation {F = (X+Z )(Y`+Z)(X`+Y+Z )}


Level-1: OR-Gates ; Level-2: One AND-Gate

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy