Conversion Number System
Conversion Number System
SYSTEM
• OCTAL TO DECIMAL
• BINARY TO OCTAL
• OCTAL TO BINARY
• BINARY TO HEXADECIMAL
CONVERTING BASE-8 TO BASE-10
Octal Number Decimal Number
258 2110
Multiply each digit by its weighted position, and add each of the weighted values together or use
expansion form directly.
CONVERTING BASE-2 TO BASE-8
Binary Number Octal Number
101012 28 58
101012 258
• Step 1: Divide the binary digits into group of three straight from the right.
• Step 2: Convert each group of three binary digits to one octal digit.
CONVERTING BASE-8 TO BASE-2
Octal Number Binary Number
258 210 510
258 0102 1012
258 101012
101012 1516
• Step 1: Divide the binary digits into group of four straight from the right.
• Step 2: Convert each group of four binary digits to one hexadecimal digit.