Intro Lab 6 - Numbers Conversion
Intro Lab 6 - Numbers Conversion
Lab (6)
Common numbering systems are:
Binary [base = 2]:
Uses 2 symbols: 0 and 1.
Decimal [base = 10]:
Uses 10 symbols: 0, 1, 2,…, 9.
Hexadecimal [base = 16] : Base 16 A B C D E F
Uses 16 symbol: 0, 1, 2, …, 9, A, B, C, D, E, F.
Base 10 10 11 12 13 14 15
Octal [base = 8]:
Uses 8 symbols: 0, 1, 2, …, 7.
215/8 7
26/8 2
3/8 3
0 read
215/16 7
13/16 13
0 read
Now you try some:
A 3 D 9
1010 0011 1101 1001
Example: 11010010102=15128
I added two
zeroes on the left
to create a triad. 001 101 001 010
1 5 1 2
6 3 0 0 7 6
110 011 000 000 111 110
A 4 5
1010 0100 0101 (rewritten in binary)
101 001 001 101 (regrouped the binary digits into groups of three)
5 1 1 5
5 4 0 1
101 100 000 001 (rewritten in binary)
1011 0000 0001 (regrouped the binary digits into groups of four)
B 0 1