CS代考 COMP 273 3 – combinational logic 1 Jan. 18, 2016 – cscodehelp代写

COMP 273 3 – combinational logic 1 Jan. 18, 2016
In lectures 1 and 2, we looked at representations of numbers. For the case of integers, we saw that we could perform addition of two numbers using a binary representation and using the same algorithm that you used in grade school. I also argued that if you represent negative numbers using twos complement, then you can do addition with negative numbers as well. In lecture 4, we will see how to implement the addition algorithm using circuits. Before we can do so, we need to review some basic logic and use it to build up circuits.
Truth tables
Let A and B be two binary valued variables, that is, A,B each can take values in {0,1}. If we associate the value 0 with FALSE and the value 1 with TRUE, then we can make logical expressions using such binary valued variables. We make such expressions using the binary operators AND, OR, and the unary operator NOT. Let A · B denote AND(A, B). Let A + B denote OR(A, B). Let A denotes NOT(A). The AND and OR operators are defined by the following truth table.
ABA·BA+B 0000 0101 1001 1111
The unary operator NOT is defined by the truth table:
Since a truth table of two input variables has four rows, it follows that there are 24 = 16 possible output functions (that is, possible columns in the truth table). The operators AND and OR are just two of these 16 possible output functions. Three other output functions that are commonly used are NAND (not and), NOR (not or), and XOR (exclusive or). These are defined as follows.
ABA·BA+BA·BA+BA⊕B 0000110 0101101 1001101 1111000
To justify why the symbols “+” and “·” are used to represent OR and AND operators, I would have to spend some time talking about boolean algebra. This might be of interest to some of you, but it won’t take us in the direction we want to go in this course. Instead, I will give you a brief introduction to the topic and then focus on how to use the logical expressions to build up digital circuits in a computer.
last updated: 19th Jan, 2016 1

3 – combinational logic 1
Jan. 18, 2016
Laws of Boolean Algebra
one and zero
commutative
associative
distributive law:
(A+B)+C=A+(B+C)
A · (B + C) = (A · B) + (A · C)
(A · B) · C = A · (B · C) (A·B)+C =(A+C)·(B+C)
A·B=A+B A+B=A·B
These laws capture the logical reasoning that you carry out in your head when you evaluate the truth of expressions formed using OR, NOT, AND. But they are more than this. The laws also give a set of rules for automatically evaluating and re-writing such expressions. For example, the commutative law allows you to swap the order of two terms; De Morgan’s Laws allows you to swap the order of the NOT with either of the OR or AND operators, etc.
I encourage you to memorize the names of the laws. Although I will not examine you on this, these names are not just used in Boolean Algebra; they are used in Algebra in many other situations. At the very least, you should convince yourself that you already know the laws of Boolean Algebra since you use them everyday in reasoning about the world. However, you should understand what each of the laws says, and you should make sure that you agree with each of the laws. In particular, note that most of these laws correspond to the rule so addition and multiplication with numbers, but not all do. The second distributive law generally does not.
On the last page I wrote truth tables for basic binary and unary operators. We can also write truth tables for expressions that are built out of these operators. Here is an example:
Y = A·B·C·(A·B+A·C)
The last column Y not necessary here, but I’ll discuss it on the next page.
A B C A·B·C A·B·C A·B A·C A·B+A·C Y Y 0000100001 0010100001 0100100001 0110100001 1000100001 1010101110 1100110110 1111011101
last updated: 19th Jan, 2016 2

COMP 273 3 – combinational logic 1 Jan. 18, 2016
Sum-of-products and product-of-sums (two level logic)
Logical expressions can get very complicated. If a logical expression has n different variables then there are 2n combinations of values of these variables, and hence 2n rows in the the truth table. However, once the expression is evaluated, there are simple ways to rewrite the expression, as we show next.
Suppose that Y were some horribly long expression with the A,B,C variables, and that we computed the values of Y for the various combinations of A,B,C. We think of Y as being the output and A,B,C as being the input variables. We can write Y in two simple ways. The first is called a sum of products. For the example on the previous page:
Y =A·B·C+A·B·C
since “·” is a product and “+” is a sum. The two terms correspond to the two 1’s in the Y column of the above table.
The second is called a product-of-sums. To compute the product-of-sums, we use a trick. First, we write Y as a sum-of-products. For the example on the previous page, see the rightmost column:
Y =A·B·C + A·B·C + A·B·C + A·B·C + A·B·C + A·B·C and then we negate both sides.
Y =(A·B·C) · (A·B·C) · (A·B·C) · (A·B·C) · (A·B·C) · (A·B·C)
We then apply De Morgan’s laws within each term. Here you must convince yourself that de Morgan’s laws hold for n variables, not just two variables. In the case below, we have three variables.
Y =(A+B+C)·(A+B+C)·(A+B+C)·(A+B+C)·(A+B+C)·(A+B+C)
If we have n input variables, then writing our output as a sum-of-products or product-of-sums might involve as many as 2n terms, one for each row. However, it has the advantage that it only involves two levels of binary operations (first OR then AND, or vice-versa).
Don’t cares
If we have m input variables and n output variables, then the truth table has 2m rows. However, sometimes we don’t need to write all the rows because certain combinations of the inputs give the same output. For example, take
Y =A·B·C+A
The second expression is really the sum of four expressions which have all combinations of B and C. Alternatively, the second expression can be thought of as saying A and “I don’t care what B and C are”. We denote such “don’t care’s” in the truth table with x symbols.
0xx1 1000 1011 1100 1110
last updated: 19th Jan, 2016 3

COMP 273 3 – combinational logic 1 Jan. 18, 2016
Logic Gates
Computers solve for expressions ”Y = …” using electronic circuits, called logic gates, which are composed of resistors and transistors, and other elements. Transistors are basic circuits typically made from silicon and other elements. (To understand how they work, you would need to spend a few semesters in the physics department.) Transistors were invented in the 1940s at Bell Labs, and the inventors won the for it in 1956.
We will not discuss how transistors work. Rather we will work at the gate level. A gate implements one of the binary operators defined above, or the unary operation NOT. Examples of the gates we will use are shown below. These are standard symbols and you will need to memorize them.
AND NAND NOT
OR NOR XOR
The inputs and outputs to gates are wires which have one of two voltages (often called low and high, or 0 and 1). Often we will put more than two inputs into an AND or OR gate. This is allowed because of the associative law of Boolean algebra. (The underlying physical circuit would have to be changed, but we don’t concern ourselves with this lower level.) Also note that the commutative law of Boolean algebra says that the ordering of the wires into a gate doesn’t matter.
Combinational (or Combinatorial) Circuits Example 1
Consider a circuit that computes the value of the following expression, where A,B,C are three input variables and Y is the output variable:
Y = A·B+A·C
Whatever binary values are given to the input variables, the output Y will correspond to the truth
value of the logical expression.
last updated: 19th Jan, 2016 4

3 – combinational logic 1
Jan. 18, 2016
The black dot in this figure indicates that input wire A branches into two input wires.
We can write the XOR gate using a sum-of-products
Y = A⊕B=A·B+A·B
and the circuit is shown below. (We could have also used a product-of-sums.)
Consider a circuit,
Y =S·A+S·B
This circuit is called a multiplexor or selector. What does this circuit do? If S is true, then Y is given the value B whereas if S is false then Y is given the value A. Such a circuit implements the familiar statement:
then Y:=B else Y:=A
last updated: 19th Jan, 2016 5

Leave a Reply

Your email address will not be published. Required fields are marked *