Table of Contents
Binary Number System
đģ Binary Number System
đ Introduction:
The Binary Number System is a base-2 number system. It is used internally by almost all modern computers and digital systems.
-
It uses only two digits:
0and1
Each binary digit is known as a bit, and every bit represents a power of 2 based on its position.
đĸ Digits Used:
0, 1
đ§ Positional Value Concept:
Just like the decimal system (base-10), the binary system also follows a positional number system, where:
Value of a binary number =
dâ × 2âŋ + dâââ × 2âŋâģ¹ + ... + dâ × 2¹ + dâ × 2â°
â Example:
(1101)â
Step-by-step breakdown:
= 1 à 2Âŗ + 1 à 2² + 0 à 2š + 1 à 2â°
= 8 + 4 + 0 + 1
= (13)ââ
â More Examples:
Example:
= 1 à 2Âŗ + 0 à 2² + 1 à 2š + 0 à 2â°
= 8 + 0 + 2 + 0
= (10)ââ
(1010)â
Example :
(10001)â
= 1 à 2â´ + 0 à 2Âŗ + 0 à 2² + 0 à 2š + 1 à 2â°
= 16 + 0 + 0 + 0 + 1
= (17)ââ
đ Counting in Binary:
| Binary | Decimal |
|---|---|
| 0000 | 0 |
| 0001 | 1 |
| 0010 | 2 |
| 0011 | 3 |
| 0100 | 4 |
| 0101 | 5 |
| 0110 | 6 |
| 0111 | 7 |
| 1000 | 8 |
đĄ Applications of Binary:
Used in digital electronics
Microprocessors and memory represent all values in binary
All data in computers (text, image, sound) is stored in binary format
đ§ž Summary:
| Feature | Value |
|---|---|
| Base | 2 |
| Digits Used | 0, 1 |
| Positional System | Yes |
| Used In | Computers, electronics, logic gates |