Binary Addition Rules

Binary addition follows rules similar to decimal addition but only involves two digits: 0 and 1. Here are the basic rules:

  1. 0 + 0 = 0
  2. 0 + 1 = 1
  3. 1 + 0 = 1
  4. 1 + 1 = 10 (where 10 is binary for 2, meaning carry over 1)

Steps for Binary Addition

We add binary numbers by adding each bit and handling the carry-over.

Example: Add binary numbers 1011 and 1101.

Steps are as follows:

  1. Add each bit from right to left:
  2. Finally, if there is a carry, write it down in front.

The result is:

  1011
+ 1101
------
 11000

Detailed Steps