Every number system works the same way: each column has a place value, and the value of the number is the sum of (digit × place value).
Decimal — powers of 10
| Place value | 1000 | 100 | 10 | 1 |
|---|
| Digit | 4 | 7 | 2 | 9 |
4729 = (4 × 1000) + (7 × 100) + (2 × 10) + (9 × 1)
Binary — powers of 2
| Place value | 128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 |
|---|
| Bit | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 1 |
10110101 = 128 + 32 + 16 + 4 + 1 = 181
Memorise the eight binary place values: 128, 64, 32, 16, 8, 4, 2, 1. Writing them above the bits before you start is the single most reliable technique in 3.3.2 — every conversion question becomes mechanical.
Notice each place value is double the one to its right, and that an 8-bit number reaches a maximum of 128 + 64 + 32 + 16 + 8 + 4 + 2 + 1 = 255.
Hexadecimal — powers of 16
| Place value | 256 | 16 | 1 |
|---|
| Digit | — | 2 | F |
2F = (2 × 16) + (15 × 1) = 32 + 15 = 47
For the two-digit hex values used at GCSE you only need the 16s and 1s columns, since the maximum is FF = (15 × 16) + 15 = 255.
The maximum values AQA uses
The specification fixes these:
decimal 255=binary 11111111=hexadecimal FF
Learn this triple. It is the ceiling for every conversion question in 3.3.2, and it is a fast sanity check: if a conversion gives you something above 255, you have made an error.
AQA tip. Always write the place-value row above your working, even for a conversion you think you can do mentally. It costs five seconds, makes method marks visible, and prevents the miscounted-column errors that account for most lost marks in this area.