goals for lecture

48
ECE 20B, Winter 2003 Introduction to Electrical Engineering, II LECTURE NOTES #2 Instructor: Andrew B. Kahng (lecture) Email: [email protected] Telephone: 858-822-4884 office, 858-353-0550 cell Office: 3802 AP&M Class Website: http://vlsicad.ucsd.edu/courses/ece20b/ Login: ece20b Password: b02ece

Upload: ora

Post on 09-Jan-2016

23 views

Category:

Documents


2 download

DESCRIPTION

- PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Goals for Lecture

ECE 20B, Winter 2003Introduction to Electrical Engineering, IILECTURE NOTES #2

Instructor: Andrew B. Kahng (lecture)Email: [email protected]: 858-822-4884 office, 858-353-0550 cellOffice: 3802 AP&M

Class Website: http://vlsicad.ucsd.edu/courses/ece20b/Login: ece20bPassword: b02ece

Page 2: Goals for Lecture

2

Goals for Lecture Binary logic and gates Boolean Algebra Canonical forms for function representation Function simplification Examples Corresponds to MK, 2.1-2.4 (some 2.5)

Page 3: Goals for Lecture

3

Binary Logic and Gates (MK 2.1) 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 logical functions.

We study Boolean Algebra as foundation for designing digital systems.

Page 4: Goals for Lecture

4

Binary Variables The two binary values have different

names: True/False On/Off Yes/No 1/0

We will use 1 and 0 to denote the two values.

Variable identifiers: A, B, y, or z for now RESET, START_IT, or ADD1 later

Page 5: Goals for Lecture

5

Logical Operations The three basic logical operations are:

AND OR NOT

AND is denoted by a dot (·). OR is denoted by a plus (+). NOT is denoted by a bar ( ¯ ) over, a single

quote mark (') after, or ~ before the variable.

Page 6: Goals for Lecture

6

Examples: is read “Y is equal to A and B.” is read “z is equal to x OR y.” is read “X is equal to NOT A.”

Notation Examples

Note: The statement: 1 + 1 = 2 (read “one plus one is equal to two”)

is not the same as1 + 1 = 1 (read “1 or 1 is equal to 1”).

BAY yxz

AX

Page 7: Goals for Lecture

7

Operator Definitions

Operations are defined on the values "0" and "1" for each Operator:

AND 

0 · 0 = 00 · 1 = 01 · 0 = 01 · 1 = 1

OR

0 + 0 = 00 + 1 = 11 + 0 = 11 + 1 = 1

NOT

10 =

01=

Page 8: Goals for Lecture

8

Truth Tables Truth tables list the output value of a function for

all possible input values Truth tables for basic logic operations:

111

001

010

000

Z = X·YYX

AND OR

X Y Z = X+Y

0 0 0

0 1 1

1 0 1

1 1 1

01

10

X

NOT

XZ

Page 9: Goals for Lecture

9

Logic Function Implementation Using Switches

For inputs: logic 1 is switch closed logic 0 is switch open

For outputs: logic 1 is light on logic 0 is light off.

For NOT, a switch such

that for inputs: logic 1 is switch open logic 0 is switch closed

Page 10: Goals for Lecture

11

Logic Gate Symbols and Behavior Logic gates have special symbols:

And waveform behavior in time as follows:

Page 11: Goals for Lecture

12

Logic Diagrams and Expressions

Boolean expressions, truth tables and logic diagrams describe the same function! Truth tables are unique; expressions and logic diagrams are not. This gives

flexibility in implementing functions.

X

Y F

Z

Logic Diagram

Expression

Z Y X F

Truth Table

11 1 1

11 1 0

11 0 1

11 0 0

00 1 1

00 1 0

10 0 1

00 0 0

X Y Z Z Y X F

Page 12: Goals for Lecture

13

Boolean Algebra (MK 2.2) An algebraic structure defined on a set of at

least two elements, B, together with two binary operators (denoted + and ·) that satisfies the following identities:

Closure of B with respect to +, · (see slide 6)Identity elements 0 and 1 such that:1. X + 0 = X 2. X · 1 = X3. X + 1 = 1 4. X · 0 = 05. X + X = X 6. X · X = X

For each element X, an element (inverse) s.t.:

7. 8. 9.

1 X X 0

X

·X

XX

X

Page 13: Goals for Lecture

14

Boolean Algebra (cont.)

The identities are organized into dual pairs. These pairs have names as follows:

1-4 Existence of 0 and 1 5-6 Idempotence

7-8 Existence of complement 9 Involution

10-11 Commutative Laws 12-13 Associative Laws

14-15 Distributive Laws 16-17 DeMorgan’s Laws

If the meaning is unambiguous, we leave out the symbol “·”

10. X + Y = Y + X 11. X·Y = Y·X

12. X + (Y + Z) = (X + Y) + Z 13. X·(Y·Z) = (X·Y)·Z

14. X·(Y + Z) = X·Y + X·Z 15. X + Y·Z = (X + Y)·(X + Z)

16. 17. Y · X Y X Y X X·Y

Page 14: Goals for Lecture

15

Duality The dual of an algebraic expression is

obtained by interchanging + and · and interchanging 0’s and 1’s.

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

Unless it happens to be self-dual, the dual of an expression does not equal the expression itself.

Page 15: Goals for Lecture

16

Boolean Algebraic Proofs - Example 1 X + X·Y = X (Absorption Theorem)

Proof Steps Justification (identity or theorem) X + X·Y = X·1 + X·Y (identity 2) = X·(Y + Y) + X·Y (identity 7) = X·Y + X·Y + X·Y (identity 14) = X·Y + X·Y (identity 5, applied to X·Y) = X·(Y + Y) (identity 14) = X·1 = X (identity 5, identity 2)

Page 16: Goals for Lecture

17

Boolean Algebraic Proofs - Example 2 (Consensus Theorem)

Proof Steps Justification (identity or theorem) YZ = YZ(X + X) (identity 2, identity 7) = XYZ + XYZ (identity 14) XY + XZ + XYZ + XYZ = XY(1 + Z) + XZ(1 + Y) (identity 2, identity 7) = XY + XZ (identity 3, identity 2)

ZX XY YZ ZX XY

Page 17: Goals for Lecture

18

Boolean Operator Precedence The order of evaluation in Boolean

Expressions is:ParenthesesNOTANDOR

Because AND takes precedence over OR, parentheses must be placed around the OR operator more frequently.

Page 18: Goals for Lecture

19

Exercise: Prove DeMorgan’s Laws

Useful Theorems

onMinimizatiyyxyxyyxyx

tionSimplificay xyxxyxyxx n Absorptioxyxxxyxx

Consensuszxyxzyzxyx zxyxzyzxyx

Laws sDeMorgan'yxyxyxyx

Page 19: Goals for Lecture

20

Boolean Function Evaluationx y z F1 F2 F3 F4

0 0 0 0 0 1 0

0 0 1 0 1 0 1

0 1 0 0 0 0 0

0 1 1 0 0 1 1

1 0 0 0 1 1 1

1 0 1 0 1 1 1

1 1 0 1 1 0 0

1 1 1 0 1 0 0

z x y x F4

y x z y x zyx F3

zy x F2

z xy F1

Page 20: Goals for Lecture

21

Expression Simplification Simplify to contain the smallest number of

literals (complemented and uncomplemented variables):

= AB + A’C + A’BD = AB + A’(C + BD)

or

= AB + A’C + BC’D = A’C + B(A + C’D)

DCBADCADBADCABA

Page 21: Goals for Lecture

22

Complementing Functions Use DeMorgan's Theorem to complement

a function:1. Interchange AND and OR operators

2.Complement each literal   

Example: Complement zyxzyx

Page 22: Goals for Lecture

23

Canonical Forms (MK 2.3) It is useful to specify Boolean functions in

a form that: Allows comparison for equality. Has a correspondence the truth tables

Canonical forms: Sum of Minterms (SOM) or Sum of Products

(SOP) Product of Maxterms (POM) or Product of

Sums (POS)

Page 23: Goals for Lecture

24

Minterms Minterms are AND terms with every variable in true

or complemented form. Each binary variable may appear in

uncomplemented (e.g., x) or complemented (e.g., x’) form there are 2n minterms for n variables.

EXAMPLE: Two variables, combined with an AND operator, X · Y have 2*2 or 4 combinations: (both normal) (X normal, Y complemented) (X complemented, Y normal) (both complemented)

There are four minterms of two variables.

YXXY

YXYX

Page 24: Goals for Lecture

25

Maxterms Maxterms are OR terms with every variable in true

or complemented form. Each binary variable may appear in

uncomplemented (e.g., x) or complemented (e.g., x’) form there are 2n maxterms for n variables.

Two variables, combined with an OR operator, X + Y, have 2*2 or 4 combinations:

(both normal)

(x normal, y complemented)

(x complemented, y normal)

(both complemented)

YX YX

YX YX

Page 25: Goals for Lecture

26

Maxterms and Minterms Examples: Two variable minterms and

maxterms.

The index above is important for describing which variables in the terms are true and which are complemented.

Index Maxterm Minterm

0 x + y x y

1 x +y x y

2 x + y x y

3 x +y x y

Page 26: Goals for Lecture

27

Standard Order Minterms and maxterms are designated with a subscript The subscript is a number, corresponding to a binary pattern The bits in the pattern represent the complemented or normal

state of EVERY variable, listed in a STANDARD order. All variables will be present in a minterm or maxterm and will

be listed in the same order (usually alphabetically) Example: For variables a, b, c:

Maxterms: (a + b +c), (a + b + c) Minterms: a bc, a b c, ab c Terms: (b + a + c), ac b, and (c + b + a) are NOT in standard

order. Terms: (a + c), b c, and (a + b) do not contain all variables

Page 27: Goals for Lecture

28

Purpose of the Index The index for the minterm or maxterm, expressed

as a binary number, is used to determine whether each variable occurs in true form 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”.

Page 28: Goals for Lecture

29

Index Example in Three Variables Example: (for three variables) Assume the variables are called X, Y, and Z.

the standard order is X, then Y, then Z.

The Index 0 (base 10) = 000 (base 2 to three digits) so all three variables are complemented for minterm 0 ( ) and no variables are complemented for Maxterm 0 (X,Y,Z)

Minterm 0, called m0 is .

Maxterm 0, called M0 is (X + Y + Z).

Z,Y,X

ZYX

Page 29: Goals for Lecture

30

Four Variables – Index Examples Index Binary Minterm Maxterm i Pattern mi Mi

0 0000 1 0001 3 0011 5 0101 7 0111 10 1010 13 1101 15 1111

dcba dcba

dcba dcba

dcba dcba dcba dcba dcba dcba dcba dcba dcba dcba dcba dcba

Page 30: Goals for Lecture

31

DeMorgan's Theorem: and Two-variable example: and

Thus M2 is the complement of m2 and vice-versa.

Since DeMorgan's Theorem holds for n variables, the above holds for terms of n variables

giving: and Thus Mi is the complement of mi.

Minterm and Maxterm Relationship

yx y· x yxyx

y x M2 yx· m2

ii mM ii Mm

Page 31: Goals for Lecture

32

Function Tables for Both

Minterms of Maxterms of 2 variables 2 variables

Each column in the maxterm function table is the complement of the column in the minterm function table since Mi is the complement of mi.

x y m0 m1 m2 m3

0 0 1 0 0 0

0 1 0 1 0 0

1 0 0 0 1 0

1 1 0 0 0 1

x y M0 M1 M2 M3

0 0 0 1 1 1

0 1 1 0 1 1

1 0 1 1 0 1

1 1 1 1 1 0

Page 32: Goals for Lecture

33

Observations In the function tables:

Each minterm has one and only one 1 present in the 2n terms (a minimum of ones). All other entries are 0.

Each maxterm has one and only one 0 present in the 2n terms All other entries are 1 (a maximum of ones).

We can implement any function by "ORing" the minterms corresponding to a "1" in the function table.

We can implement any function by "ANDing" the maxterms corresponding to a "0" in the function table.

This gives us two canonical forms: Sum of Minterms (SOM), and Product of Maxterms (POM)

for stating any Boolean function.

Page 33: Goals for Lecture

34

Minterm Function Example Example: Find F1 = m1 + m4 + m7

F1 = xy z + x y z + x y z

x y z index m1 + m4 + m7 = F1

0 0 0 0 0 + 0 + 0 = 0

0 0 1 1 1 + 0 + 0 = 1

0 1 0 2 0 + 0 + 0 = 0

0 1 1 3 0 + 0 + 0 = 0

1 0 0 4 0 + 1 + 0 = 1

1 0 1 5 0 + 0 + 0 = 0

1 1 0 6 0 + 0 + 0 = 0

1 1 1 7 0 + 0 + 1 = 1

Page 34: Goals for Lecture

35

Minterm Function Example

F(A, B, C, D, E) = m2 + m9 + m17 + m23

Page 35: Goals for Lecture

36

Maxterm Function Example Example: Implement F1 in maxterms: F1 = M0 · M2 · M3 · M5 · M6

)z y z)·(x y ·(x z) y (x F1

z) y x)·(z y x·(

x y z i M0 M2 M3 M5 M6 = F1 0 0 0 0 0 1 1 1 = 0 0 0 1 1 1 1 1 1 1 = 1 0 1 0 2 1 0 1 1 1 = 0 0 1 1 3 1 1 0 1 1 = 0 1 0 0 4 1 1 1 1 1 = 1 1 0 1 5 1 1 1 0 1 = 0 1 1 0 6 1 1 1 1 0 = 0 1 1 1 7 1

1 1 1 1 = 1

1

Page 36: Goals for Lecture

37

Maxterm Function Example

141183 MMMM)D,C,B,A(F

Page 37: Goals for Lecture

38

Canonical Sum of Minterms Any Boolean Function can be expressed as a

Sum of Minterms. For the function table, the minterms used are the terms

corresponding to the 1's For expressions, expand all terms first to explicitly list

all minterms. Do this by “ANDing” any term missing a variable v with a term ( ).

Example: Implement as a sum of minterms.

First expand terms:Then distribute terms:

Express as sum of minterms: f = m3+m2+m0

yxxf

yx)yy(xf yxyxxyf

vv

Page 38: Goals for Lecture

39

Another SOM Example Example: There are three variables, A, B, and C which we

take to be the standard order. Expanding the terms with missing variables:

Collect terms (removing all but one of duplicate terms):

Express as SOM:

C B A F

)AC(A B )C )(CB (B A F CBA CB A CB ACB A C AB ABC F

CBA CB ACB A C AB ABC F

Page 39: Goals for Lecture

40

Shorthand SOM Form From the previous example, we started

with:

We ended up with:

F = m1+m4+m5+m6+m7

This can be denoted in the formal shorthand:

(We explicitly show the standard variables in order and drop the “m” designators.)

)7,6,5,4,1()C,B,A(F m

C B A F

Page 40: Goals for Lecture

41

Canonical Product of Maxterms Any Boolean Function can be expressed as a Product of

Maxterms (POM). For the function table, the maxterms used are the terms

corresponding to the 0's. For an expression, expand all terms first to explicitly list all

maxterms. Do this by first applying the second distributive law , “ORing” terms missing variable v with a term equal to and then applying the distributive law again.

Example: Convert to product of maxterms:First apply the distributive law:

Add missing variable z:

Express as POM: f = M2·M3

vvyxx)z,y,x(f

yx )y(x 1 )y)(xx(x y xx

zyx)zyz(zzyx

Page 41: Goals for Lecture

42

Complements and Conversion To complement a function expressed as SOm (or,

POM), just select the missing minterms (Maxterms) Or, the complement of the SOm (POM) function is

given by the POM (SOm) with the same indices. To convert SOM SOP, find the missing indices,

and then use the other form Example: F(x,y,z) = m(1,3,5,7)

F’(x,y,z) = m(0,2,4,6)

F’(x,y,z) = M(1,3,5,7)

F(x,y,z) = M(0,2,4,6)

Page 42: Goals for Lecture

43

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, and The second level is a single OR gate (with fewer than 2n

inputs).

This form: is usually not a minimum literal expression, and leads to a more expensive implementation (in terms of

two levels of AND and OR gates) than needed.

Page 43: Goals for Lecture

44

Standard Sum-of-Products (SOP) Try to combine terms to get a lower literal

cost expression less expensive implementation.

Example: )7,6,5,4,1(m)C,B,A(F

Page 44: Goals for Lecture

45

SOP AND/OR Two-level Implementation Which implementation is simpler?

F

B

C

A

Page 45: Goals for Lecture

46

Standard Product-of-Sums (POS) A Product of Maxterms 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 OR gates, and The second level is a single AND gate (with fewer than

2n inputs). This form:

is usually not a minimum literal expression, and leads to a more expensive implementation (in terms of

two levels of AND and OR gates) than needed.

Page 46: Goals for Lecture

47

Standard Product-of-Sums (POS) Try to combine terms to get a lower literal

cost expression less expensive implementation.

Example: )3,2,0()C,B,A(F M

Page 47: Goals for Lecture

48

OR/AND Two-level Implementation Which implementation is simpler?

Page 48: Goals for Lecture

49

Cost of Implementation Canonical SOP, POS representations can

differ in literal cost Boolean algebra: manipulate equations into

simpler forms reduces the (two-level) implementation cost

Is there only one minimum-cost circuit? Is there a systematic procedure to obtain a

minimum-cost circuit?