1. Introduction to Number Systems
In everyday life, we use the denary (or decimal) number system, which is base-10 and uses the digits 0 through 9. Computers, however, operate using millions of tiny electronic switches that can only be in one of two states: on or off. This is represented by the binary number system, a base-2 system using only the digits 1 (on) and 0 (off). Because long strings of binary are difficult for humans to read, the hexadecimal system (base-16) is often used as a more compact, human-friendly way to represent binary data. Hexadecimal uses the digits 0-9 and the letters A-F to represent denary values 0-15.
Key term
Fun fact
Worked example 13 marks
Compare the base and the digits used in the Denary, Binary, and Hexadecimal number systems.
- 1
Denary: Base-10. It uses ten digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9.
- 2
Binary: Base-2. It uses two digits: 0 and 1.
- 3
Hexadecimal: Base-16. It uses sixteen symbols: the digits 0-9 and the letters A (10), B (11), C (12), D (13), E (14), F (15).
Recap
- Denary is the base-10 number system we use daily.
- Computers use binary (base-2) because their circuits have two states: on (1) and off (0).
- Hexadecimal (base-16) is a compact way for humans to represent binary data.
- One hexadecimal digit can represent a 4-bit binary number.
- The symbols A-F in hexadecimal represent the denary values 10-15.
Quick check
- Why do computers process data using the binary system?1 mark
- What denary value does the hexadecimal digit 'C' represent?1 mark