0% found this document useful (0 votes)
56 views15 pages

WK2 3 Conversions of Number System Part1 Whole Numbers

The document discusses different number systems including decimal, binary, octal, and hexadecimal. It provides tables that show how to represent numbers in each system and examples of converting between the different systems. Key points covered include: - The base or radix of each system (decimal is base 10, binary is base 2, etc.) - How to perform conversions by successive division (to a number system with a higher base) or multiplication of place values (to a number system with a lower base) - Examples of converting decimal numbers to and from binary, octal, and hexadecimal

Uploaded by

Jhin Khada
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
56 views15 pages

WK2 3 Conversions of Number System Part1 Whole Numbers

The document discusses different number systems including decimal, binary, octal, and hexadecimal. It provides tables that show how to represent numbers in each system and examples of converting between the different systems. Key points covered include: - The base or radix of each system (decimal is base 10, binary is base 2, etc.) - How to perform conversions by successive division (to a number system with a higher base) or multiplication of place values (to a number system with a lower base) - Examples of converting decimal numbers to and from binary, octal, and hexadecimal

Uploaded by

Jhin Khada
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 15

CONVERSIONS OF NUMBER

SYSTEM [WHOLE NUMBER]


Number System Concepts

Number System Base/Radix Digits

Decimal 10 0 to 9

Binary 2 0 and 1

Octal 8 0 to 7

0 to 9
Hexadecimal 16
A to F
Number System Table

Decimal Binary Octal Hexadecimal


0 0000 0 0
1 0001 1 1
2 0010 2 2
3 0011 3 3
4 0100 4 4
5 0101 5 5
6 0110 6 6
7 0111 7 7
8 1000 10 8
9 1001 11 9
Number System Table

Decimal Binary Octal Hexadecimal


10 1010 12 A

11 1011 13 B

12 1100 14 C

13 1101 15 D

14 1110 16 E

15 1111 17 F
Whole Number System Conversion
1. Decimal-to-Any Number System
- successive division by the radix until the dividend reaches 0.
LSB

DEC
RADIX/BASE

MSB
2. Any Number System-to-Decimal
- each digit is multiplied by its positional notation.

NUMBER
x BASE0
x BASE1
X BASE2
+
Decimal to Binary
Convention:
value base

Convert 32810 to BIN


Solution:
Q R Q R
328 ÷ 2 5 0 LSB
164 0 2 1
32810 -> 1 0100 10002
82 0 1 0 ans
41 0 0 1
20 1 MSB

10 0
Exercise

1. Convert 60710 to BIN

2. Convert 48610 to BIN


Binary to Decimal
Convert 1 0100 10002 to DEC
Solution:

1 0100 1000
x 20 = 0 x 24 = 0 x 28 = 256
x 21 = 0
x 22 = 0
+ x 25 = 0
x 26 = 64
+ 32810

x 23 = 8 x 27 = 0

1 0100 10002 - > 32810


ans
Exercise

1. Convert 60710 to BIN

2. Convert 48610 to BIN

CHECK
Decimal to Octal to Decimal
Convert 32810 to OCT Convert 5108 to DEC
Solution: Solution:
Q R
328 ÷ 8 LSB 510
41 0
x80 = 0
5 1
x81 = 8
0 5
x82 = 320
MSB

32810 -> 5108 5108 = 32810


ans ans
Decimal to Hex to Decimal
Convert 32810 to HEX Convert 14816 to DEC
Solution: Solution:
Q R
328 ÷ 16 LSB 148
20 8
x160 = 8
1 4
x161 = 64
0 1
x162 = 256
MSB

32810 -> 14816 14816 = 32810


ans ans
Exercise

1. Convert 44110 to BIN 6. Convert 469610 to HEX

2. Convert 62310 to BIN 7. Convert 11001011012

3. Convert 25210 to OCT to DEC

4. Convert 38610 to OCT 8. Convert 101010012


to DEC
5. Convert 86010 to HEX
Exercise

9. Convert 7758 to DEC 14. Convert 1B616 to OCT

10.Convert 17438 to DEC 15.Add 1768 to 2758

11.Convert 1E016 to DEC 16.Subtract F016 from

12.Convert 1F7D16 to DEC 15016

13.Convert 7428 to HEX


Binary to Octal/Hex
Convert 10110111012 to OCT Convert 10110111012 to HEX
Solution: Solution:

1 011 011 101 10 1101 1101


1 3 3 5 2 D D

10110111012 -> 13358 10110111012 -> 2DD16


ans ans

1 OCTAL DIGIT = 3-BITS 1 HEX DIGIT = 4-BITS


Exercise

13. Convert 7428 to HEX


14. Convert 1B616 to OCT

You might also like