Difficulty: Easy
Correct Answer: Equals the number of its distinct counting digits
Explanation:
Introduction / Context:
Every positional numeral system is characterized by a base, also called the radix. Knowing the radix explains digit ranges, place values, and why the same quantity needs different numbers of digits in different systems (for example, 255 is FF in hexadecimal but 11111111 in binary).
Given Data / Assumptions:
Concept / Approach:
The radix is the number of distinct symbols available for a single digit, including zero. Decimal has 10 symbols (0–9), so its radix is 10; binary has 2 symbols (0–1), radix 2; hexadecimal has 16 symbols (0–9 and A–F), radix 16. Place values are powers of the radix: base^0, base^1, base^2, and so on.
Step-by-Step Solution:
Verification / Alternative check:
Check examples: In octal (radix 8), the largest single digit is 7 and each place represents 8^k; in hexadecimal (radix 16), the largest single digit is F (15), each place is 16^k—confirming the definition.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Equals the number of its distinct counting digits.
Discussion & Comments