1 / 24

CPSC 171 Introduction to Computer Science

CPSC 171 Introduction to Computer Science. Boolean Logic, Gates, & Circuits. Announcements. Read Chapter 4 Exam, Oct 2 nd in class. Boolean Logic. A Boolean variable , A, is either true or false A Boolean expression , (A AND B), evaluates to either true or false

Télécharger la présentation

CPSC 171 Introduction to Computer Science

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CPSC 171 Introduction to Computer Science Boolean Logic, Gates, & Circuits

  2. Announcements • Read Chapter 4 • Exam, Oct 2nd in class

  3. Boolean Logic • A Boolean variable, A, is either true or false • A Boolean expression, (A AND B), evaluates to either true or false • Boolean operators include: • AND (& • ) • OR ( + ) • NOT (a bar ' ¬ ~)

  4. Boolean Operators • a AND b true only when A and B are both true • a OR b true when A is true, B is true, or both are true • NOT a true when A is false

  5. Truth Tables Truth tables can be used to capture when an expression is true, given its inputs You make truth tables for AND and NOT

  6. Example Boolean Expressions (a AND b) OR (NOT a AND c) a·b + ~a·c ab+āc Truth tables can be made for complex expressions as well

  7. Boolean Logic (continued) • Example: (a AND b) OR ((NOT b) and (NOT a))

  8. Gates • Gates • Hardware devices built from transistors to mimic Boolean logic • An electronic device that operates on a collection of binary inputs to produce a single binary output • AND gate (page 161 in text) • Two input lines, one output line • Outputs a 1 when both inputs are 1

  9. Gates (continued) • OR gate (page 163 in text) • Two input lines, one output line • Outputs a 1 when either input is 1 • NOT gate (page 161 in text • One input line, one output line • Outputs a 1 when input is 0 and vice versa

  10. Figure 4.15 The Three Basic Gates and Their Symbols

  11. Circuits • A collection of logic gates that transforms a set of binary inputs into a set of binary outputs • Wire gates together keeping constraints for the number of inputs to any gate

  12. a b c d Example Circuit 1 1 0 • If a, b, c, and d are all true the output can be determined by tracing through the circuit output 1 0 1 1 1

  13. Designing Circuits A circuit construction algorithm • Truth Table Construction Determine outputs for every possible input • Sub-expression Construction (using AND and NOT gates) For each output find the rows that are 1 and build a sub-expression that is true for the exact input • Sub-expression combination (using OR gates) Take each subexpression and combine them, 2 at a time, using OR gates • Circuit Diagram Production Construct final circuit by converting Boolean operators into gates

  14. Example Circuit Design Design a 3-input circuit that is true if exactly two inputs are true, and false otherwise You Try it: Design a 2-input circuit that is true if the inputs are the same, and false otherwise

  15. Examples of Circuit Design and Construction • Compare-for-equality circuit • Addition circuit • Both circuits can be built using the circuit design algorithm

  16. A Compare-for-Equality Circuit • CE compares two unsigned binary integers for equality • Built by combining together 1-bit comparison circuits (1-CE) • Integers are equal if corresponding bits are equal (AND together 1-CD circuits for each pair of bits)

  17. A Compare-for-Equality Circuit (continued) • 1-CE circuit truth table

  18. A Compare-for-Equality Circuit (continued) • 1-CE Boolean expression • First case: (NOT a) AND (NOT b) • Second case: a AND b • Combined: ((NOT a) AND (NOT b)) OR (a AND b)

  19. Figure 4.22 One-Bit Compare-for-Equality Circuit

  20. N-Bit Compare for Equality Circuit • AND together the 1-CE circuits, two at a time

  21. An Addition Circuit • Adds two unsigned binary integers, setting output bits and an overflow • Built from 1-bit adders (1-ADD) • Starting with rightmost bits, each pair produces • A value for that order • A carry bit for next place to the left

  22. An Addition Circuit (continued) • 1-ADD truth table • Input • One bit from each input integer • One carry bit (always zero for rightmost bit) • Output • One bit for output place value • One carry bit

  23. Figure 4.24 The 1-ADD Circuit and Truth Table

  24. An Addition Circuit (continued) • Building the full adder • Put rightmost bits into 1-ADD, with zero for the input carry • Send 1-ADD’s output value to output, and put its carry value as input to 1-ADD for next bits to left • Repeat process for all bits • See pg 174, 175, 176

More Related