Base Systems • Topic 1 of 3

Binary & Octal

Binary (base 2) uses only the digits 0 and 1; its place values are 1, 2, 4, 8, 16, 32, 64, 128 — the powers of 2 you should know on sight. Octal (base 8) uses digits 0 to 7, with place values 1, 8, 64, 512. The key idea is place value: in any base b the rightmost digit is worth 1, the next worth b, the next b², and so on. A digit must always be less than the base, so 8 can never appear in octal and 2 can never appear in binary — spotting an illegal digit is a quick CAT sanity check. A neat link the exam loves: one octal digit equals exactly three binary digits, because 2³ = 8. So 101 110 (binary) groups straight into 56 (octal) with no arithmetic. Learn the first eight powers of 2 cold and most binary work becomes instant addition.

✅ Solved examples

1. Convert the binary number 1101 to decimal.
Place values 8,4,2,1 for digits 1,1,0,1: 8 + 4 + 0 + 1 = 13.
2. Convert the octal number 57 to decimal.
5·8 + 7 = 40 + 7 = 47.
3. Group the binary number 101110 into octal.
Group in 3s from the right: 101 110 = 5 6, so it is 56 in octal.
4. Which of 1021, 1102, 1010 cannot be a binary number?
Binary uses only 0 and 1. 1021 has a 2 and 1102 has a 2, so both are illegal; only 1010 is valid binary.

✏️ Practice — try these, take hints as needed

1. Convert binary 10110 to decimal.
Place values 16,8,4,2,1.
Pick the values where the digit is 1.
16 + 4 + 2.
22
2. Convert octal 64 to decimal.
Place values 8 and 1.
6·8 + 4.
48 + 4.
52
3. Group binary 11010 into octal.
Pad to a multiple of 3 from the right: 011 010.
Read each group of three.
011 = 3, 010 = 2.
32 (octal)
4. How many distinct 4-digit binary strings exist (leading zeros allowed)?
Each position is 0 or 1.
2 choices for 4 places.
2^4.
16
5. Convert decimal 6 into a 3-digit binary number.
6 = 4 + 2.
Set the 4 and 2 bits, clear the 1 bit.
Digits for 4,2,1.
110

📝 Topic test — 8 questions

Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.

Loading questions…