Lecture 7 Number System
Lecture 7 Number System
Conversion
The Computing Application
Number Systems
Learning Objectives
In this chapter you will learn about:
Natural Numbers:
A natural number is a number that comes naturally,
Natural numbers are greater than zero we can use this
numbers as counting numbers: {1, 2, 3, 4, 5, 6
….…, }.
Whole numbers:
Whole numbers are just all the natural numbers
plus a zero: {0, 1, 2, 3, 4, 5, ……………… , }.
Integers:
Integers include the Natural numbers, zero, and
the negative Natural numbers.
Numbers in the form of negative and positive
numbers
{
….-4, -3, -2, -1, 0, 1, 2, 3,4, …. }.
Rational number:
Which can be written in the form of p/q
Where p and q are integers and q ≠ 0 is called a
rational number, so all the integers are
rational number .
Number
Irrational numbers :
p
Used by Used in
System Base Symbols humans? computers?
Decimal 10 0, 1, … 9 Yes No
Binary 2 0, 1 No Yes
Octal 8 0, 1, … 7 No No
Hexa- 16 0, 1, … 9, No No
decimal A, B, … F
Decimal Number System
Characteristics
• A positional number system
• Has 10 symbols or digits (0, 1, 2, 3, 4, 5, 6, 7,
8, 9). Hence, its base = 10
• The maximum value of a single digit is 9 (one
less than the value of the base)
• Each position of a digit represents a
specific
• power of the base (10)
Example
258610 = (2 x 103) + (5 x 102) + (8 x 101) + (6 x 100)
= 2000 + 500 + 80 + 6
Binary Number
System
Characteristics
• A positional number system
• Has only 2 symbols or digits (0 and 1). Hence its
base = 2
• The maximum value of a single digit is 1 (one less
than the value of the base)
• Each position of a digit represents a specific power
of the base (2)
• This number system is used in computers
Example
= 16 + 0 + 4 + 0 + 1
= 2110
Representing Numbers in Different Number
Systems
In order to be specific about which number system we
are referring to, it is a common practice to indicate the
base as a subscript. Thus, we write:
101012 = 2110
Bit
• Bit stands for binary digit
= 1024 + 0 + 40 + 7
= 107110
Hexadecimal Number
System
Characteristics
• A positional number system
• Has total 16 symbols or digits (0, 1, 2, 3, 4, 5, 6,
7, 8, 9, A, B, C, D, E, F). Hence its base = 16
• The symbols A, B, C, D, E and F represent
the decimal values 10, 11, 12, 13, 14 and
15 respectively
• The maximum value of a single digit is 15 (one
less than the value of the base)
Example
1AF16
= (1 x 162) + (A x 161) + (F x 160)
= 1 x 256 + 10 x 16 + 15 x 1
= 256 + 160 + 15
= 43110
Converting a Number of Another Base to a
Decimal Number
Method
Example
47068 = ?10
Common
values
multiplied
by the
47068 = 4 x 83 + 7 x 82 + 0 x 81 + 6 x 80
corresponding
= 4 x 512 + 7 x 64 + 0 + 6 x 1 digits