A half adder is a basic combinational logic circuit used to add two binary digits. It provides two outputs:
Sum — computed using an XOR gate: \( \text{Sum} = A \oplus B \)
Carry — computed using an AND gate: \( \text{Carry} = A \cdot B \)
When both inputs \( A = 1 \) and \( B = 1 \), we have: \[ \text{Sum} = 1 \oplus 1 = 0 \] \[ \text{Carry} = 1 \cdot 1 = 1 \] So, the result of this addition is: