This page is currently only a very very small fraction of what I intend it to be. If you have idea for topics or the heavenly inspiration to contribute something great to this topic: Please click that "edit" button and do it!

Please try to keep this simple and easy to understand without prior knowledge of anything beyond introductory algebra unless the topic warrants it. If you know calculus: Good for you. That doesn't mean the average viewer of this page does.

Number systems

The following is a list of common number systems. The names of which are derived from latin.

Base Name Number set Commonly used for
1Unary1Tallying (*)
2Binary01Computers (**)
3Ternary012
4Quaternary0123
5Quinary01234
6Senary012345
7Septenary0123456
8Octal01234567Computers (***)
9Nonary012345678
10Decimal0123456789Ordinary Counting!
11Undenary0123456789A
12Duodecimal0123456789AB
16Hexadecimal0123456789ABCDEFComputers (****)
20VigesimalToo long!
60SexagesimalToo long!Clocks
  • Unary is of very limited usefulness since only positive integers can be expressed in it. The same is more-or-less true for any numbering system whose absolute value is equal to one.
  • Binary is used to portray the specific values of on (1) and off (0) used in digital electronics like computers
  • Octal was more commonly used in the early days of computing and especially on computers whose byte size was divisible by three. It is still used in some computing cultures and for some specific purposes but its use has been largely supplanted by hexadecimal.
  • Hexadecimal is often used to portray binary numbers in a smaller, neater-seeming form

Determining number value

Because people tend to be most familiar with dealing with numbers in Decimal, that is the basis we will use to get a feel for a number's value.

You may determine the decimal value of a number in any given base using the following formula:

Where:

  • K = Decimal value of a given number
  • d = Decimal value of a value in a specified base
  • B = Decimal value of the base of the number being evaluated
  • i = Decimal value of the index at which the number currently being evaluated is located (0 = right-most; 1, 2, 3, etc. are 1, 2, 3, etc. places from the right-most)

In this scheme, the right-most digit in any number in any base is:

  • The digit place with the smallest potential value
  • Has an index (i) value of 0

It is common to determine the value of a number, starting with the right-most value. That's what I'm going to be doing in the following examples.

Converting decimal to decimal

Converting the decimal number 931 to decimal:

1 * 10^0 =   1
3 * 10^1 =  30
9 * 10^2 = 900

900 + 30 + 1 = 931

Converting the decimal number 23 to decimal:

3 * 10^0 =  3
2 * 10^1 = 20

20 + 3 = 23

Converting binary to decimal

Converting the binary number 0b01001100 to decimal:

0b00000000 = 0 * 2^0 =  0
0b00000000 = 0 * 2^1 =  0
0b00000100 = 1 * 2^2 =  4
0b00001000 = 1 * 2^3 =  8
0b00000000 = 0 * 2^4 =  0
0b00000000 = 0 * 2^5 =  0
0b01000000 = 1 * 2^6 = 64
0b00000000 = 0 * 2^7 =  0

64 + 8 + 4 = 76

Converting the binary number 0b11111111 to decimal:

0b00000001 = 1 * 2^0 =   1
0b00000010 = 1 * 2^1 =   2
0b00000100 = 1 * 2^2 =   4
0b00001000 = 1 * 2^3 =   8
0b00010000 = 1 * 2^4 =  16
0b00100000 = 1 * 2^5 =  32
0b01000000 = 1 * 2^6 =  64
0b10000000 = 1 * 2^7 = 128

128 + 64 + 32 + 16 + 8 + 4 + 2 + 1 = 255

Converting hexadecimal to decimal

Converting the hexadecimal number 0x16 to decimal:

6 * 16^0 = 6
1 * 16^1 = 16

16 + 6 = 22

Converting the hexadecimal number 0xBEEF to decimal:

F = 15 * 16^0 =     15
E = 14 * 16^1 =    224
E = 14 * 16^2 =  3,584
B = 11 * 16^3 = 45,056

45,056 + 3,584 + 224 + 15 = 48,879

Decimal

Place name Decimal Value Scientific notation
Millions1,000,000106
Hundred-thousands100,000105
Ten-thousands10,000104
Thousands1,000103
Hundreds100102
Tens10101
Ones1100


106 + 105 + 104 + 103 + 102 + 101 + 100 = Expressed as = Decimal value
123456712345671234567
000000000
43759104,375,9104,375,910
00010241,0241,024
99999999,999,9999,999,999

Binary

Binary relys on only two digits which are usually written 0 and 1, but are easilly encoded as "off" and "on" in switch circuits, which makes Binary the language of choice in low-level Computing and Digital Electronics.


Place name Decimal Value Scientific notation
One-twenty-eights12827
Sixty-fours6426
Thirty-twos3225
Sixteens1624
Eights823
Fours422
Twos221
Ones120


27 + 26 + 25 + 24 + 23 + 22 + 21 + 20 = Expressed as = Decimal value
000000000b000000000
010000010b0100000165
100000000b10000000128
100111110b10011111159
111111110b11111111255

Hexadecimal

Hexadecimal is commonly used to represent binary data, as it occupies only one quarter of the space when written down.


Place name Decimal Value Scientific notation
No thanks!16,777,216166
No thanks!1,048,576165
No thanks!65,536164
40-96s4,096163
256s256162
Sixteens16161
Ones1160


167 + 166 + 165 + 164 + 163 + 162 + 161 + 160 = Expressed as = Decimal value
000000000x000000000
000000410x4165
DEADBEEF0xDEADBEEF3,735,928,559
00000F730xF733,955
FFFFFFFF0xFFFFFFFF4,294,967,295

Corollary

In all number systems, prefixed zeros can be ignored (do not affect the value represented), however common practice is to prefix all octal numbers with a leading 0 (zero), all hexadecimal values with 0x and all binary numbers with zeros so that it contains a number of digits which is divisible by eight.

Decimal Value Binary Value Hexadecimal Value
0000000000000
0010000000101
0020000001002
0030000001103
0040000010004
0050000010105
0060000011006
0070000011107
0080000100008
0090000100109
010000010100A
011000010110B
012000011000C
013000011010D
014000011100E
015000011110F
0160001000010
0170001000111
0180001001012
0190001001113
0200001010014
0210001010115
0220001011016
0230001011117
0240001100018
-------------
25411111110FE
25511111111FF
This article is issued from Wikiversity. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.