Binary addition follows rules similar to decimal addition but only involves two digits: 0 and 1. Here are the basic rules:
01110 (where 10 is binary for 2, meaning carry over 1)We add binary numbers by adding each bit and handling the carry-over.
Example: Add binary numbers 1011 and 1101.
Steps are as follows:
10 (write down 0, carry over 1)10 (write down 0, carry over 1)10 (write down 0, carry over 1)10 (write down 0, carry over 1)The result is:
1011
+ 1101
------
11000
10, write down 0, carry over 1.10, write down 0, carry over 1.10, write down 0, carry over 1.10, write down 0, carry over 1.