SlideShare a Scribd company logo
1 of 15
NUMBER
SYSTEM
-By
Snehamay Roy .
Roll No. : 34900321029 .
Presentation submitted for CA1 examination of the
Paper : Digital System design (EC302)
Department of ECE
Content
 Introduction
 Types of Number Systems
 Binary Number System
 Octal Number System
 Decimal Number System
 Hexadecimal Number System
 Conversion
 Conclusion
 References
Introduction
 A number system is defined as the representation of numbers by using digits or other
symbols in a consistent manner.
 The value of any digit in a number can be determined by a digit, its position in the number,
and the base of the number system.
 The numbers are represented in a unique manner and allow us to operate arithmetic
operations like addition, subtraction, and division.
Types of Number System
 Based on the base value and the number of allowed digits, number systems are of many
types. The four common types of Number System are:
1.Decimal Number system.
2.Binary Number system.
3.Octal Number system.
4.Hexadecimal Number system.
1. Decimal Number system
 Decimal number system is the number system we use every day and uses digits from 0 - 9 i.e.
0, 1, 2, 3, 4, 5, 6, 7, 8, & 9.
 The base number of the decimal number system is 10 as the total number available in
this number system is 10.
 If any number is represented without a base, it means that its base is 10.
 For example: 7310,13210,5267107310,13210,526710 are some examples of numbers in the
decimal number system.
 Let us look at an example for a better understanding, (134)10(134)10 = 1 × 102 + 3 × 101 + 4 ×
100, (78)10(78)10 = 7 × 101 + 8 × 100. A number with a decimal point in the decimal number
system is expressed in the decreasing power of 10 after the decimal point. For
example, (24.5)10(24.5)10 = 2 × 101 + 4 × 100 + 5 × 10-1
2. Binary Number system.
 Binary number system is used to define a number in binary system.
 The binary number system uses only two digits: 0 and 1. The numbers in this system have
a base of 2. Digits 0 and 1 are called bits and 8 bits together make a byte.
 The data in computers is stored in terms of bits and bytes. The binary number system
does not deal with other numbers such as 2,3,4,5 and so on.
 For example: 100012, 1111012, 10101012 are some examples of numbers in the binary number
system.
 The binary number system is used commonly by computer languages like Java, C++. As
the computer only understands binary language that is 0 or 1, all inputs given to a
computer are decoded by it into series of 0's or 1's to process it further.
3. Octal Number system
 Octal Number System has a base of eight and uses the numbers from 0 to 7.
 The octal numbers, in the number system, are usually represented by binary numbers when they
are grouped in pairs of three.
 For example, an octal number 128 is expressed as 0010102 in the binary system, where 1 is
equivalent to 001 and 2 is equivalent to 010.
 If we solve an octal number, each place is a power of eight.
1248 = 1 × 82 + 2 × 81 + 4 × 80
.
4.Hexadecimal Number system
 The hexadecimal number system is a type of number system, that has a base value equal
to 16. It is also pronounced sometimes as ‘hex’. Hexadecimal numbers are represented by
only 16 symbols. These symbols or values are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E and F.
Each digit represents a decimal value. For example, D is equal to base-10 13.
 Examples: (255)10 can be written as (FF)16,(1096)10 can be written as (448)16
 Hexadecimal number systems can be converted to other number systems such as binary
number (base-2), octal number (base-8) and decimal number systems (base-10).
 The list of 16 hexadecimal digits with their equivalent decimal, octal and binary
representation is given here in the form of a table, which will help in number system
conversion. This list can be used as a translator or converter also.
Conversion
 Conversion between numbers systems is quite an easy task. Any number from any number system can be
converted to other number systems with the help of certain methods that will be discussed below:
1. Conversion from Decimal Number System to Other Number Systems
A. Decimal to Binary Conversion:
 Step 1: Identify the base of the required number. Since we have to convert the given number into the octal
system, the base of the required number is 8.
 Step 2: Divide the given number by the base of the required number and note down the quotient and the
remainder in the quotient-remainder form. Repeat this process (dividing the quotient again by the base)
until we get the quotient less than the base.
 Step 3: The given number in the octal number system is obtained just by reading all the remainders and the
last quotient from bottom to top.
A. Decimal to Octal Conversion:
 Step 1: Divide the Decimal Number with the base of the number system to be converted to.
Here the conversion is to octal, hence the divisor will be 8.
 Step 2:The remainder obtained from the division will become the least significant digit of the
new number.
 Step 3:The quotient obtained from the division will become the next dividend and will be
divided by base i.e. 8.
 Step 4: The remainder obtained will become the second least significant digit i.e. it will be
added in the left of the previously obtained digit.
A. Decimal to Hexadecimal Conversion:
 Step 1: Divide the Decimal Number with the base of the number system to be converted to.
Here the conversion is to Hex hence the divisor will be 16.
 Step 2:The remainder obtained from the division will become the least significant digit of
the new number.
 Step 3:The quotient obtained from the division will become the next dividend and will be
divided by base i.e. 16.
 Step 4:The remainder obtained will become the second least significant digit i.e. it will be
added in the left of the previously obtained digit.
2. Conversion from Binary Number System to Other Number
Systems
A. Binary to Decimal Conversion:-
 Step 1: Multiply each digit of the Binary number with the place value of that digit, starting
from right to left i.e. from LSB to MSB.
 Step 2: Add the result of this multiplication and the decimal number will be formed.
.
C. Binary to Hexadecimal Conversion:
 Step 1: Divide the binary number into groups of four digits starting from right to left i.e.
from LSB to MSB
 Step 2: Convert these groups into equivalent hex digits.
Conclusion
 The most commonly used Number system is the decimal positional number system, the
decimal referring to the use of 10 numbers 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 to construct all the
required numbers.
 This discovery was made by the Indians. There are other two common number systems
which are used in computers and computing science.
 They are the binary system, and these are denoted by 0's and 1's, and the hexadecimal
system, which has 16 symbols (We can understand by the term Hex which is 16) 0, 1, 2, 3, 4,
5, 6, 7, 8, 9, A, B, C, D, E, F.
References :
 1. Book “ Digital logic and computer design “-R.P
. Jain.
 2. Internet: Google.
Thank You,

More Related Content

What's hot (20)

review of number systems and codes
review of number systems and codesreview of number systems and codes
review of number systems and codes
 
Data structure
Data structureData structure
Data structure
 
Representation of Negative Numbers
Representation of Negative NumbersRepresentation of Negative Numbers
Representation of Negative Numbers
 
Binary true ppt
Binary true pptBinary true ppt
Binary true ppt
 
Number System
Number SystemNumber System
Number System
 
Lecture-2(2): Number System & Conversion
Lecture-2(2): Number System & ConversionLecture-2(2): Number System & Conversion
Lecture-2(2): Number System & Conversion
 
Slide03 Number System and Operations Part 1
Slide03 Number System and Operations Part 1Slide03 Number System and Operations Part 1
Slide03 Number System and Operations Part 1
 
Number system and codes
Number system and codesNumber system and codes
Number system and codes
 
Binary Tree Representation in memory
Binary Tree Representation in memoryBinary Tree Representation in memory
Binary Tree Representation in memory
 
Hexadecimal numbers
Hexadecimal  numbersHexadecimal  numbers
Hexadecimal numbers
 
Number system in Digital Electronics
Number system in Digital ElectronicsNumber system in Digital Electronics
Number system in Digital Electronics
 
Variables in C++, data types in c++
Variables in C++, data types in c++Variables in C++, data types in c++
Variables in C++, data types in c++
 
Number system part 1
Number  system part 1Number  system part 1
Number system part 1
 
Number system
Number systemNumber system
Number system
 
Conversion of Number Systems
Conversion of Number SystemsConversion of Number Systems
Conversion of Number Systems
 
Number system
Number systemNumber system
Number system
 
Advantage of binary number system
Advantage of binary number systemAdvantage of binary number system
Advantage of binary number system
 
Number system
Number systemNumber system
Number system
 
01.number systems
01.number systems01.number systems
01.number systems
 
Array operations
Array operationsArray operations
Array operations
 

Similar to NUMBER SYSTEM.pptx

Similar to NUMBER SYSTEM.pptx (20)

NUMBER SYSTEM.pptx
NUMBER SYSTEM.pptxNUMBER SYSTEM.pptx
NUMBER SYSTEM.pptx
 
Grade5(Test 2).pptx
Grade5(Test 2).pptxGrade5(Test 2).pptx
Grade5(Test 2).pptx
 
Computer Number system
Computer Number systemComputer Number system
Computer Number system
 
numbersystem-211022083557.pdf
numbersystem-211022083557.pdfnumbersystem-211022083557.pdf
numbersystem-211022083557.pdf
 
Number System.pptx
Number System.pptxNumber System.pptx
Number System.pptx
 
Data representation
Data representationData representation
Data representation
 
Data repersentation.
Data repersentation.Data repersentation.
Data repersentation.
 
Number+system (1)
Number+system (1)Number+system (1)
Number+system (1)
 
Number System.
Number System.Number System.
Number System.
 
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
 
Number system computer fundamental
 Number  system computer fundamental  Number  system computer fundamental
Number system computer fundamental
 
Ch 4
Ch 4Ch 4
Ch 4
 
Number-Systems presentation of the mathematics
Number-Systems presentation of the mathematicsNumber-Systems presentation of the mathematics
Number-Systems presentation of the mathematics
 
NUMBER SYSTEM.pptx
NUMBER SYSTEM.pptxNUMBER SYSTEM.pptx
NUMBER SYSTEM.pptx
 
Number system
Number systemNumber system
Number system
 
Number System and Boolean Algebra
Number System and Boolean AlgebraNumber System and Boolean Algebra
Number System and Boolean Algebra
 
04 chapter03 02_numbers_systems_student_version_fa16
04 chapter03 02_numbers_systems_student_version_fa1604 chapter03 02_numbers_systems_student_version_fa16
04 chapter03 02_numbers_systems_student_version_fa16
 
Week 4-Number Systems.pptx
Week 4-Number Systems.pptxWeek 4-Number Systems.pptx
Week 4-Number Systems.pptx
 
Class 7 Cyber toolsComputer NUMBER SYSTEM
Class 7 Cyber toolsComputer NUMBER SYSTEMClass 7 Cyber toolsComputer NUMBER SYSTEM
Class 7 Cyber toolsComputer NUMBER SYSTEM
 
Presentation of ICT.ppt.pptx
Presentation of ICT.ppt.pptxPresentation of ICT.ppt.pptx
Presentation of ICT.ppt.pptx
 

More from AsifRahaman16

Asif_Rahaman_8_MATHCA1.pptxjgjgjhgiyuki7uihmn
Asif_Rahaman_8_MATHCA1.pptxjgjgjhgiyuki7uihmnAsif_Rahaman_8_MATHCA1.pptxjgjgjhgiyuki7uihmn
Asif_Rahaman_8_MATHCA1.pptxjgjgjhgiyuki7uihmnAsifRahaman16
 
34900721068_Asif Rahaman_MD.pptx
34900721068_Asif Rahaman_MD.pptx34900721068_Asif Rahaman_MD.pptx
34900721068_Asif Rahaman_MD.pptxAsifRahaman16
 
MSF Report(for PR).pdf
MSF Report(for PR).pdfMSF Report(for PR).pdf
MSF Report(for PR).pdfAsifRahaman16
 
Asif Rahaman_34900721068.pptx
Asif Rahaman_34900721068.pptxAsif Rahaman_34900721068.pptx
Asif Rahaman_34900721068.pptxAsifRahaman16
 
Energy Method ppt.pptx
Energy Method ppt.pptxEnergy Method ppt.pptx
Energy Method ppt.pptxAsifRahaman16
 
34900721009_Arnab Hazra_BS-BIO301.pptn
34900721009_Arnab Hazra_BS-BIO301.pptn34900721009_Arnab Hazra_BS-BIO301.pptn
34900721009_Arnab Hazra_BS-BIO301.pptnAsifRahaman16
 
ssppt-170414031953.pptx
ssppt-170414031953.pptxssppt-170414031953.pptx
ssppt-170414031953.pptxAsifRahaman16
 
Engineering Mechanics.
Engineering Mechanics.Engineering Mechanics.
Engineering Mechanics.AsifRahaman16
 

More from AsifRahaman16 (15)

Asif_Rahaman_8_MATHCA1.pptxjgjgjhgiyuki7uihmn
Asif_Rahaman_8_MATHCA1.pptxjgjgjhgiyuki7uihmnAsif_Rahaman_8_MATHCA1.pptxjgjgjhgiyuki7uihmn
Asif_Rahaman_8_MATHCA1.pptxjgjgjhgiyuki7uihmn
 
34900721068_Asif Rahaman_MD.pptx
34900721068_Asif Rahaman_MD.pptx34900721068_Asif Rahaman_MD.pptx
34900721068_Asif Rahaman_MD.pptx
 
MSF Report(for PR).pdf
MSF Report(for PR).pdfMSF Report(for PR).pdf
MSF Report(for PR).pdf
 
yutu.pptx
yutu.pptxyutu.pptx
yutu.pptx
 
Asif Rahaman_34900721068.pptx
Asif Rahaman_34900721068.pptxAsif Rahaman_34900721068.pptx
Asif Rahaman_34900721068.pptx
 
Energy Method ppt.pptx
Energy Method ppt.pptxEnergy Method ppt.pptx
Energy Method ppt.pptx
 
34900721009_Arnab Hazra_BS-BIO301.pptn
34900721009_Arnab Hazra_BS-BIO301.pptn34900721009_Arnab Hazra_BS-BIO301.pptn
34900721009_Arnab Hazra_BS-BIO301.pptn
 
34900721068.pptx
34900721068.pptx34900721068.pptx
34900721068.pptx
 
ssppt-170414031953.pptx
ssppt-170414031953.pptxssppt-170414031953.pptx
ssppt-170414031953.pptx
 
EC-304.pptx
EC-304.pptxEC-304.pptx
EC-304.pptx
 
PN Junction.pptx
PN Junction.pptxPN Junction.pptx
PN Junction.pptx
 
C programming
C programming C programming
C programming
 
Engineering Mechanics.
Engineering Mechanics.Engineering Mechanics.
Engineering Mechanics.
 
Method of sections
Method of sections Method of sections
Method of sections
 
Analysis of Truss
Analysis of TrussAnalysis of Truss
Analysis of Truss
 

Recently uploaded

Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...soginsider
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesMayuraD1
 
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptxA CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptxmaisarahman1
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxJuliansyahHarahap1
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayEpec Engineered Technologies
 
Rums floating Omkareshwar FSPV IM_16112021.pdf
Rums floating Omkareshwar FSPV IM_16112021.pdfRums floating Omkareshwar FSPV IM_16112021.pdf
Rums floating Omkareshwar FSPV IM_16112021.pdfsmsksolar
 
AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsvanyagupta248
 
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...Call Girls Mumbai
 
2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projectssmsksolar
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptMsecMca
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwaitjaanualu31
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startQuintin Balsdon
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityMorshed Ahmed Rahath
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Arindam Chakraborty, Ph.D., P.E. (CA, TX)
 
Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086anil_gaur
 
Engineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planesEngineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planesRAJNEESHKUMAR341697
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationBhangaleSonal
 

Recently uploaded (20)

FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakes
 
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptxA CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
 
Rums floating Omkareshwar FSPV IM_16112021.pdf
Rums floating Omkareshwar FSPV IM_16112021.pdfRums floating Omkareshwar FSPV IM_16112021.pdf
Rums floating Omkareshwar FSPV IM_16112021.pdf
 
AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech students
 
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
 
2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna Municipality
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086
 
Engineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planesEngineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planes
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equation
 

NUMBER SYSTEM.pptx

  • 1. NUMBER SYSTEM -By Snehamay Roy . Roll No. : 34900321029 . Presentation submitted for CA1 examination of the Paper : Digital System design (EC302) Department of ECE
  • 2. Content  Introduction  Types of Number Systems  Binary Number System  Octal Number System  Decimal Number System  Hexadecimal Number System  Conversion  Conclusion  References
  • 3. Introduction  A number system is defined as the representation of numbers by using digits or other symbols in a consistent manner.  The value of any digit in a number can be determined by a digit, its position in the number, and the base of the number system.  The numbers are represented in a unique manner and allow us to operate arithmetic operations like addition, subtraction, and division.
  • 4. Types of Number System  Based on the base value and the number of allowed digits, number systems are of many types. The four common types of Number System are: 1.Decimal Number system. 2.Binary Number system. 3.Octal Number system. 4.Hexadecimal Number system.
  • 5. 1. Decimal Number system  Decimal number system is the number system we use every day and uses digits from 0 - 9 i.e. 0, 1, 2, 3, 4, 5, 6, 7, 8, & 9.  The base number of the decimal number system is 10 as the total number available in this number system is 10.  If any number is represented without a base, it means that its base is 10.  For example: 7310,13210,5267107310,13210,526710 are some examples of numbers in the decimal number system.  Let us look at an example for a better understanding, (134)10(134)10 = 1 × 102 + 3 × 101 + 4 × 100, (78)10(78)10 = 7 × 101 + 8 × 100. A number with a decimal point in the decimal number system is expressed in the decreasing power of 10 after the decimal point. For example, (24.5)10(24.5)10 = 2 × 101 + 4 × 100 + 5 × 10-1
  • 6. 2. Binary Number system.  Binary number system is used to define a number in binary system.  The binary number system uses only two digits: 0 and 1. The numbers in this system have a base of 2. Digits 0 and 1 are called bits and 8 bits together make a byte.  The data in computers is stored in terms of bits and bytes. The binary number system does not deal with other numbers such as 2,3,4,5 and so on.  For example: 100012, 1111012, 10101012 are some examples of numbers in the binary number system.  The binary number system is used commonly by computer languages like Java, C++. As the computer only understands binary language that is 0 or 1, all inputs given to a computer are decoded by it into series of 0's or 1's to process it further.
  • 7. 3. Octal Number system  Octal Number System has a base of eight and uses the numbers from 0 to 7.  The octal numbers, in the number system, are usually represented by binary numbers when they are grouped in pairs of three.  For example, an octal number 128 is expressed as 0010102 in the binary system, where 1 is equivalent to 001 and 2 is equivalent to 010.  If we solve an octal number, each place is a power of eight. 1248 = 1 × 82 + 2 × 81 + 4 × 80 .
  • 8. 4.Hexadecimal Number system  The hexadecimal number system is a type of number system, that has a base value equal to 16. It is also pronounced sometimes as ‘hex’. Hexadecimal numbers are represented by only 16 symbols. These symbols or values are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E and F. Each digit represents a decimal value. For example, D is equal to base-10 13.  Examples: (255)10 can be written as (FF)16,(1096)10 can be written as (448)16  Hexadecimal number systems can be converted to other number systems such as binary number (base-2), octal number (base-8) and decimal number systems (base-10).  The list of 16 hexadecimal digits with their equivalent decimal, octal and binary representation is given here in the form of a table, which will help in number system conversion. This list can be used as a translator or converter also.
  • 9. Conversion  Conversion between numbers systems is quite an easy task. Any number from any number system can be converted to other number systems with the help of certain methods that will be discussed below: 1. Conversion from Decimal Number System to Other Number Systems A. Decimal to Binary Conversion:  Step 1: Identify the base of the required number. Since we have to convert the given number into the octal system, the base of the required number is 8.  Step 2: Divide the given number by the base of the required number and note down the quotient and the remainder in the quotient-remainder form. Repeat this process (dividing the quotient again by the base) until we get the quotient less than the base.  Step 3: The given number in the octal number system is obtained just by reading all the remainders and the last quotient from bottom to top.
  • 10. A. Decimal to Octal Conversion:  Step 1: Divide the Decimal Number with the base of the number system to be converted to. Here the conversion is to octal, hence the divisor will be 8.  Step 2:The remainder obtained from the division will become the least significant digit of the new number.  Step 3:The quotient obtained from the division will become the next dividend and will be divided by base i.e. 8.  Step 4: The remainder obtained will become the second least significant digit i.e. it will be added in the left of the previously obtained digit.
  • 11. A. Decimal to Hexadecimal Conversion:  Step 1: Divide the Decimal Number with the base of the number system to be converted to. Here the conversion is to Hex hence the divisor will be 16.  Step 2:The remainder obtained from the division will become the least significant digit of the new number.  Step 3:The quotient obtained from the division will become the next dividend and will be divided by base i.e. 16.  Step 4:The remainder obtained will become the second least significant digit i.e. it will be added in the left of the previously obtained digit.
  • 12. 2. Conversion from Binary Number System to Other Number Systems A. Binary to Decimal Conversion:-  Step 1: Multiply each digit of the Binary number with the place value of that digit, starting from right to left i.e. from LSB to MSB.  Step 2: Add the result of this multiplication and the decimal number will be formed. .
  • 13. C. Binary to Hexadecimal Conversion:  Step 1: Divide the binary number into groups of four digits starting from right to left i.e. from LSB to MSB  Step 2: Convert these groups into equivalent hex digits.
  • 14. Conclusion  The most commonly used Number system is the decimal positional number system, the decimal referring to the use of 10 numbers 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 to construct all the required numbers.  This discovery was made by the Indians. There are other two common number systems which are used in computers and computing science.  They are the binary system, and these are denoted by 0's and 1's, and the hexadecimal system, which has 16 symbols (We can understand by the term Hex which is 16) 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F.
  • 15. References :  1. Book “ Digital logic and computer design “-R.P . Jain.  2. Internet: Google. Thank You,