Skip to content
๐Ÿ”ข Radix and Positional Number Systems

๐Ÿ”ข 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 = 347
Number:  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

RadixNameDigits UsedNotes
2Binary0, 1Digital logic, computers
8Octal0โ€“7Legacy systems
10Decimal0โ€“9Human-centric
16Hexadecimal0โ€“9, Aโ€“FMemory addressing, compact binary
60Sexagesimal0โ€“59Time, angles (historical)
Last updated on