Binary Number System Basics
Binary Basics
- Computers rely on millions of micro-transistors with only two states: on / off → represented by / .
- Binary is a base- number system; every value stored, transmitted, or processed is reduced to sequences of s and s.
Bits & Bytes
- Bit: single binary digit.
- Byte: bits → standard unit for data (e.g.
).
Place Values in Binary (one byte)
- Powers of , right → left: .
Denary (Decimal) vs Binary
- Decimal uses powers of ; binary uses powers of .
- Example conversion: .
Converting Binary → Denary
- Write the value under each bit, then add.
- Quick rule: sum of all powers of where bit = .
Converting Denary → Binary
Method 1 – Place-value / “coin” subtraction
- Start with highest power of ≤ number.
- Subtract, mark ; continue until remainder .
Method 2 – Successive division by
- Repeatedly divide the number by , recording remainders.
- Read remainders bottom-to-top to form binary.
Example (both methods):
- Convert . • Largest power → remainder . • Next → remainder . • all fit. → .
Key Takeaways
- Binary’s simplicity matches transistor states, providing speed & reliability.
- 1 bit = 2 states, 8 bits = 1 byte (256 possible values ).
- Mastery of place values and two conversion methods covers all basic exam tasks.