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