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

What's hot (20)

Bcd
BcdBcd
Bcd
 
Number System
Number SystemNumber System
Number System
 
Number System
Number SystemNumber System
Number System
 
BINARY NUMBER SYSTEM
BINARY NUMBER SYSTEMBINARY NUMBER SYSTEM
BINARY 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
 
Computer Science Class 11 India PPT
Computer Science Class 11 India PPTComputer Science Class 11 India PPT
Computer Science Class 11 India PPT
 
Number System
Number SystemNumber System
Number System
 
Number system
Number systemNumber system
Number system
 
People as resource
People as resourcePeople as resource
People as resource
 
27 tally presentation
27 tally presentation27 tally presentation
27 tally presentation
 
Computer System Class - 9
Computer System Class - 9Computer System Class - 9
Computer System Class - 9
 
Number system
Number systemNumber system
Number system
 
Number System
Number SystemNumber System
Number System
 
Binary to Decimal Conversion
Binary to Decimal ConversionBinary to Decimal Conversion
Binary to Decimal Conversion
 
Number System
Number SystemNumber System
Number System
 
binary number system
 binary number system binary number system
binary number system
 
Population ( class 9 )
Population ( class 9 )    Population ( class 9 )
Population ( class 9 )
 
Number base conversion
Number base conversionNumber base conversion
Number base conversion
 
Binary computing
Binary computingBinary computing
Binary computing
 
data representation
 data representation data representation
data representation
 

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 systems
Number systemsNumber systems
Number systems
 
NUMBER SYSTEM.pptx
NUMBER SYSTEM.pptxNUMBER SYSTEM.pptx
NUMBER SYSTEM.pptx
 
Number system
Number systemNumber system
Number system
 
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
 
Presentation of ICT.ppt.pptx
Presentation of ICT.ppt.pptxPresentation of ICT.ppt.pptx
Presentation of ICT.ppt.pptx
 
Number system
Number system  Number system
Number system
 

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

INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEroselinkalist12
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)dollysharma2066
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 

Recently uploaded (20)

INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
young call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Serviceyoung call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Service
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 

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,