The three previous lessons gave three tools: the multiply-and-add scheme, the division and multiplication ladders, and the grouping of binary digits. Here we use them together, on numbers written in binary, octal, duodecimal and hexadecimal. Nothing new to memorise - what counts is recognising which tool is the shortest route to the answer in each exercise.
Review exercises
Express the following numbers in the decimal number system.
Integer part
Fractional part
Integer part
Fractional part
Λ = 11
Integer part
Fractional part
A = 10, B = 11, C = 12
Integer part
Fractional part
Express 427.362 in duodecimal form
| remainder | ||
| 427 | : 12 | 7 |
| 35 | : 12 | Λ |
| 2 | : 12 | 2 |
| 0 | ↑ |
| 0.362 | · 12 | |
| 4 | .344 | · 12 |
| 4 | .128 | · 12 |
| 1 | .536 | · 12 |
| 6 | .432 |
The fourth digit decides how the third is rounded: 6 is half of twelve, so 0.4416 is written as 0.442.
Convert 139.825 to its equivalent forms in the octal, binary and hexadecimal systems
| remainder | ||
| 139 | : 8 | 3 |
| 17 | : 8 | 1 |
| 2 | : 8 | 2 |
| 0 | ↑ |
| 0.825 | · 8 | |
| 6 | .600 | · 8 |
| 4 | .800 | · 8 |
| 6 | .400 | · 8 |
| 3 | .200 |
Frequently asked questions
What does the symbol Λ mean in the duodecimal system?
Eleven. The duodecimal system needs two symbols beyond the digits 0 to 9: X stands for ten and Λ for eleven. In the number 345.2Λ7 the symbol Λ is the second digit after the point and has the value 11.
Which method should you use to convert a number to decimal?
The scheme from Part 11: multiply by the base and add the next digit. It is shorter than writing out the place values and works the same way in every system, including when the digits are letters.
Why is 0.4416 in the duodecimal system written as 0.442?
Because we round to three digits and the fourth digit is 6 - exactly half of twelve, so the third one goes up from 1 to 2. In the duodecimal system the rounding boundary is 6, not 5 as in decimal.
How do you get a hexadecimal form from a decimal number?
First to octal with the ladders, then each octal digit into three binary digits, and those grouped in fours are read as hexadecimal. For 139.825 that gives 213.646 and then 8B.D3.