Why is the name half-adder used to represent the half-adder?

Problem Detail: I have recently came across half-adders and full adders in my Logic Network lectures. I have somewhat understood the theory, but I am still unable to understand the reason why they called them in that name? I mean, is there any reason why half-adders have the name ‘half-adders’?

Asked By : Mohammed Fawzan

Answered By : Manishearth

With a full adder, you can get all outputs from (0,0) to (1,1). With a half adder, you can never get (1,1), which makes it, in a way, incomplete. Also, in practice a full adder is used more than a bare half adder. For example, addition of binary numbers (one of the most common operations needed by a microprocessor) is done by chaining full adders: enter image description here (4-bit adder, taken from Wikipedia) In the end, since full adders are the ones used for adding, we call them “full” adders. And since a full adder can be made by joining up two half adders with an OR gate, the half adder becomes “half” an adder.
Best Answer from StackOverflow

Question Source : http://cs.stackexchange.com/questions/10710