Boolean algebra is a mathematical structure used to perform operations on binary variables (0s and 1s). It is fundamental in digital logic design and computer science.
Basic Boolean Operations
Boolean algebra consists of three primary operations:
- AND Operation (⋅)
- Symbol:
A ⋅ B
orA AND B
-
Truth Table:
A B A ⋅ B 0 0 0 0 1 0 1 0 0 1 1 1
- Symbol:
- OR Operation (+)
- Symbol:
A + B
orA OR B
-
Truth Table:
A B A + B 0 0 0 0 1 1 1 0 1 1 1 1
- Symbol:
- NOT Operation (¯)
- Symbol:
Ā
orNOT A
-
Truth Table:
A Ā 0 1 1 0
- Symbol:
Boolean Identities
Boolean algebra follows several important identities:
- Identity Laws:
A + 0 = A
,A ⋅ 1 = A
- Null Laws:
A + 1 = 1
,A ⋅ 0 = 0
- Idempotent Laws:
A + A = A
,A ⋅ A = A
- Complement Laws:
A + Ā = 1
,A ⋅ Ā = 0
- Distributive Laws:
A ⋅ (B + C) = A ⋅ B + A ⋅ C
- Absorption Laws:
A + (A ⋅ B) = A
,A ⋅ (A + B) = A
Conversion of Decimal Numbers into Binary Numbers
Converting a decimal number to binary involves dividing the number by 2 repeatedly and recording the remainders.
Steps to Convert Decimal to Binary:
- Divide the decimal number by 2.
- Record the remainder (0 or 1).
- Repeat the process with the quotient.
- Reverse the sequence of remainders to obtain the binary number.
Example 1: Convert 13 to Binary
- 13 ÷ 2 = 6, remainder 1
- 6 ÷ 2 = 3, remainder 0
- 3 ÷ 2 = 1, remainder 1
- 1 ÷ 2 = 0, remainder 1
- Read from bottom to top: 1101
Example 2: Convert 25 to Binary
- 25 ÷ 2 = 12, remainder 1
- 12 ÷ 2 = 6, remainder 0
- 6 ÷ 2 = 3, remainder 0
- 3 ÷ 2 = 1, remainder 1
- 1 ÷ 2 = 0, remainder 1
- Read from bottom to top: 11001
Shortcut: Binary of Small Decimal Numbers
Decimal | Binary |
---|---|
0 | 0 |
1 | 1 |
2 | 10 |
3 | 11 |
4 | 100 |
5 | 101 |
6 | 110 |
7 | 111 |
8 | 1000 |
9 | 1001 |
10 | 1010 |
These concepts are essential for understanding digital logic design and computer arithmetic.