Binary addition is an important operation of number systems. We have two binary numbers. We see some conditions in Binary addition.
Binary addition table
Additiononditions | Result | Carry |
0+0 | 0 | 0 |
0+1 | 1 | 0 |
1+0 | 1 | 0 |
1+1 | 0 | 1 |
Binary addition
Example
Add 1010 with 1100
Binary addition procedure
From the right side
0+0
Result = 0, Carry =0
1+0
Result =1 , Carry =0
0+1
Result = 1, Carry = 0
1+1
Result = 0, Carry =1
Next, we have the final carry 1
So, the Addition result is = 11000
Read about binary number subtraction.
0 Comments