56
06.10.20 12:15 CSCI 150 Introduction to Digital and Computer System Design Lecture 2: Combinational Logical Circuits III Jetic Gū 2020 Fall Semester (S3)

#04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

  • Upload
    others

  • View
    1

  • Download
    0

Embed Size (px)

Citation preview

Page 1: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

06.10.20 12:15

CSCI 150 Introduction to Digital and Computer

System Design Lecture 2: Combinational Logical Circuits III

Jetic Gū2020 Fall Semester (S3)

Page 2: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Overview

• Focus: Boolean Algebra

• Architecture: Combinatory Logical Circuits

• Textbook v4: Ch2 2.3; v5: Ch2 2.3

• Core Ideas:

1. Boolean Algebra II: Standard Forms

Page 3: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Boolean Algebra I

• Boolean Algebra vs Physical Implementation of Logic Circuits

• AND, OR, NOT Operators and Gates

• Simple digital circuit implementation

• Algebraic manipulation using Binary Identities

Review

P0 Review

Page 4: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Boolean Algebra II: Standard Forms

Summary

P1 Standard Forms

Minterm/Maxterm;Sum of Products; Product of Sums

Page 5: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Standard Forms

• Equivalent expressions can be written in a variety of waysStandard forms: typical such ways that incorporates some unique characteristics -> simplify the implementation of these designs

• Product terms (AND terms): e.g. Literals with inverts connected through only AND operators

• Sum terms (OR terms): e.g. Literals with inverts connected through only OR operators

XYZ

X + Y + Z

Concep

t

P1 Standard Forms

Page 6: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms and Maxterms

• MintermProduct term; Contains all variables; Has only one Positive row in the truth table

Concep

t

P1 Standard Forms

XY

X Y

0 0 1 0 0 0

0 1 0 1 0 0

1 0 0 0 1 0

1 1 0 0 0 1

XY XY XY XY

Page 7: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms and Maxterms

• MintermProduct term; Contains all variables; Has only one Positive row in the truth table

Concep

t

P1 Standard Forms

XY

X Y

0 0 1 0 0 0

0 1 0 1 0 0

1 0 0 0 1 0

1 1 0 0 0 1

XY XY XY XY(00)2=0

(01)2=1

(10)2=2

(11)2=3

Page 8: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms and Maxterms

• MintermProduct term; Contains all variables; Has only one Positive row in the truth table

Concep

t

P1 Standard Forms

XY

X Y

0 0 1 0 0 0

0 1 0 1 0 0

1 0 0 0 1 0

1 1 0 0 0 1

m0 = XY m1 = XY m2 = XY m3 = XY(00)2=0

(01)2=1

(10)2=2

(11)2=3

Page 9: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

MintermsP1 Standard Forms

XY

XY

X Y Z

0 0 0 1 0 0 0 0 0 0 0

0 0 1 0 1 0 0 0 0 0 0

0 1 0 0 0 1 0 0 0 0 0

0 1 1 0 0 0 1 0 0 0 0

1 0 0 0 0 0 0 1 0 0 0

1 0 1 0 0 0 0 0 1 0 0

1 1 0 0 0 0 0 0 0 1 0

1 1 1 0 0 0 0 0 0 0 1

m0

Example

m1 m2 m3 m4 m5 m6 m7XYZ XYZ XYZ XYZ XYZ XYZ XYZ XYZ

Page 10: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

MintermsP1 Standard Forms

m0

Example

m1 m2 m3 m4 m5 m6 m7

• Minterm

• The output is 1 when a unique combination of input (condition) is met(like a combination lock)

0010

Page 11: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms

• Minterms to Boolean conversions

• Write down in binary

• List all the variables, connect them with AND, if then invert the th variable

mi

i (α1α2 . . . αn)2

αi = 0 i

Concep

t

m1 m2 m3 m4 m5 m6 m7

P1 Standard Forms

m0

Page 12: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms

• With variables , , , , write down

X Y Z A

m4

m10

Example

P1 Standard Forms

Page 13: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms

• With variables , , , , write down

X Y Z A

m4

m10

Example

P1 Standard Forms

m4 = XYZA

Page 14: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms

• With variables , , , , write down

X Y Z A

m4

m10

Example

P1 Standard Forms

m4 = XYZA

m10 = XYZA

Page 15: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

MintermsP1 Standard Forms

X Y Z F

0 0 0 1

0 0 1 0

0 1 0 1

0 1 1 0

1 0 0 0

1 0 1 1

1 1 0 0

1 1 1 0

Example

• Write down the Sum of Minterm of the truth table on the left

Page 16: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

MintermsP1 Standard Forms

X Y Z F

0 0 0 1

0 0 1 0

0 1 0 1

0 1 1 0

1 0 0 0

1 0 1 1

1 1 0 0

1 1 1 0

Example

• Write down the Sum of Minterm of the truth table on the left

m0 + m2 + m5

Page 17: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms

• With variables , , , write down

X Y Z

m2 + m3

m1 + m3 + m5 + m7

Exerci

se

P1 Standard Forms

Page 18: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms

• With variables , , , write down

X Y Z

m2 + m3

m1 + m3 + m5 + m7

Exerci

se

P1 Standard Forms

m2 + m3 = XYZ + XYZ

Page 19: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms

• With variables , , , write down

X Y Z

m2 + m3

m1 + m3 + m5 + m7

Exerci

se

P1 Standard Forms

m2 + m3 = XYZ + XYZ

m1 + m3 + m5 + m7 = XYZ + XYZ + XYZ + XYZ

Page 20: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

MintermsP1 Standard Forms

X Y Z F

0 0 0 1

0 0 1 0

0 1 0 0

0 1 1 1

1 0 0 0

1 0 1 0

1 1 0 1

1 1 1 0

Exerci

se

• Write down the Sum of Minterm of the truth table on the left

Page 21: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

MintermsP1 Standard Forms

X Y Z F

0 0 0 1

0 0 1 0

0 1 0 0

0 1 1 1

1 0 0 0

1 0 1 0

1 1 0 1

1 1 1 0

Exerci

se

• Write down the Sum of Minterm of the truth table on the left

m0 + m3 + m6

Page 22: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms and Maxterms

• MaxtermSum term; Contains all variables; Has only one Negative row in the truth table

Concep

t

P1 Standard Forms

X Y

0 0 0 1 1 1

0 1 1 0 1 1

1 0 1 1 0 1

1 1 1 1 1 0

M3 = X + YM2 = X + YM1 = X + YM0 = X + Y(00)2=0

(01)2=1

(10)2=2

(11)2=3

Page 23: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms and Maxterms

• MaxtermSum term; Contains all variables; Has only one Negative row in the truth table

Concep

t

P1 Standard Forms

X Y

0 0 0 1 1 1

0 1 1 0 1 1

1 0 1 1 0 1

1 1 1 1 1 0

M3 = X + YM2 = X + YM1 = X + YM0 = X + Y

Mi = mi

(00)2=0

(01)2=1

(10)2=2

(11)2=3

Page 24: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Maxterms

• Maxterms to Boolean conversion

• Write down in binary

• List all the variables, connect them with OR, if then invert the th variable

Mi

i (α1α2 . . . αn)2

αi = 1 i

Example

m1 m2 m3 m4 m5 m6 m7

P1 Standard Forms

m0

Page 25: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Maxterms

• With variables , , , , write down

X Y Z A

M4

M10

Example

P1 Standard Forms

Page 26: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Maxterms

• With variables , , , , write down

X Y Z A

M4

M10

Example

P1 Standard Forms

M4 = (X + Y + Z + A)

Page 27: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Maxterms

• With variables , , , , write down

X Y Z A

M4

M10

Example

P1 Standard Forms

M4 = (X + Y + Z + A)

M10 = (X + Y + Z + A)

Page 28: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

MaxtermsP1 Standard Forms

X Y Z F

0 0 0 1

0 0 1 0

0 1 0 1

0 1 1 0

1 0 0 0

1 0 1 1

1 1 0 0

1 1 1 1

Example

• Write down the Product of Maxterm of the truth table on the left

Page 29: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

MaxtermsP1 Standard Forms

X Y Z F

0 0 0 1

0 0 1 0

0 1 0 1

0 1 1 0

1 0 0 0

1 0 1 1

1 1 0 0

1 1 1 1

Example

• Write down the Product of Maxterm of the truth table on the left

M1M3M4M6

Page 30: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Maxterms

• With variables , , , write down

X Y Z

M2 ⋅ M3

M1 ⋅ M3 ⋅ M5 ⋅ M7

Exerci

se

P1 Standard Forms

Page 31: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Maxterms

• With variables , , , write down

X Y Z

M2 ⋅ M3

M1 ⋅ M3 ⋅ M5 ⋅ M7

Exerci

se

P1 Standard Forms

(X + Y + Z)(X + Y + Z)

Page 32: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Maxterms

• With variables , , , write down

X Y Z

M2 ⋅ M3

M1 ⋅ M3 ⋅ M5 ⋅ M7

Exerci

se

P1 Standard Forms

(X + Y + Z)(X + Y + Z)

(X + Y + Z)(X + Y + Z)(X + Y + Z)(X + Y + Z)

Page 33: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

MaxtermsP1 Standard Forms

X Y Z F

0 0 0 1

0 0 1 0

0 1 0 0

0 1 1 1

1 0 0 0

1 0 1 1

1 1 0 1

1 1 1 0

Exerci

se

• Write down the Product of Maxterm of the truth table on the left

Page 34: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

MaxtermsP1 Standard Forms

X Y Z F

0 0 0 1

0 0 1 0

0 1 0 0

0 1 1 1

1 0 0 0

1 0 1 1

1 1 0 1

1 1 1 0

Exerci

se

• Write down the Product of Maxterm of the truth table on the left

M1M2M4M7

Page 35: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms and Maxterms• e.g.

• Sum of Minterms

• e.g.

• Product of Maxterm

• e.g.

M3 = X + Y + Z = XYZ = m3

F = XYZ + XYZ + XYZ + XYZ = m0 + m2 + m5 + m7= Σm(0,2,5,7)

F = (X + Y + Z)(X + Y + Z)(X + Y + Z)(X + Y + Z)= M0M2M5M7= ΠM(0,2,5,7)

Concep

t

P1 Standard Forms

Page 36: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms and Maxterms

• Write down in boolean expression

• Write down in Product of Maxterm form

F(X, Y, Z) = Σm(1,4,5)

F

F

Example

P1 Standard Forms

Page 37: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms and Maxterms

• Write down in boolean expression

• Write down in Product of Maxterm form

F(X, Y, Z) = Σm(1,4,5)

F

F

Example

P1 Standard Forms

F = XYZ + XYZ + XYZ

Page 38: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms and Maxterms

• Write down in boolean expression

• Write down in Product of Maxterm form

F(X, Y, Z) = Σm(1,4,5)

F

F

Example

P1 Standard Forms

F = XYZ + XYZ + XYZ

F = ΠM(1,4,5)

Page 39: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms and Maxterms

• Write down in boolean expression

• Write down in Sum of Minterm form

F(X, Y, Z) = ΠM(2,3,7)

F

F

Exerci

se

P1 Standard Forms

Page 40: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms and Maxterms

• Write down in boolean expression

• Write down in Sum of Minterm form

F(X, Y, Z) = ΠM(2,3,7)

F

F

Exerci

se

P1 Standard Forms

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

Page 41: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Minterms and Maxterms

• Write down in boolean expression

• Write down in Sum of Minterm form

F(X, Y, Z) = ΠM(2,3,7)

F

F

Exerci

se

P1 Standard Forms

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

F = Σm(2,3,7)

Page 42: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Sum of Products

• Sum of Minterm can come directly from the truth table

• Sum of Product: simplified version of Sum of Minterm

F(X, Y, Z) = Σm(0,1,2,6)= XYZ + XYZ + XYZ + XYZ= XY + YZ

Concep

t

P1 Standard Forms

Page 43: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Sum of Products

• Sum of Minterm can come directly from the truth table

• Sum of Product: simplified version of Sum of Minterm

F(X, Y, Z) = Σm(0,1,2,6)= XYZ + XYZ + XYZ + XYZ= XY + YZ

Concep

t

P1 Standard Forms

Page 44: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Sum of Products

• Sum of Minterm can come directly from the truth table

• Sum of Product: simplified version of Sum of Minterm

F(X, Y, Z) = Σm(0,1,2,6)= XYZ + XYZ + XYZ + XYZ= XY + YZ

Concep

t

P1 Standard Forms

Page 45: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Product of Sums

• Product of Maxterms can also come directly from the truth table

• Product of Sums: simplified version of Product of Maxterms

F(X, Y, Z) = ΠM(0,1,2,6)= (X + Y + Z)(X + Y + Z)(X + Y + Z)(X + Y + Z)= (X + Y)(Y + Z)

Concep

t

P1 Standard Forms

Page 46: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Product of Sums

• Product of Maxterms can also come directly from the truth table

• Product of Sums: simplified version of Product of Maxterms

F(X, Y, Z) = ΠM(0,1,2,6)= (X + Y + Z)(X + Y + Z)(X + Y + Z)(X + Y + Z)= (X + Y)(Y + Z)

Concep

t

P1 Standard Forms

Page 47: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Product of Sums

• Product of Maxterms can also come directly from the truth table

• Product of Sums: simplified version of Product of Maxterms

F(X, Y, Z) = ΠM(0,1,2,6)= (X + Y + Z)(X + Y + Z)(X + Y + Z)(X + Y + Z)= (X + Y)(Y + Z)

Concep

t

P1 Standard Forms

Page 48: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Summary

Review

P2 Arithmetics

Page 49: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Summary

• Minterm/Maxterm

Review

P2 Arithmetics

Page 50: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Summary

• Minterm/Maxterm

• Sum of Products

Review

P2 Arithmetics

Page 51: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Summary

• Minterm/Maxterm

• Sum of Products

• Product of Sums

Review

P2 Arithmetics

Page 52: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Boolean Algebra II

Summary

P2 Exercise

Exercises!

Page 53: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Boolean Algebra

Difficulty: Simple

Obtain the truth table of the following function, and ex press each function in sum-of-minterms and product-of-maxterms form:

• (XY + Z)(Y + XZ)

Exerci

se

P2 Exercise

Page 54: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Boolean AlgebraDifficulty: Simple

For the Boolean functions and , as given in the following truth table:

• List the minterms and maxterms of each function

• List the minterms of and

• List the minterms of and

E F

E F

E + F EF

P2 Exercise

X Y Z E F

0 0 0 0 1

0 0 1 1 0

0 1 0 1 1

0 1 1 0 0

1 0 0 1 1

1 0 1 0 0

1 1 0 1 0

1 1 1 0 1

Exerci

se

Page 55: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Boolean Algebra

Difficulty: Simple

For the Boolean functions and , as given in the following truth table:

• Express and in sum-of-minterms algebraic form

• Simplify and to expressions with a minimum of literals

E F

E F

E F

P2 Exercise

X Y Z E F

0 0 0 0 1

0 0 1 1 0

0 1 0 1 1

0 1 1 0 0

1 0 0 1 1

1 0 1 0 0

1 1 0 1 0

1 1 1 0 1

Exerci

se

Page 56: #04-2020-1004-106 Lecture2 Combinational Logical Circuits III€¦ · • Sum of Minterm can come directly from the truth table • Sum of Product: simplified version of Sum of Minterm

Boolean Algebra

Difficulty: Mid

Convert the following expressions into sum-of-products and product-of-sums form

(AB + C)(B + CD)

X + X(X + Y)(Y + Z)

P2 Exercise

Exerci

se