4-3) Identify & Convert Numbers and Symbols Flashcards
How would you write out a 9 digit conversion table for decimal to binary number systems?
How would you write out 1 to 15 in binary?
How many digits does the decimal system have and what are they?
10
0-9
Which number system is a base 10 system?
Decimal
How many numbers does the binary number system have and what are they?
2 numbers: 1 and 0
Which number system is a base 2 system?
Binary
How many numbers does the octal number system have and what are they?
8
0-7
Describe the process for converting decimal to octal.
- Divide the number by 8, record the remainder (as a whole number not a decimal)
- Divide the quotient of the first operation by 8 again, record the remainder again as a whole number
- Divide the quotient of the second operation by 8 again, record the remainder again as a whole number
- Repeat this process until the quotient is 0 and the remainder is less than 8
- The last remainder is the most significant digit, the first remainder is the least significant digit
- Read the number from bottom (most signifiant) to top (least significant)
Describe the process of dealing with fractional decimal numbers when converting to octal.
- Multiply fractional decimal by 8, note the quotient
- Multiply the remainder by 8, note the quotient
- Multiply the remainder by 8, note the quotient
- Keep multiplying the remainder by 8 until either: you get a whole number or the numbers start to repeat.
- The number is read from the top down
Describe the process of converting Octal to Decimal
- Multiply each digit by 8 raised to the power of the digit’s place:
- 1’s = 80
- 10s = 81
- 100s = 82
- 1000s = 83
- 10,000 = 84
- Take the Octal number and multiply it by 8 raised to the respective power of the digit.
- All all the products together. The sum of the products is the decimal number.
- When encountering fractional octal numbers, multiply by 8-1 , 8-2, 8-3 respectively for the 0.1, 0.01, 0.001 places
How many binary digits are needed to represent each of the octal digits?
3
Write out the all octal digits in binary
Describe the process of converting octal to binary
Each octal number can be represented by 3 binary digits. Convert octal 0-7 to binary 3 digit numbers starting with the most significant digit and ending with the least significant digit.
Describe the process of converting binary to octal
Each octal number can be represented by 3 binary digits. Divide the binary number into chunks of 3 binary digits each. Match each 3 digit segment with its respective octal number. Go in the same order of most to least significant digit (left to right).
0101112 to Octal
010 = 2 (most significant)
111 = 7 (least significant)
0101112 = 278
How many digits is hexadecimal based on?
16
Write out a chart that shows dec, bin and hex conversions for 0 to 15
What is 0 to 15 in Hex?
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F
Describe the process to convert decimal to hex
The process is very similar to converting decimal to octal, but except dividing by 8, you divide by 16.
When the remainder is a whole number less than 16, match that to the corresponding hex number.
Example:
10510 = 6916
105/16 = 6.5625
0.5625 x 16 = 9
=69
Describe the process of converting hex to decimal
The process is similar as converting octal to decimal, but instead of multiplying by 8 raised to the digits places (^0, ^1, ^2, ^3, etc. etc.), you multiply by 16 raised to the digits place starting at ^1 for the 1s place and so on. Multiply each hex digit by 16x and then calculate the sum of these products to get the answer in decimal.
What is Binary Coded Decimal?
BCD is a code of 4-bit digits from 0 to 9. Each number from 0 to 9 is represented by a 4-bit digit comprised of 0s and 1s.
In binary coded decimal, how are numbers higher than 9 dealt with?
For numbers higher than 9, each digit is broken down into a single digit and represented by their corresponded 4-bit digits.
Write out 0 to 9 in BCD
What is meant by 8421 code?
8421 is another name for BCD. 8421 are the digits that represent the 4 columns if binary digits in each 4-bit digit:
A 1 in that column represents an 8, 4, 2 or 1, add them together to get the total decimal number that that 4-bit digit represents.
8421
0000= 0
0001 = 1
0010 = 2
0011 = 3
0100 = 4
0101 = 5
0110 = 6
0111 = 7
1000 = 8
1001 = 9