๐ข Radix and Positional Number Systems
๐ง What Is Radix?
Radix (also called base) is the number of unique digits used in a positional numeral system.
- Decimal โ radix = 10 โ digits: 0โ9
- Binary โ radix = 2 โ digits: 0, 1
- Hexadecimal โ radix = 16 โ digits: 0โ9, AโF
๐ง Positional Value Logic
Each digit’s value is weighted by a power of the radix:
Number: 3 4 7 (in base 10)
Weights: 10ยฒ 10ยน 10โฐ
Value: 3ร100 + 4ร10 + 7ร1 = 347Number: 1 0 1 1 (in base 2)
Weights: 2ยณ 2ยฒ 2ยน 2โฐ
Value: 1ร8 + 0ร4 + 1ร2 + 1ร1 = 11๐งฉ Semantic Vault Insight
โRadix defines the scaling law behind digits. Itโs the root of positional meaning and the foundation of all base conversions and complement systems.โ
This principle underpins all positional number systems, from binary logic to historical sexagesimal timekeeping.
๐ Common Radices
| Radix | Name | Digits Used | Notes |
|---|---|---|---|
| 2 | Binary | 0, 1 | Digital logic, computers |
| 8 | Octal | 0โ7 | Legacy systems |
| 10 | Decimal | 0โ9 | Human-centric |
| 16 | Hexadecimal | 0โ9, AโF | Memory addressing, compact binary |
| 60 | Sexagesimal | 0โ59 | Time, angles (historical) |
Last updated on