Draw out the circuit
2.Simplify the output expressions. 3.Implement these circuits using AND,OR and XOR gates. 4. Cascade a half adder into a full adder and show how you can add two 2-bit numbers Demonstrate this circuit to your lab instructor 5.QuestionWhat happens to the propagation delay of the N-bit full adder as N is increased from 2 bits to 32 bits? Compare and contrast this method of building an adder with the carry look ahead method described in your text book.What are the benefits and drawbacks ofeach? Part 2:3-bit by 2-bit Multiplier Introduction Mathematics is one of the most common tasks a computer or other digital circuit is required to perform. Multiplication is a basic tool for mathematics,and is simply a series of additions of products, which is simple for humans at least.In a digital circuit, we are working with binary valuesand therefore ANDs can be used to handle the product portion of the circuit.The multiplication algorithm for this lab follows the algonithm taught to people during primary education. Figure 1 is a graphical representation of the algorithm for multiplying a 3-bit binary number,B,by a 2-bit binary number,A.
Solution bit 4Solution bit 3
Solution bit 2 B2
Solution bit Solution bit 0 B1 BO A1 AO A0-B2 A0B1 AO-BO A1-B2 A1-B1 A1-BO CoMtA1B2+CoutAO-B2+A1B1+CoxtAO-B1+A1-BO AO-BO Figure 1.Graphical representation of multiplication algorithm
Procedure
Using the full and half adder designs from part I of this lab, and the cquations outlined in Figure 1. design and build a 3 bit X 2 bit multiplier.Demonstrate your working circuit to the lab instructor.