1. Binary Addition
Binary addition follows the same principles as decimal addition but with a base of 2. The rules for binary addition are:
Example: Add 1011 and 1101.
1011
+1101
---------
11000
The result is 11000.
2. Binary Subtraction
Binary subtraction uses the borrowing method, similar to decimal subtraction. The rules are:
Example: Subtract 1010 from 1101.
1101
- 1010
----------
0011
The result is 0011.
3. Binary Multiplication
Binary multiplication is simpler than decimal multiplication, as it only involves multiplying by 0 or 1. The rules are:
Example: Multiply 101 by 11.
101
× 11
----------
101
+ 1010
----------
1111
The result is 1111.
4. Binary Division
Binary division is similar to decimal division and involves repeated subtraction. The process includes:
Dividing the dividend by the divisor.
Writing down the quotient.
Subtracting the product of the divisor and the quotient from the dividend.
Repeating until the remainder is smaller than the divisor.
Example: Divide 1101 by 10.
1101 ÷ 10
------------
10 | 1101
-10
-----------
10
-10
-----------
1 (remainder)
The quotient is 110, and the remainder is 1.
Key Points to Remember:
Binary arithmetic relies on base-2 rules.
Always align binary numbers properly before performing operations.
Double-check carries and borrows during addition and subtraction.
Binary multiplication and division are systematic and straightforward with practice.
Understanding these operations lays the groundwork for further studies in computer architecture, digital circuits, and programming.