Section 2.3
Octal Number System


The octal number system has a base of eight, meaning that it has eight possible digits: 0,1,2,3,4,5,6,7.

838281808-18-28-3
=512=64=8=1.=1/8=1/64=1/512
Most Significant DigitOctal pointLeast Significant Digit

Octal to Decimal Conversion

eg. 24.68 = 2 x (81) + 4 x (80) + 6 x (8-1) = 20.7510


Binary-To-Octal / Octal-To-Binary Conversion

Octal Digit01234567
Binary Equivalent000001010011100101110111

Each Octal digit is represented by three bits of binary digit.

eg. 100 111 0102 = (100) (111) (010)2 = 4 7 28


Repeat Division
This method uses repeated division by 8. Eg. convert 17710 to octal and binary:

177/8 = 22+ remainder of 11 (Least Significant Bit)
22/ 8 = 2 + remainder of 66
2 / 8 = 0 + remainder of 2 2 (Most Significant Bit)
Result17710 = 2618
Convert to Binary= 0101100012