SlideShare a Scribd company logo
NumberSystem
By iTutor.com
T- 1-855-694-8886
Email- info@iTutor.com
Number system
 In earlier days, people used to exchange their things for
other things. The requirement for numbers primarily
originated from the need to count.
 They used the numbers 1,2,3,.that served the people for
many years because all they needed to count was their
crops, and animals.
 Later on numbers such as zero, integers, rational
numbers, irrational numbers were introduced.
 There is evidence that as early as 30,000 BC our ancient
ancestors were tallying or counting things. That is where
the concept of number systems began.
© iTutor. 2000-2013.All Rights Reserved
Numbers
 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, ……………… , }.
 If our system of numbers was limited to the Natural
Numbers then a number such as –2 would have no
meaning. The next number system is the Integers.
© iTutor. 2000-2013.All Rights Reserved
numbers
 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
Where p and q are integers and q ≠ 0 is called a rational
number, so all the integers are rational number .
.p
q
© iTutor. 2000-2013.All Rights Reserved
numbers
 Irrational numbers : p
The number can not be written in the form of . q
Pythagorean in Greece were first to discover irrational
number .
 2, 3, are irrational number .
© iTutor. 2000-2013.All Rights Reserved
numbers
 Real numbers:
 All the numbers including rational and irrational numbers
are called real number
 The official symbol for real numbers is a bold R.
 Prime numbers:
 The real number which is divisible by 1 and itself is called
prime number Ex- 1,2,3,5,7,11,13,17, …..
© iTutor. 2000-2013.All Rights Reserved
The Real Number System
Real Numbers
(all numbers are real)
Rational Numbers Irrational Numbers
…-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5
Integers
Whole Numbers
Natural Numbers
…any number that is
not rational
Example:
= 3.14159……
e= 2.71828…..
Which can be written in the form of
.
p
q
© iTutor. 2000-2013.All Rights Reserved
Number system
 A number system defines how a number can be
represented using distinct symbols.
 A number can be represented differently in different
systems.
 For example, the two numbers (2A)16 and (52)8 both refer to
the same quantity, (42)10, but their representations are
different.
© iTutor. 2000-2013.All Rights Reserved
Common Number Systems
Number system can be categorized as
Decimal number system
Binary number system
Octal number system
Hexadecimal Number System
© iTutor. 2000-2013.All Rights Reserved
Common Number Systems
 Each number system is associated with a base or radix
The decimal number system is said to be of base or radix
10
 A number in base r contains r digits 0,1,2,...,r-1
Decimal (Base 10): 0,1,2,3,4,5,6,7,8,9
System Base Symbols
Used by
humans?
Used in
computers?
Decimal 10 0, 1, … 9 Yes No
Binary 2 0, 1 No Yes
Octal 8 0, 1, … 7 No No
Hexa-
decimal
16 0, 1, … 9,
A, B, … F
No No
© iTutor. 2000-2013.All Rights Reserved
The decimal system (base 10)
 The word decimal is derived from the Latin root decem
(ten). In this system the base b = 10 and we use ten
symbols.
S = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}.
Binary system (base 2)
 The word binary is derived from the Latin root bini (or
two by two).
 In this system the base b = 2 and we use only two
symbols,
S = {0, 1}
 The symbols in this system are often referred to as
binary digits or bits.
© iTutor. 2000-2013.All Rights Reserved
The hexadecimal system
(base 1)
 The word hexadecimal is derived from the Greek root
hex (six) and the Latin root decem (ten).
 In this system the base b = 16 and we use sixteen
symbols to represent a number.
 The set of symbols is
S = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E,F}
 The symbols A, B, C, D, E, F are equivalent to
10, 11, 12, 13, 14, and 15 respectively.
 The symbols in this system are often referred to as
hexadecimal digits.
© iTutor. 2000-2013.All Rights Reserved
The o c t a l system (base 8)
 The word octal is derived from the Latin root octo (eight).
 In this system the base b = 8 and we use eight symbols
to represent a number.
 The set of symbols is:
S = {0, 1, 2, 3, 4, 5, 6, 7}
© iTutor. 2000-2013.All Rights Reserved
Converting Decimal t o Binary
162 / 2 = 81 rem 0
81 / 2 = 40 rem 1
40 / 2 = 20 rem 0
20 / 2 = 10 rem 0
10 / 2 = 5 rem 0
5 / 2 = 2 rem 1
2 / 2 = 1 rem 0
1 / 2 = 0 rem 1
 To convert a decimal integer into binary, keep dividing by 2
until the quotient is 0. Collect the remainders in reverse
order
 To convert a fraction, keep multiplying the fractional part by
2 until it becomes 0. Collect the integer parts in forward
order
 Example: 162.375: So, (162.375)10 = (10100010.011)2
0.375 x 2 = 0.750
0.750 x 2 = 1.500
0.500 x 2 = 1.000
14
© iTutor. 2000-2013.All Rights Reserved
Octal and Hexadecimal
Numbers
The octal number system: Base-8
Eight digits: 0,1,2,3,4,5,6,7
(127 .4) 1 82
2 81
7 80
4 8 1
(87 .5)
8 10
 The hexadecimal number system: Base-16
 Sixteen digits: 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F
 For our purposes, base-8 and base-16 are most useful as a
“shorthand” notation for binary numbers
(B65 F ) 11 16 3
6 16 2
5 161
15 16 0
( 46687 )
16 10
15
© iTutor. 2000-2013.All Rights Reserved
The end
For more information c a l l us
1-855-694-8886
Visit www.iTutor.com

More Related Content

What's hot

How computers represent data
How computers represent dataHow computers represent data
How computers represent data
Shaon Ahmed
 
Number System
Number SystemNumber System
Number System
Web Designer
 
Data representation in computers
Data representation in computersData representation in computers
Data representation in computers
Hazel Anne Quirao
 
Number system
Number system Number system
Number system
Anirban Saha Anik
 
Number system
Number systemNumber system
Number system
Sushil Subedi
 
Data repersentation.
Data repersentation.Data repersentation.
Data repersentation.
Ritesh Saini
 
Data representation
Data representationData representation
Data representation
rozanadiana
 
[1] Data Representation
[1] Data Representation[1] Data Representation
[1] Data Representation
Mr McAlpine
 
Acem numbersystem
Acem numbersystemAcem numbersystem
Acem numbersystem
Aastha Kohli
 
Introduction to Computing
Introduction to ComputingIntroduction to Computing
Introduction to Computing
Mark John Lado, MIT
 
Chapter 1: Binary System
 Chapter 1: Binary System Chapter 1: Binary System
Chapter 1: Binary System
Er. Nawaraj Bhandari
 
Computer Systems Data Representation
Computer Systems   Data RepresentationComputer Systems   Data Representation
Computer Systems Data Representation
iarthur
 
Binary computing
Binary computingBinary computing
Binary computing
samina khan
 
Data representation
Data representationData representation
Data representation
Mysore
 
Number System (Binary,octal,Decimal,Hexadecimal)
Number System (Binary,octal,Decimal,Hexadecimal)Number System (Binary,octal,Decimal,Hexadecimal)
Number System (Binary,octal,Decimal,Hexadecimal)
Lovely Singh
 
Topic 1 Data Representation
Topic 1 Data RepresentationTopic 1 Data Representation
Topic 1 Data Representation
ekul
 
Data representation
Data representationData representation
Data representation
vikram mahendra
 
Data representation
Data representationData representation
Data representation
MAGADH UNIVERSITY,BOADH GAYA
 
Data representation
 Data representation Data representation
Data representation
Ashraf Miraz
 
Number Systems Basic Concepts
Number Systems Basic ConceptsNumber Systems Basic Concepts
Number Systems Basic Concepts
Laguna State Polytechnic University
 

What's hot (20)

How computers represent data
How computers represent dataHow computers represent data
How computers represent data
 
Number System
Number SystemNumber System
Number System
 
Data representation in computers
Data representation in computersData representation in computers
Data representation in computers
 
Number system
Number system Number system
Number system
 
Number system
Number systemNumber system
Number system
 
Data repersentation.
Data repersentation.Data repersentation.
Data repersentation.
 
Data representation
Data representationData representation
Data representation
 
[1] Data Representation
[1] Data Representation[1] Data Representation
[1] Data Representation
 
Acem numbersystem
Acem numbersystemAcem numbersystem
Acem numbersystem
 
Introduction to Computing
Introduction to ComputingIntroduction to Computing
Introduction to Computing
 
Chapter 1: Binary System
 Chapter 1: Binary System Chapter 1: Binary System
Chapter 1: Binary System
 
Computer Systems Data Representation
Computer Systems   Data RepresentationComputer Systems   Data Representation
Computer Systems Data Representation
 
Binary computing
Binary computingBinary computing
Binary computing
 
Data representation
Data representationData representation
Data representation
 
Number System (Binary,octal,Decimal,Hexadecimal)
Number System (Binary,octal,Decimal,Hexadecimal)Number System (Binary,octal,Decimal,Hexadecimal)
Number System (Binary,octal,Decimal,Hexadecimal)
 
Topic 1 Data Representation
Topic 1 Data RepresentationTopic 1 Data Representation
Topic 1 Data Representation
 
Data representation
Data representationData representation
Data representation
 
Data representation
Data representationData representation
Data representation
 
Data representation
 Data representation Data representation
Data representation
 
Number Systems Basic Concepts
Number Systems Basic ConceptsNumber Systems Basic Concepts
Number Systems Basic Concepts
 

Similar to Numbersystem 130913004355-phpapp02-converted

Number System
Number SystemNumber System
Number System
itutor
 
Number+system (1)
Number+system (1)Number+system (1)
Number+system (1)
Bilal Maqbool ツ
 
Number system
Number system  Number system
Number system
anjineyalus
 
Number system.pdf
Number system.pdfNumber system.pdf
Number system.pdf
DeepuGuna
 
Number Systems.pptx
Number Systems.pptxNumber Systems.pptx
Number Systems.pptx
Kamran Waghani
 
Data types
Data typesData types
Data types
gavhays
 
NUMBER SYSTEM.pptx
NUMBER SYSTEM.pptxNUMBER SYSTEM.pptx
NUMBER SYSTEM.pptx
NathanielRapanut2
 
Number system(everyday41.com).pdf
Number system(everyday41.com).pdfNumber system(everyday41.com).pdf
Number system(everyday41.com).pdf
everyday
 
2 (2.1) intro number sense
2 (2.1) intro    number sense2 (2.1) intro    number sense
2 (2.1) intro number sense
samanthanewgas
 
Number system 02
Number system 02Number system 02
Number system 02
Sanjeev Kumar Prajapati
 
The real number system
The real number systemThe real number system
The real number system
Shawn Burke
 
Number System
Number SystemNumber System
Number System
YogalakshmiManogaran1
 
W 9 numbering system
W 9 numbering systemW 9 numbering system
W 9 numbering system
W 9 numbering systemW 9 numbering system
NUMBER SYSTEM.pptx
NUMBER  SYSTEM.pptxNUMBER  SYSTEM.pptx
NUMBER SYSTEM.pptx
AsifRahaman16
 
Understanding Number Systems: The Fundamental Concept in Mathematics
Understanding Number Systems: The Fundamental Concept in MathematicsUnderstanding Number Systems: The Fundamental Concept in Mathematics
Understanding Number Systems: The Fundamental Concept in Mathematics
makram layth
 
Chapter 4 number system
Chapter 4 number systemChapter 4 number system
Chapter 4 number system
Praveen M Jigajinni
 
module 3,Boolean algebra and logic circuits .pptx
module 3,Boolean algebra and logic circuits .pptxmodule 3,Boolean algebra and logic circuits .pptx
module 3,Boolean algebra and logic circuits .pptx
keemjupiter
 
silo.tips_-chapter-1-the-binary-number-system-11-why-binary.pdf
silo.tips_-chapter-1-the-binary-number-system-11-why-binary.pdfsilo.tips_-chapter-1-the-binary-number-system-11-why-binary.pdf
silo.tips_-chapter-1-the-binary-number-system-11-why-binary.pdf
ssuserf7cd2b
 
Binary overview
Binary overviewBinary overview
Binary overview
Januário Esteves
 

Similar to Numbersystem 130913004355-phpapp02-converted (20)

Number System
Number SystemNumber System
Number System
 
Number+system (1)
Number+system (1)Number+system (1)
Number+system (1)
 
Number system
Number system  Number system
Number system
 
Number system.pdf
Number system.pdfNumber system.pdf
Number system.pdf
 
Number Systems.pptx
Number Systems.pptxNumber Systems.pptx
Number Systems.pptx
 
Data types
Data typesData types
Data types
 
NUMBER SYSTEM.pptx
NUMBER SYSTEM.pptxNUMBER SYSTEM.pptx
NUMBER SYSTEM.pptx
 
Number system(everyday41.com).pdf
Number system(everyday41.com).pdfNumber system(everyday41.com).pdf
Number system(everyday41.com).pdf
 
2 (2.1) intro number sense
2 (2.1) intro    number sense2 (2.1) intro    number sense
2 (2.1) intro number sense
 
Number system 02
Number system 02Number system 02
Number system 02
 
The real number system
The real number systemThe real number system
The real number system
 
Number System
Number SystemNumber System
Number System
 
W 9 numbering system
W 9 numbering systemW 9 numbering system
W 9 numbering system
 
W 9 numbering system
W 9 numbering systemW 9 numbering system
W 9 numbering system
 
NUMBER SYSTEM.pptx
NUMBER  SYSTEM.pptxNUMBER  SYSTEM.pptx
NUMBER SYSTEM.pptx
 
Understanding Number Systems: The Fundamental Concept in Mathematics
Understanding Number Systems: The Fundamental Concept in MathematicsUnderstanding Number Systems: The Fundamental Concept in Mathematics
Understanding Number Systems: The Fundamental Concept in Mathematics
 
Chapter 4 number system
Chapter 4 number systemChapter 4 number system
Chapter 4 number system
 
module 3,Boolean algebra and logic circuits .pptx
module 3,Boolean algebra and logic circuits .pptxmodule 3,Boolean algebra and logic circuits .pptx
module 3,Boolean algebra and logic circuits .pptx
 
silo.tips_-chapter-1-the-binary-number-system-11-why-binary.pdf
silo.tips_-chapter-1-the-binary-number-system-11-why-binary.pdfsilo.tips_-chapter-1-the-binary-number-system-11-why-binary.pdf
silo.tips_-chapter-1-the-binary-number-system-11-why-binary.pdf
 
Binary overview
Binary overviewBinary overview
Binary overview
 

Recently uploaded

Excursions in Tahiti Island Adventure
Excursions in Tahiti Island AdventureExcursions in Tahiti Island Adventure
Excursions in Tahiti Island Adventure
Unique Tahiti
 
Assessing the Influence of Transportation on the Tourism Industry in Nigeria
Assessing the Influence of Transportation on the  Tourism Industry in NigeriaAssessing the Influence of Transportation on the  Tourism Industry in Nigeria
Assessing the Influence of Transportation on the Tourism Industry in Nigeria
gsochially
 
How Do I Plan a Kilimanjaro Climb? 7 Essential Tips Revealed.pdf
How Do I Plan a Kilimanjaro Climb? 7 Essential Tips Revealed.pdfHow Do I Plan a Kilimanjaro Climb? 7 Essential Tips Revealed.pdf
How Do I Plan a Kilimanjaro Climb? 7 Essential Tips Revealed.pdf
Eastafrica Travelcompany
 
Uk Visa Complete Guide and application process
Uk Visa Complete Guide and application processUk Visa Complete Guide and application process
Uk Visa Complete Guide and application process
pandeypratikwgblindi
 
The Power of a Glamping Go-To-Market Accelerator Plan.pptx
The Power of a Glamping Go-To-Market Accelerator Plan.pptxThe Power of a Glamping Go-To-Market Accelerator Plan.pptx
The Power of a Glamping Go-To-Market Accelerator Plan.pptx
RezStream
 
How To Talk To a Live Person at American Airlines
How To Talk To a Live Person at American AirlinesHow To Talk To a Live Person at American Airlines
How To Talk To a Live Person at American Airlines
flyn goo
 
在线办理(BU毕业证书)波士顿大学毕业证录取通知书一模一样
在线办理(BU毕业证书)波士顿大学毕业证录取通知书一模一样在线办理(BU毕业证书)波士顿大学毕业证录取通知书一模一样
在线办理(BU毕业证书)波士顿大学毕业证录取通知书一模一样
v6ldcxuq
 
Wayanad-The-Touristry-Heaven to the tour.pptx
Wayanad-The-Touristry-Heaven to the tour.pptxWayanad-The-Touristry-Heaven to the tour.pptx
Wayanad-The-Touristry-Heaven to the tour.pptx
cosmo-soil
 

Recently uploaded (8)

Excursions in Tahiti Island Adventure
Excursions in Tahiti Island AdventureExcursions in Tahiti Island Adventure
Excursions in Tahiti Island Adventure
 
Assessing the Influence of Transportation on the Tourism Industry in Nigeria
Assessing the Influence of Transportation on the  Tourism Industry in NigeriaAssessing the Influence of Transportation on the  Tourism Industry in Nigeria
Assessing the Influence of Transportation on the Tourism Industry in Nigeria
 
How Do I Plan a Kilimanjaro Climb? 7 Essential Tips Revealed.pdf
How Do I Plan a Kilimanjaro Climb? 7 Essential Tips Revealed.pdfHow Do I Plan a Kilimanjaro Climb? 7 Essential Tips Revealed.pdf
How Do I Plan a Kilimanjaro Climb? 7 Essential Tips Revealed.pdf
 
Uk Visa Complete Guide and application process
Uk Visa Complete Guide and application processUk Visa Complete Guide and application process
Uk Visa Complete Guide and application process
 
The Power of a Glamping Go-To-Market Accelerator Plan.pptx
The Power of a Glamping Go-To-Market Accelerator Plan.pptxThe Power of a Glamping Go-To-Market Accelerator Plan.pptx
The Power of a Glamping Go-To-Market Accelerator Plan.pptx
 
How To Talk To a Live Person at American Airlines
How To Talk To a Live Person at American AirlinesHow To Talk To a Live Person at American Airlines
How To Talk To a Live Person at American Airlines
 
在线办理(BU毕业证书)波士顿大学毕业证录取通知书一模一样
在线办理(BU毕业证书)波士顿大学毕业证录取通知书一模一样在线办理(BU毕业证书)波士顿大学毕业证录取通知书一模一样
在线办理(BU毕业证书)波士顿大学毕业证录取通知书一模一样
 
Wayanad-The-Touristry-Heaven to the tour.pptx
Wayanad-The-Touristry-Heaven to the tour.pptxWayanad-The-Touristry-Heaven to the tour.pptx
Wayanad-The-Touristry-Heaven to the tour.pptx
 

Numbersystem 130913004355-phpapp02-converted

  • 2. Number system  In earlier days, people used to exchange their things for other things. The requirement for numbers primarily originated from the need to count.  They used the numbers 1,2,3,.that served the people for many years because all they needed to count was their crops, and animals.  Later on numbers such as zero, integers, rational numbers, irrational numbers were introduced.  There is evidence that as early as 30,000 BC our ancient ancestors were tallying or counting things. That is where the concept of number systems began. © iTutor. 2000-2013.All Rights Reserved
  • 3. Numbers  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, ……………… , }.  If our system of numbers was limited to the Natural Numbers then a number such as –2 would have no meaning. The next number system is the Integers. © iTutor. 2000-2013.All Rights Reserved
  • 4. numbers  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 Where p and q are integers and q ≠ 0 is called a rational number, so all the integers are rational number . .p q © iTutor. 2000-2013.All Rights Reserved
  • 5. numbers  Irrational numbers : p The number can not be written in the form of . q Pythagorean in Greece were first to discover irrational number .  2, 3, are irrational number . © iTutor. 2000-2013.All Rights Reserved
  • 6. numbers  Real numbers:  All the numbers including rational and irrational numbers are called real number  The official symbol for real numbers is a bold R.  Prime numbers:  The real number which is divisible by 1 and itself is called prime number Ex- 1,2,3,5,7,11,13,17, ….. © iTutor. 2000-2013.All Rights Reserved
  • 7. The Real Number System Real Numbers (all numbers are real) Rational Numbers Irrational Numbers …-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5 Integers Whole Numbers Natural Numbers …any number that is not rational Example: = 3.14159…… e= 2.71828….. Which can be written in the form of . p q © iTutor. 2000-2013.All Rights Reserved
  • 8. Number system  A number system defines how a number can be represented using distinct symbols.  A number can be represented differently in different systems.  For example, the two numbers (2A)16 and (52)8 both refer to the same quantity, (42)10, but their representations are different. © iTutor. 2000-2013.All Rights Reserved
  • 9. Common Number Systems Number system can be categorized as Decimal number system Binary number system Octal number system Hexadecimal Number System © iTutor. 2000-2013.All Rights Reserved
  • 10. Common Number Systems  Each number system is associated with a base or radix The decimal number system is said to be of base or radix 10  A number in base r contains r digits 0,1,2,...,r-1 Decimal (Base 10): 0,1,2,3,4,5,6,7,8,9 System Base Symbols Used by humans? Used in computers? Decimal 10 0, 1, … 9 Yes No Binary 2 0, 1 No Yes Octal 8 0, 1, … 7 No No Hexa- decimal 16 0, 1, … 9, A, B, … F No No © iTutor. 2000-2013.All Rights Reserved
  • 11. The decimal system (base 10)  The word decimal is derived from the Latin root decem (ten). In this system the base b = 10 and we use ten symbols. S = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}. Binary system (base 2)  The word binary is derived from the Latin root bini (or two by two).  In this system the base b = 2 and we use only two symbols, S = {0, 1}  The symbols in this system are often referred to as binary digits or bits. © iTutor. 2000-2013.All Rights Reserved
  • 12. The hexadecimal system (base 1)  The word hexadecimal is derived from the Greek root hex (six) and the Latin root decem (ten).  In this system the base b = 16 and we use sixteen symbols to represent a number.  The set of symbols is S = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E,F}  The symbols A, B, C, D, E, F are equivalent to 10, 11, 12, 13, 14, and 15 respectively.  The symbols in this system are often referred to as hexadecimal digits. © iTutor. 2000-2013.All Rights Reserved
  • 13. The o c t a l system (base 8)  The word octal is derived from the Latin root octo (eight).  In this system the base b = 8 and we use eight symbols to represent a number.  The set of symbols is: S = {0, 1, 2, 3, 4, 5, 6, 7} © iTutor. 2000-2013.All Rights Reserved
  • 14. Converting Decimal t o Binary 162 / 2 = 81 rem 0 81 / 2 = 40 rem 1 40 / 2 = 20 rem 0 20 / 2 = 10 rem 0 10 / 2 = 5 rem 0 5 / 2 = 2 rem 1 2 / 2 = 1 rem 0 1 / 2 = 0 rem 1  To convert a decimal integer into binary, keep dividing by 2 until the quotient is 0. Collect the remainders in reverse order  To convert a fraction, keep multiplying the fractional part by 2 until it becomes 0. Collect the integer parts in forward order  Example: 162.375: So, (162.375)10 = (10100010.011)2 0.375 x 2 = 0.750 0.750 x 2 = 1.500 0.500 x 2 = 1.000 14 © iTutor. 2000-2013.All Rights Reserved
  • 15. Octal and Hexadecimal Numbers The octal number system: Base-8 Eight digits: 0,1,2,3,4,5,6,7 (127 .4) 1 82 2 81 7 80 4 8 1 (87 .5) 8 10  The hexadecimal number system: Base-16  Sixteen digits: 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F  For our purposes, base-8 and base-16 are most useful as a “shorthand” notation for binary numbers (B65 F ) 11 16 3 6 16 2 5 161 15 16 0 ( 46687 ) 16 10 15 © iTutor. 2000-2013.All Rights Reserved
  • 16. The end For more information c a l l us 1-855-694-8886 Visit www.iTutor.com