Number System: October 2017
Number System: October 2017
net/publication/320677641
Number System
CITATIONS READS
0 61,040
1 author:
SEE PROFILE
Some of the authors of this publication are also working on these related projects:
A Framework for A Hybridized Online and Offline Voting Mechanism based on Blockchain Technology View project
All content following this page was uploaded by Ajayi Olusola Olajide on 27 October 2017.
Let’s pick them one after the other to see how the computations are done and the underlying
logic behind them!
Furthering, ….
Example 3: Convert 1234510 to Base 16
Solution 3:
1 * 26 + 1 * 25 + 0 * 24 + 1 * 23 + 1 * 22 + 0 * 21 + 1 * 20
= 1 * 64 + 1 * 32 + 0 * 16 + 1 * 8 + 1 * 4 + 0 * 2 + 1 * 1
= 64 + 32 + 0 + 8 + 4 + 0 + 1
= 10910 (QED)
5 * 81 + 3 * 80 = 5 * 8 + 3 * 1 = 40 + 3 = 4310 (QED)
2 * 8 + 9 * 8 + 4 * 8 (Comment: What we did here is line with step A e.g. we multiply the
given/source base’s number (e.g. Base 8 - 294) with the base index e.g. 8.
Now, to complete the conversion computation, superscript the index position starting from 0
backward increasing downward. For instance, the equation becomes:
2 * 82 + 9 * 81 + 4 * 80 = 2 * 64 + 9 * 8 + 4 * 1 = 128 + 72 + 4=
= 20410 (QED)
3 * 16 + F(15) * 16 + 6 * 16 (Comment: What we did here is line with step A e.g. we multiply
the given/source base’s number (e.g. Base 16 – 3F6) with the base index e.g. 16.
Now, to complete the conversion computation, superscript the index position starting from 0
backward increasing downward. For instance, the equation becomes:
2 * 16 + C(12) * 16 + 4 * 16 + E(14) * 16 (Comment: What we did here is line with step A e.g.
we multiply the given/source base’s number (e.g. Base 16 – 2C4E) with the base index e.g. 16.
Now, to complete the conversion computation, superscript the index position starting from 0
backward increasing downward. For instance, the equation becomes:
2 * 163 + 12 * 162 + 4 * 161 + 14 * 160 = 2 * 4096 + 12 * 256 + 4 * 16 + 14 * 1
= 8192 + 3072 + 64 + 14 = 1134210 (QED)
Exercises
1. Convert the following Base 2 numbers to Base 10:
i. 11000011
ii. 1001111
iii. 001101111
2. Convert the underlisted Base 8 numbers to Base 10:
i. 67
ii. 21
iii. 34
3. Convert the specified Base 16 numbers to Base 10:
i. 2A5
ii. 7E3D
iii. 82CA
4. Convert the listed Base 10 numbers to Base 2, 8 and 16
i. 34
ii. 89
iii. 68
5. Convert:
i. 1101102 to base 8
ii. 6789548 to base 16