Base of a number The 'base' of a number system is the number of symbols used to count with.... Base 10 - decimalWe are used to BASE 10 as we have ten different number symbols that we use to represent all number values: 0123456789. This is thought to be because we have ten fingers to count with! Base 10 is called decimal because of the Latin word for number 10 - decem We count like this:
The far right digit is the number of units, the second from right the number of 10s, the third from right the number of 100s... you did this at Primary School.... HTU The number 345 is: (3 x 100) + (4 x 10) + (5 x 1) Another way of expressing this is: (3 x 102) + (4 x 101) + (5 x 100) In this way we can see each column of numbers relates to the base number to a power. Base 2 - BinaryComputers use BASE 2 becase circuit outputs are either on or off (at operating voltage or at zero voltage) - two states - binary. They use two symbols 0 for off and 1 for on.
Our binary numbers columns relate to the base number raised to a power, just like the decimal ones did.... We can work out the value in decimal by doing the following: 1001 = (1 x 23) + (0 x 22) + (0 x 21) + (1 x 20) 1001 = 8 + 0 + 0 + 1 |
|