Presentation is loading. Please wait.

Presentation is loading. Please wait.

BOOLEAN ALGEBRA. A Mathematical notation used to represent the function of the Digital circuit. A notation that allows variables & constants to have only.

Similar presentations


Presentation on theme: "BOOLEAN ALGEBRA. A Mathematical notation used to represent the function of the Digital circuit. A notation that allows variables & constants to have only."— Presentation transcript:

1 BOOLEAN ALGEBRA

2 A Mathematical notation used to represent the function of the Digital circuit. A notation that allows variables & constants to have only 2 possible values 0 & 1. The Term Boolean Algebra honors a fascinating English mathematician; George Boole BOOLEAN FUNCTIONS -- An expression formed with Binary variables the two operators OR & AND & a UNARY operator not parenthesis & equal sign for the given variables the function can either be One or Zero.

3 EQUATION No.BOOLEAN EQUATIONDESCRIPTION 1 X + Y = Y + X Commutative Property XY = YX 2 X + (Y + Z) = (X + Y) + Z Associative Property X(YZ) = (XY)Z 3 X X = X Idempotent Property X + X = X 4 X 1 = X Identity Property X + 1 = 1 5 X 0 = 0 Null Property X + 0 = X 6 X (Y + Z) = XY + XZ Distributive Property (XY) + (XZ) = X + YZ 7 X X = 0 Negation Property X + X = 1 8(X) = XDouble Negation Property 9 X + XY = X Absorption Property X (X + Y) = X X + (XY) = X + Y

4 BOOLEAN ALGEBRA The Rules of Boolean Algebra : AND Operations (·) 0·0 = 0 A·0 = 0 1·0 = 0 A·1 = A 0·1 = 0 A·A = A 1·1 = 1 A·A' = 0 OR Operations (+) 0+0 = 0 A+0 = A 1+0 = 1 A+1 = 1 0+1 = 1 A+A = A 1+1 = 1 A+A' = 1 NOT Operations (') 0' = 1 A'' = A 1' = 0 Associative Law (A·B)·C = A·(B·C) = A·B·C (A+B)+C = A+(B+C) = A+B+C Distributive Law A·(B+C) = (A·B) + (A·C) A+(B·C) = (A+B) · (A+C) Commutative Law A·B = B·A A+B = B+A Precedence AB = A·B A·B+C = (A·B) + C A+B·C = A + (B·C) DeMorgan's Theorem (A·B)' = A' + B' (NAND) (A+B)' = A' · B' (NOR)

5 DE MORGANS THEOREM A mathematician named De Morgan developed a pair of important rules regarding group terms complementation in Boolean algebra. He states that inversion or negation of a Boolean expression may be accomplished by negating each variable and changing each AND to OR each OR to AND.

6 De Morgans Theorem Equations Is equivalent to (xy) = x + y (x+y ) = xy

7 This statement can be further summarized to: The First Theorem states that a NOR gate is Equivalent to a bubbled AND gate. The second Theorem States that a NAND Gate is equivalent to a Bubbled OR Gate. In these rule, two procedures are used to form a complement. The (+) symbol are replaced with (·) symbol or absence of operation, and (·)symbols with (+) symbol. Each term in the expression is then complemented. (A·B)' = A' + B' (NAND) (A+B)' = A' · B' (NOR )

8 NAND and NOR GATE IMPLEMENTATION

9 Another way of simplifying the circuit by using only the universal gates, NAND and NOR. NAND and NOR are known to be Universal Gates because they can function as other gates

10 BASIC GATES NAND Gate Implementation NOR Gate Implementation NOT Gate OR Gate AND Gate

11 Forms of Boolean Function

12 12 FORMS OF FUNCTIONS: CANONICAL Forms Boolean function expressed as Sum of Minterms or Product of Maxterms 1.MINTERM (denoted by lower case m) A single variable or product of several variables which may or may not be complemented A boolean expression containing ANDed Terms Example: A, AB, ABC F= A + AB + ABC

13 MAXTERM (denoted by the uppercase M) A single variable or sum of several variables A Boolean expression containing OR Terms. Example: A, A+B, A+B + C (A) (A+B) (A+B) (A + B + C) (A + B + C) 13 FORMS OF EQUATIONS:

14

15 MINTERM: F = ABC + ABC + A B C F( A,B,C ) = Σ m3 + m4 + m1 MAXTERM: F = (A+B+C) ( A+B+C )(A+ B +C) F( A,B,C ) = Π M4 + M3 + M6 MINTERM & MAXTERM Samples:

16 Sample Problem: MINTERM & MAXTERM Samples:

17 Standard Form of Equation: The term that form the function may be one or any number or literal. TWO TYPES: Sum of Product (SOP) A Boolean expression containing AND terms called PRODUCT of TERMS (one or more literals) Ex: F=Y + XY+XYZ PRODUCT OF SUM (POS) A Boolean expression containing OR terms called sum term. Each term may have any number of literals Ex: F=(X+Y) + (Y+Z)(X+YZ) SOP & POS Equations:

18

19 The Map Method K-MAPPING (Karnaugh) - Map a diagram made up of squares represents one minterm KARNAUGH MAP A chart or grid containing boxes called cells; each which represents one minterm. TYPES of MAP 1.Two Variable Map Consists of two variables 2. Three Variable Map A three variable map plotted in a map 3. FOUR Variable Map

20 K-MAPPING (Karnaugh) Steps: Construct the K-Map & place 1s in the squares corresponding to 1s in truth table;place zeros in the other squares. Examine the map for adjacent 1s & loop those 1s which are not adjacent to any other ones. Looping continue as there are pairs octet or quad that contains 1. You can still loop the one that is already looped if there are still other 1s left. Form the OR sum of all terms generated by each loop.

21 K-MAPPING (Karnaugh) The values of one variable appear across the top of the map, defining the column values, while the values of the other variable appear at the side, defining the values of the variable in each row. The Karnaugh map for the OR gate is completed by entering a '1' in each of the appropriate cells. Usually, you don't write in the '0's'. Within the map, adjacent cells containing 1's are grouped together in twos, fours, or eights. In this case, there is one horizontal and on vertical group of two. You indicate these groupings by drawing a circle round each one. The horizontal group corresponds to a B value of 1. In the left hand cell, A=0 and in the right hand cell, A=1. In other words, the value of A does not affect the outcome of the Boolean expression for these cells.

22 K-MAPPING (Karnaugh)

23 K-MAP Types:

24 K-MAPPING (Karnaugh)

25 Dont Care conditions: It is represented by a letter (X) in the truth table instead of 0 or 1 The Xs are treated either as 0 or 1s whichever leads to a simpler circuit. Five variable Map: Consists of 5 variables.It uses 32 squares. K-MAPPING (Karnaugh)

26 Example Dont Care! K-MAPPING (Karnaugh)


Download ppt "BOOLEAN ALGEBRA. A Mathematical notation used to represent the function of the Digital circuit. A notation that allows variables & constants to have only."

Similar presentations


Ads by Google