Homework 1 Outline of Solutions
Homework 1 Outline of Solutions
1. Using 6 bits to represent each number, write representations of 9 and -9, in 1’s
complement, 2’s complement, signed magnitude notation.
In 2’s complement , 1’s complement, and signed magnitude the number 9 is represented
as 001001
In 2’s complement, -9 is represented as 110111
In 1’s complement, -9 is represented as 110110
In signed magnitude, -9 is represented as 101001
6. Can you define the overflow conditions, when adding two 2’s complement numbers of
any length n, only in terms of the carry-in and carry-out of the sign bit (i.e., bit n-1) ?
Explain your answer.
If carry out of sign bit = carry into sign bit, then no overflow.
To see why this works, consider the two cases when we can have an overflow (1) add two
positive integers and result is negative or (2) add two negative integers and result is
positive.
For case (1): the MSB (i.e, the sign bit) is a 0 for both numbers. If we have a negative
result then it must mean that the carry into the sign bit was a 1, and the carry out was a 0
thus resulting in a 1 in the sign bit. Similar argument for case (2).
01110101
AND 11001001
= 01000001 (bitwise AND)
A’= 10001010
B’= 00110110
+1 00000001
= 11000001
8. Truth tables for (a) (A ORB) AND (NOT C) , (b) (A OR C) AND (A OR (NOT B))
A B C (A OR (a) ( A (A OR ( A OR (b) (A
B) OR B) (NOT B)) C) OR C)
AND AND
(NOT C) (A OR
NOT B)
0 0 0 0 0 1 0 0
0 0 1 0 0 1 1 1
0 1 0 1 1 0 0 0
0 1 1 1 0 0 1 0
1 0 0 1 1 1 1 1
1 0 1 1 0 1 1 1
1 1 0 1 1 1 1 1
1 1 1 1 0 1 1 1
ork 2 Outline of Solutions
Homewo
When is the
t ‘output’ =1 = ? When either
e of twoo conditions:: (1) A=0,B= =1 or (2) A=
=1,
B=0. Wh hen is the outtput =0? Wh
hen either off two series cconditions: ((1) A=0 and
B=0 or (2
2) A=1 and B=1.
B
For seriess conditions for output=0 0, the P typee transistor ‘ccloses’ whenn gate =0; thhe
N type clooses when gate=1. So fo or A=0,B=0 w we have twoo P transistorrs in series
with gate input to themm being A anda B. For A A=1,B=1, wee have two N transistors
in series with
w gate inp puts A,B. Th hese two are then laid ouut in parallel and
connected d to ground (i.e.,
( sink to ground).Thee output getss connected to ground (00)
when eithher of these two
t series off transistors aare switchedd.
From truth table, we can derive the boolean function – examine all 1’s in the rows
for each of the outputs. The function is the OR of minterms (AND of conditions
of x,y,z where output=1).
Therefore, we get:
a = x’y’z’ + xy’z’ + xy’z + xyz’
b= x’y’z’ + x’yz + xy’z + xyz’
c = x’y’z’ + x’yz’ + xy’z’ + xyz’
The simple (non-optimized) circuits can be drawn based on the above three
boolean functions using AND and OR gates.
Next, how many outputs do we have ? Each output xi is associated with a specific area in
the building. Based on the user code (i.e., 3 bit number), the output associated with each
area is set to a 1 or 0. We have the following areas/outputs:
X0 Public lobby
X1 Teaching labs
X2 Research labs
X3 Faculty offices area
X4 Dean’s Suite
X5 supply closet
X6 server room
Based on the access conditions described in the problem, we get the following truth table
(showing all outputs in one truth table)
a b c X0 X1 X2 X3 X4 X5 X6
0 0 0 1 1 1 1 1 0 0
0 0 1 1 1 1 1 1 1 0
0 1 0 1 1 1 1 0 0 0
0 1 1 1 1 0 0 0 0 1
1 0 0 1 0 0 0 0 0 0
1 0 1 1 0 1 0 0 0 0
1 1 0 1 1 1 1 0 1 1
1 1 1 0 0 0 0 0 0 0
Based on the above truth table, we can derive Boolean functions (and
corresponding circuits) for each of the 7 areas. For example,
X0 = NOT (a AND b AND c)
X1 = (a’b’c’) OR (a’b’c) OR (a’bc’) OR (a’bc) OR (abc’)
……
Using K-maps, we can simplify X1 to ( a’ OR bc’ )
4. The function being implemented can be obtained by tracing the output lines in the
circuit. Doing this we get:
If you trace the signals through the gates, we get F = F1+ F2. Next get the Boolean
functions for F1 and F2.
F1= x.H1 (i.e., x AND H1), and F2= G1 XOR G2.
G1 = NOT (H1 XOR H2)
G2 = H2 NAND z
H1 = x XOR y
H2 = y.z (i.e., y AND z).
Now substitute for H1, H2, G1, G2, F1, F2 to get:
F = (x AND (x XOR y)) + ((NOT ( (x XOR y) XOR (yz)) XOR ( (yz) NAND z))
Alternately, start with the truth table for the circuit. We have three input variables, x,y,z
and one output F.
Alternately, start with the truth table for the circuit. We have three input variables, x,y,z
and one output F.
x y z F
0 0 0 0
0 0 1 0
0 1 0 1
0 1 1 1
1 0 0 1
1 0 1 1
1 1 0 0
1 1 1 0
Based on the truth table (i.e., the rows that have Z=1), we can get a two level circuit by
providing an OR of min-terms.
F = x’yz’ + x’yz + xy’z’ + xy’z
Going a step further, we can draw the K-map and further simplify…
5. Create the Karnaugh maps and then simplify for the following function:
F(w,x,y,z) = w’x’y’z’ + w’x’y’z + w’x’yz’ + w’xyz’ + wx’y’z’ + wx’y’z + wx’yz’
From above we can get a simplified function: x’y’ + w’yz’ + x’yz’ (on the K-map, the
first term is indicated in red, the second in blue, and the third using underline).
6. What are the inputs to the “system”? These are the inputs (yes or no) from the experts.
There are four inputs A,B,C,D as follows:
A: Pain Webster
B: Meg A Cash
C: Madame Trelawney
D: Professor Lockhart
Each expert gives a 1 (yes) or 0 (No) as their input.
There is only one output from your system – decision to buy (with 1=Buy and 0 = do not
buy). Based on the description, on how you interpret their experts inputs, we get the
following truth table:
A B C D Buy
0 0 0 0 1
0 0 0 1 0
0 0 1 0 1
0 1 1 0 1
1 0 0 0 1
1 0 0 1 0
1 0 1 0 1
1 0 1 1 0
1 1 0 0 1
1 1 0 1 1
1 1 1 0 1
1 1 1 1 0