cse 311 foundations of
play

CSE 311 Foundations of 12.1 12.3 7 th Edition Computing I 11.1 - PDF document

Announcements Reading assignments Boolean Algebra CSE 311 Foundations of 12.1 12.3 7 th Edition Computing I 11.1 11.3 6 th Edition 10.1 10.3 5 th Edition Lecture 4, Boolean Logic Predicates and Quantifiers


  1. Announcements • Reading assignments – Boolean Algebra CSE 311 Foundations of • 12.1 – 12.3 7 th Edition Computing I • 11.1 – 11.3 6 th Edition • 10.1 – 10.3 5 th Edition Lecture 4, Boolean Logic – Predicates and Quantifiers Autumn 2012 • 1.4 7 th Edition • 1.3 5 th and 6 th Edition Autumn 2012 CSE 311 1 Autumn 2012 CSE 311 2 Boolean logic A quick combinational logic example • Combinational logic • Calendar subsystem: number of days in a – output t = F(input t ) month (to control watch display) • Sequential logic – used in controlling the display of a wrist-watch – output t = F(output t-1 , input t ) LCD screen • output dependent on history • concept of a time step (clock) – inputs: month, leap year flag • An algebraic structure consists of – a set of elements B = {0, 1} – outputs: number of days – binary operations { + , • } (OR, AND) – and a unary operation { ’ } (NOT ) Autumn 2012 CSE 311 3 Autumn 2012 CSE 311 4 Implementation as a Implementation in software combinational digital system integer number_of_days ( month, leap_year_flag) { • Encoding: switch (month) { – how many bits for each input/output? case 1: return (31); – binary number for month month leap d28 d29 d30 d31 0000 – – – – – – four wires for 28, 29, 30, and 31 case 2: if (leap_year_flag == 1) then 0001 – 0 0 0 1 0010 0 1 0 0 0 return (29) else return (28); 0010 1 0 1 0 0 0011 – 0 0 0 1 case 3: return (31); month leap 0100 – 0 0 1 0 0101 – 0 0 0 1 ... 0110 – 0 0 1 0 0111 – 0 0 0 1 case 12: return (31); 1000 – 0 0 0 1 1001 – 0 0 1 0 default: return (0); 1010 – 0 0 0 1 1011 – 0 0 1 0 } 1100 – 0 0 0 1 1101 – – – – – } d28 d29 d30 d31 1110 – – – – – 1111 – – – – – Autumn 2012 CSE 311 5 Autumn 2012 CSE 311 6

  2. Combinational example (cont.) Combinational example (cont.) • Truth-table to logic to switches to gates d28 = m8'•m4'•m2•m1'•leap’ – d28 = “1 when month=0010 and leap=0” d29 = m8'•m4'•m2•m1'•leap – d28 = m8'•m4'•m2•m1'•leap' d30 = (m8'•m4•m2'•m1') + (m8'•m4•m2•m1') + (m8•m4'•m2'•m1) + (m8•m4'•m2•m1) – d31 = “1 when month=0001 or month=0011 or ... month=1100” = (m8'•m4•m1') + (m8•m4'•m1) – d31 = (m8'•m4'•m2'•m1) + (m8'•m4'•m2•m1) + ... d31 = (m8'•m4'•m2'•m1) + (m8'•m4'•m2•m1) + (m8•m4•m2'•m1') (m8'•m4•m2'•m1) + (m8'•m4•m2•m1) + month leap d28 d29 d30 d31 – d31 = can we simplify more? 0000 – – – – – (m8•m4'•m2'•m1') + (m8•m4'•m2•m1') + 0001 – 0 0 0 1 (m8•m4•m2'•m1') 0010 0 1 0 0 0 0010 1 0 1 0 0 0011 – 0 0 0 1 0100 – 0 0 1 0 ... 1100 – 0 0 0 1 1101 – – – – – 111 – – – – – – Autumn 2012 CSE 311 Autumn 2012 CSE 311 7 8 Switches: basic element of physical Combinational logic implementations • Switches • Implementing a simple circuit (arrow shows • Basic logic and truth tables action if wire changes to “1”): • Logic functions • A Z Boolean algebra • Proofs by re-writing and by perfect induction close switch (if A is “1” or asserted) and turn on light bulb (Z) Z A open switch (if A is “0” or unasserted) and turn off light bulb (Z) Z  A Autumn 2012 CSE 311 9 Autumn 2012 CSE 311 10 Switches (cont.) Transistor networks • Modern digital systems are designed in CMOS • Compose switches into more complex ones technology (Boolean functions): – MOS stands for Metal-Oxide on Semiconductor A B AND Z  A and B – C is for complementary because there are both normally-open and normally-closed switches A • MOS transistors act as voltage-controlled OR switches Z  A or B – similar, though easier to work with than relays. B Autumn 2012 CSE 311 11 Autumn 2012 CSE 311 12

  3. Possible logic functions of two Multi-input logic gates variables • CMOS logic gates are inverting • There are 16 possible functions of 2 input variables: – Easy to implement NAND, NOR, NOT – in general, there are 2**(2**n) functions of n inputs while AND, OR, and Buffer are harder Claude Shannon – 1938 X 1.8V 1.8V 1.8V 1.8V F Y X X Y Z X Y Y X Y 16 possible functions (F 0 – F 15 ) 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 1 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 Z Z 1 0 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 X Y Z 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 X 0 0 1 X 0 1 1 0 1 X Y not Y not X X xor Y X = Y 1 0 1 X and Y X nand Y Y not (X and Y) 1 1 0 X or Y X nor Y Y not (X or Y) 0V 0V Autumn 2012 CSE 311 13 Autumn 2012 CSE 311 14 Boolean algebra Logic functions and Boolean algebra • An algebraic structure consists of Any logic function that can be expressed as a truth table can be written as an expression in Boolean algebra using the operators: ’, +, and • – a set of elements B George Boole – 1854 X, Y are Boolean algebra variables – binary operations { + , • } X Y X • Y X Y X’ X’ • Y – and a unary operation { ’ } 0 0 0 0 0 1 0 0 1 0 0 1 1 1 – such that the following axioms hold: 1 0 0 1 0 0 0 1 1 1 1 1 0 0 1. the set B contains at least two elements: a, b X Y X’ Y’ X • Y X’ • Y’ ( X • Y ) + ( X’ • Y’ ) 2. closure: a + b is in B a • b is in B 0 0 1 1 0 1 1 3. commutativity: a + b = b + a a • b = b • a 0 1 1 0 0 0 0 ( X • Y ) + ( X’ • Y’ )  X = Y 4. associativity: a + (b + c) = (a + b) + c a • (b • c) = (a • b) • c 1 0 0 1 0 0 0 5. identity: a + 0 = a a • 1 = a 1 1 0 0 1 0 1 6. distributivity: a + (b • c) = (a + b) • (a + c) a • (b + c) = (a • b) + (a • c) 7. complementarity: a + a’ = 1 a • a’ = 0 Boolean expression that is true when the variables X and Y have the same value and false, otherwise Autumn 2012 CSE 311 15 Autumn 2012 CSE 311 16 Axioms and theorems of Boolean algebra Axioms and theorems of Boolean (cont.) algebra identity uniting: 1. X + 0 = X 1D. X • 1 = X 9. X • Y + X • Y’ = X 9D. (X + Y) • (X + Y’) = X null absorption: 2. X + 1 = 1 2D. X • 0 = 0 10. X + X • Y = X 10D. X • (X + Y) = X idempotency: 11. (X + Y’) • Y = X • Y 11D. (X • Y’) + Y = X + Y 3. X + X = X 3D. X • X = X factoring: involution: 12. (X + Y) • (X’ + Z) = 12D. X • Y + X’ • Z = 4. (X’)’ = X X • Z + X’ • Y (X + Z) • (X’ + Y) complementarity: consensus: 5. X + X’ = 1 5D. X • X’ = 0 13. (X • Y) + (Y • Z) + (X’ • Z) = 13D. (X + Y) • (Y + Z) • (X’ + Z) = commutatively: X • Y + X’ • Z (X + Y) • (X’ + Z) 6. X + Y = Y + X 6D. X • Y = Y • X associativity: de Morgan’s: 7. (X + Y) + Z = X + (Y + Z) 7D. (X • Y) • Z = X • (Y • Z) 14. (X + Y + ...)’ = X’ • Y’ • ... 14D. (X • Y • ...)’ = X’ + Y’ + ... distributivity: 8. X • (Y + Z) = (X • Y) + (X • Z) 8D. X + (Y • Z) = (X + Y) • (X + Z) Autumn 2012 CSE 311 17 Autumn 2012 CSE 311 18

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend