Number System
Number System
SYSTEM
Do
Number
y o u
?
system
o w
kn out NO
Ab ber
u m
n tem
sy s
• IN THE OCTAL NUMBER SYSTEM, THE BASE IS 8 AND IT USES NUMBERS FROM 0 TO 7 TO REPRESENT
NUMBERS. OCTAL NUMBERS ARE COMMONLY USED IN COMPUTER APPLICATIONS. CONVERTING AN OCTAL
NUMBER TO DECIMAL IS THE SAME AS DECIMAL CONVERSION AND IS EXPLAINED BELOW USING AN
EXAMPLE.
• SOLUTION:
• 2158 = 2 × 82 + 1 × 81 + 5 × 80
• = 2 × 64 + 1 × 8 + 5 × 1
• = 128 + 8 + 5
• = 14110
Hexadecimal Number System (Base 16
Number System)
In the hexadecimal system, numbers are written or
represented with base 16. In the hexadecimal system,
the numbers are first represented just like in the
decimal system, i.e. from 0 to 9. Then, the numbers are
represented using the alphabet from A to F. The below-
given table shows the representation of numbers in the
hexadecimal number system.
• NOW