Logic Circuits

As has been emphasized many times, the circuits of a computer are based on the laws of logic rather than the laws of arithmetic --- the computer is a logic machine. At the hardware level the computer is made up of many switches (which we think of as something that can be either on, allowing current to flow through, or off (no current)). Simple switches are combined to form gates which are the basic components of logic circuits in a computer. Any logic circuit can be constructed by combining three basic types of gates: and gates, or gates, and not gates. These gates correspond to the logic operators and, or, and not. (Actually only two types of gates are necessary -- for example, DeMorgan's law shows that any "and" expression can be re-written in terms of "or" and "not." In practice computers use other gates also such as an exclusive or gate.) A gate is just a circuit that takes one or more inputs and produces an output.

The not gate takes one input and inverts it (an input of 1 is changed to a 0; an input of 0 is changed to a 1). The basic AND gate takes two inputs and produces an output of 1 if and only if both inputs are 1. More generally an AND gate can take any number of inputs and produce an output of 1 if and only if all the inputs are 1. The OR gate takes two inputs and produces an output of 1 if and only if one or both of the inputs is 1 (the output is 0 only when both inputs are 0). More generally an OR gate takes n inputs and produces an output of 0 if and only if all inputs are 0. Note that each gate corresponds to a logic statement (where we think of 1 as T and 0 as F). For each gate we have a symbol representing the gate and summarize the output in a truth table.

Gate Symbol Logic Statement Truth Table
NOT ~p
  p  ~p
10
01
AND p∧q
  p    q  (p ∧ q)
111
100
010
000
OR p∨q
  p    q  (p ∨ q)
111
101
011
000

More complicated logic circuits are constructed by concatenating these basic gates. Just as basic gates have corresponding logic statements so do more complicated circuits. The behavior of the circuits can be summarized in a truth table that shows the output for each possible combination of inputs.

Examples: For each of the following circuits, write the corresponding logic statement and construct a truth table showing the outputs. (Note: The truth table can be constructed in one of two ways. One way is to use the statement and construct the table for it. The other way is to trace 1's and 0's through the circuit. Usually the statement method is faster.)

1.

To find the statement corresponding to this logic circuit it is usually easiest to trace through from the inputs writing the statement coming out of each gate.

TRUTH TABLE:

  p    q    p ∨ ~q    ~(p ∨ ~q)    ~(p ∨ ~q)∨p    ~(~(p ∨ ~q) ∨ p)  
111010
101010
010110
001001

2.

TRUTH TABLE:

  p    q    r    q ∧ ~r    ~p ∧ (q ∧ ~r)    ~(~p ∧ (q ∧ ~r))  
111001
110101
101001
100001
011001
010110
001001
000001

Simplifying Circuits Two circuits that produce the same output for the same input are logically equivalent. One method of determining a simpler circuit than a given one is to use the laws of logic to simplify the logic statement and then construct a circuit corresponding to the simpler statement. The goal is to minimize the number of gates in the circuit.

Example Find simpler but equivalent circuits to the two examples above.

1. We first use the laws of logic to simplify the statement (found above).

~(~(p ∨ ~q) ∨ p) ≡ (p ∨ ~q) ∧ ~p (Use DeMorgan's law and the double negative)
                            ≡ ~p ∧ (p ∨ ~q) (Commutative law -- just change the order)
                            ≡ (~p ∧ q) ∨ (~p ∧ ~q)    (Distributive law)
                            ≡ F ∨ (~p ∧ ~q) (p and not p is a contradiction)
                            ≡ ~p ∧ ~q (contradiction OR a statement is equivalent to the statement)
                            ≡ ~(p ∨ q) (DeMorgan's law --- "in reverse")

The circuit corresponding to this simpler statement is:

2.

~(~p ∧ (q ∧ ~r)) ≡ p ∨ ~(q ∧ ~r)    (DeMorgan's law and double negative)
                           ≡ p ∨ (~q ∨ r) (DeMorgan's law and double negative)

We can draw this using two or gates and a not gate

or using one three-input or gate and a not gate:

Designing Logic Circuits Suppose you are given a truth table and you want to design a logic circuit that will have exactly that truth table. What is the best way to go about it? In some simple cases you can tell immediately from the truth table. Suppose we have the following truth table.

  p    q  Output
110
101
010
000

We recognize this as the table for p and not q (the output is 1 only when both p and not q are 1) so the circuit would be...

For more complex truth tables it is easiest to design the circuit as a disjunction of simpler circuits called recognizers. A recognizer is a circuit that outputs a 1 for exactly one particular combination of inputs (for all others it outputs a 0). The example above is a recognizer because it outputs a 1 only when p is 1 and q is 0. To design a circuit for the following truth table,

  p    q  Output
111
100
010
001

we construct a recognizer for each case in the table where the output is 1. The statement p ∧ q has output 1 only when p is 1 and q is 1. This is the recognizer for the 1 in the first row of the truth table. The statement ~p ∧ ~q has output 1 only when p is 0 and q is 0 hence is the recognizer for the 1 in the last row of the truth table. We connect these recognizers with ∨ to get a statement that has 1's exactly in rows 1 and 4 of the truth table. We can check that this is correct by constructing the truth table.

  p    q    p ∨ q    ~p ∨ ~q    (p ∧ q) ∨ (~p ∧ ~q)  
11101
10000
01000
00011

Hence the logic circuit for the truth table is the circuit corresponding to the statement (p ∧ q) ∨ (~p ∧ ~q):

Example Suppose we want to design a logic circuit to test to see if two bits are equal. The circuit should have two inputs and output a 1 when the two inputs are equal; otherwise output a 0. We note that the truth table for this circuit is exactly the same as in the example above hence that circuit is the solution --- it tests for equality of its two input bits.

Example Suppose we want to design a circuit to add two bits. The two bits will be the input to the circuit and the sum will be the output. To design this circuit we need to look at the truth table for the output. What should we get when we add two bits? Clearly, 0 + 0 = 0 and 0 + 1 = 1 and 1 + 0 = 1 but what is 1 + 1 in binary? The answer is 10 which is two bits rather than one hence our circuit needs two outputs --- one we will call the sum bit and the other the carry bit (for 1 + 1 the sum bit is 0 and the carry is 1). The truth table for the adder is

  p    q    Sum    Carry  
1101
1010
0110
0000

We work with each output separately. Clearly the carry bit is just "and" --- p ∧ q. The sum bit output has two ones in the table so we write a recognizer for each and combine them with or to get (p ∧ ~q) ∨ (~p ∧ q). We combine these in one diagram. This is called a half-adder. A full adder has three inputs --- the two bits being added plus a carry from the preceding position.

Half-Adder Circuit

Circuits with more 1's than 0's in the output When there are more 1's than 0's in the output column of the truth table for a circuit, it is usually easier to first construct a circuit that corresponds to the negation of the table, then send that output through a not gate. For example, to construct a circuit for the following truth table

  p    q  Output
111
101
010
001

we construct statement for the circuit with output

  p    q  Output
110
100
011
000

which is just the recognizer ~p ∧ q. Now we negate that statement to get ~(~p ∧ q) which is the statement for the following circuit.

Or equivalently, the circuit for p ∨ ~q:

TO THINK ABOUT: This method isn't the only possibility. Note that by DeMorgan's law the statement above is equivalent to p ∨ ~q. We could have come up with this initially by doing something similar to our original plan only reversing the ands and ors. What would be the appropriate strategy?

Designing Logic Circuits for Real Computers Clearly logic circuits for modern computers involve many gates and our "by hand" methods wouldn't get us very far. The early Pentium microprocessor for example contains 3.1 million transistors (the INTEL 486 microprocessor contains 1 million transistors) while the Pentium III contains about 6 million transistors. Each and gate and each or gate take 3 transistors while a not gate is just one. NAND gates (the negation of AND) and NOR gates (the negation of OR) take 2 transistors each. Hence the Pentium III would contain about 3 million gates. It should come as no surprise that complex computer circuits these days are designed with the help of computers using CAD (Computer Aided Design) software.

Exercises

  1. Let p represent the statement "Jack went up the hill" and q represent "Jill went up the hill." Write each of the following statements in symbolic form.
    1. Jack and Jill went up the hill.

    2. Jack went up the hill but Jill didn't.

    3. Neither Jack nor Jill went up the hill.

    4. Jack went up the hill or Jill went up the hill (or both).

    5. It is not true that Jack and Jill went up the hill.

    6. If Jack went up the hill, then Jill did not go up the hill.

  2. Determine the correct search criterion (using and, or, and not) to search a periodicals database for the following.
    1. all articles that discuss either Babbage or von Neumann

    2. all articles about telephones and computers

    3. all articles about uses of computers in education

    4. all articles about computer science but not programming

  3. Construct a truth table for each of the following statements. Identify any tautologies or contradictions.
    1. ~(p ∨ ~q)

    2. (~p ∧ q) ∨ ~q

    3. ~(~p ∧ q) ∨ (~q ∨ q)

    4. ~p ∧ (q ∨ ~r)

    5. (p ∧ ~r) ∧ (~q ∨ r)

    6. ~[(~p ∧ ~r) ∧ (~q ∨ r)]

  4. Construct a truth table for each of the following statements.
    1. ~p -> ~q

    2. (p ∧ ~q) -> (~p ∨ ~q)

    3. p ∧ ~(q -> ~r)

    4. (p ∨ ~q) -> (q ∧ r)

    5. ~[(p ∧ q) -> (~p -> r)]

    1. Construct truth tables to show that DeMorgan's laws hold.

    2. Construct truth tables to show that the distributive laws hold.

    3. Construct truth tables to show that the adsorption laws hold.

  5. Determine which of the following pairs of statements are logically equivalent.
    1. (p ∨ q) ∧ r; p ∨ (q ∧ r)

    2. ~(~p ∧ ~q); p ∨ q

    3. ~(~p ∧ ~q); p ∧ q (use some of your work from part (b))

    4. ~(~(p ∧ q) ∨ p); ~p ∨ q

    5. ~(~(p ∧ q) ∨ p); F (use your work from part (d))

    6. p ∧ ( ~(~p ∨ q) ∨ (~p ∧ q)); p ∧ ~q

    7. ~(p -> q); ~p -> ~q

    8. p ∧ (q -> r); (p ∧ q) -> r

  6. Use the laws of logic to simplify each of the following statements.

    1. ~ (~p ∧ q)

    2. p ∨ (~p ∧ q)

    3. ~ [ ~p ∧ (~p ∧ q) ]

    4. p ∨ ~(q ∧ ~r)

    5. (p ∧ q ∧ ~r) ∨ (p ∧ q ∧ r)

  7. Use the laws of logic to verify the equivalences you found in #6.

  8. Write a logic statement corresponding to each of the following logic circuits. For each construct a truth table showing the output of the circuit.

  9. Use the laws of logic to simplify the statements for the circuits in #9 and, for each, find a simpler, but equivalent, circuit. Draw the new circuits.

  10. Construct a circuit that has the given truth table for each of the following.
    1.   p    q  Output
      111
      100
      011
      001

    2.   p    q    r  Output
      1110
      1100
      1011
      1000
      0110
      0101
      0010
      0000

    3.   p    q    r  Output
      1111
      1101
      1011
      1000
      0111
      0101
      0010
      0001

  11. Construct a logic circuit that tests to determine if two bits are not equal.

  12. Construct a circuit that takes two inputs p and q and outputs a 1 if and only if p is less than q. Otherwise the output is 0.

  13. Construct a circuit that takes three inputs p, q, and r and outputs a 1 if and only if exactly two of the inputs are 1.