SlideShare a Scribd company logo
1 of 19
NUMBER SYSTEM
SHILPA KRISHNA
RESEARCH SCHOLAR
NUMBER SYSTEM
DECIMAL BINARY OCTAL HEXADECIMAL
DECIMALNUMBER SYSTEM
• The number system that we use in our day-to-life
• In this number the base is 10.ie,total number of digits or
symbols is ten.
• Example:
The value of the decimal number 4137 is calculated as -
4*1000 + 1*100 + 3*10 + 7*1
7000 100 30 7
Thousands Hundreds Tens Units
Position position position position
BINARY NUMBER SYSTEM
• Number system has two symbols 0(zero) and 1(one) called
Binary Digits or bits. Its base is 2.
• The weights assigned to bits in this system are powers of 2,
namely 20 , 21 , 22 ……
1 0 1 0 1
Most Significant Bit Least Significant Bit
OCTALNUMBER SYSTEM
• In this system there are only 8 digits ie.
0,1,2,3,4,5,6,7
• Its base is 8. Each position in an octal
number represents a power of 8
ie, 80 , 81 , 82 …….
HEXADECIMALNUMBER SYSTEM
• Number system has 16 digits. Base is 16
• In this system the first 10 digits are the digits of a
decimal system 0,1,2,3,4,5,6,7,8,9
• The remaining six digits are denoted by
A,B,C,D,E,F representing the decimal values
10,11,12,13,14,15 respectively
CONVERSION OF DECIMAL
NUMBER TO BINARY
• Find the binary equivalent of (23)10
2 23
2 11 1 LSB
2 5 1
2 2 1
2 1 0
0 1 MSB
(23)10 = (10111)2
CONVERSION OF DECIMAL
NUMBER TO OCTAL
(3451)10 = ()8 ?
8 3451
8 438 3 LSB
8 54 6
8 6 6
0 6 MSB
(3451)10 = (6663)8
CONVERSION OF DECIMAL
NUMBER TO HEXADECIMAL
(710)10 = ()16 ?
16 710
16 44 6
16 2 12
0 2
(710)10 = (2C6)16
CONVERSION OF BINARY
NUMBER TO DECIMAL
(1110101)2 = ()10 ?
(1*26) + (1*25) + (1*24) + (0*23) + (1*22) + (0*21) + (1*20)
64 32 16 0 4 0 1
= 117
(1110101)2 = (117)10
CONVERSION OF BINARY
NUMBER TO OCTAL
SHORTCUT METHOD Example:
(1101010)2 = ()8?
001 101 010
1 5 2
(1101010)2
= (152)8
OCTAL NUMBER BINARY
EQUIVALENT
0 000
1 001
2 010
3 011
4 100
5 101
6 110
7 111
CONVERSION OF BINARY
NUMBER TO HEXADECIMAL
SHORTCUT METHOD
Example:
(11010011)2 = 1101 0011
D 3
= (D3)16
DECIMAL HEXA
DECIMAL
BINARY
0 0 0000
1 1 0001
2 2 0010
3 3 0011
4 4 0100
5 5 0101
6 6 0110
7 7 0111
8 8 1000
9 9 1001
DECIMAL HEXA
DECIMAL
BINARY
10 A 1010
11 B 1011
12 C 1100
13 D 1101
14 E 1110
15 F 1111
CONVERSION OF OCTAL
NUMBER TO DECIMAL
Example:
(325)8 = ()10 ?
(3*82) + (2*81) + (5*80)
3*64 + 2*8 + 5*1
192 + 16 + 5
= 213
(325)8 = (213)10
CONVERSION OF OCTAL
NUMBER TO BINARY
SHORTCUT METHOD
(6751)8 = ( )2 ?
68 = 110
78 = 111
58 = 101
18 = 001
Hence (6751)8 = (110111101001)2
CONVERSION OF OCTAL
NUMBER TO HEXADECIMAL
(125)8 =( )16 ?
Step 1 : convert octal number to decimal
(1*82) + (2*81) + (5*80)
64 + 16 + 5
= 85
Step 2 : convert decimal number to hexadecimal
16 85
16 5 5
0 5
(125)8 = (55)16
CONVERSION OF HEXADECIMAL
NUMBER TO DECIMAL
(34F)16 = ( )10 ?
(3*162) + (4*161) + (F*160)
(3*256) + (4*16) + (15*1)
768 + 64 + 15
= 847
(34F)16 = (847)10
CONVERSION OF HEXADECIMAL
NUMBER TO BINARY
(ABC)16 = ( )2 ?
A B C
1010 1011 1100
(ABC)16 = (101010111100)2
CONVERSION OF HEXADECIMAL
NUMBER TO OCTAL
(C1)16 = ( )8 ?
(C*161) + (1*160)
(12*16) + (1*1)
192 + 1 = 193 (decimal form)
8 193
8 24 1
8 3 0
0 3
(C1)16 = (301)8
THANK YOU FOR WATCHING

More Related Content

What's hot

What's hot (20)

Data Representation
Data RepresentationData Representation
Data Representation
 
Number system
Number systemNumber system
Number system
 
Signed Binary Numbers
Signed Binary NumbersSigned Binary Numbers
Signed Binary Numbers
 
Number system in Digital Electronics
Number system in Digital ElectronicsNumber system in Digital Electronics
Number system in Digital Electronics
 
Number system conversion
Number system conversionNumber system conversion
Number system conversion
 
Conversion of number system
Conversion of number systemConversion of number system
Conversion of number system
 
Instruction Set Architecture (ISA)
Instruction Set Architecture (ISA)Instruction Set Architecture (ISA)
Instruction Set Architecture (ISA)
 
Digital Electronics- Number systems & codes
Digital Electronics- Number systems & codes Digital Electronics- Number systems & codes
Digital Electronics- Number systems & codes
 
Basic of number system
Basic of number systemBasic of number system
Basic of number system
 
Number System
Number SystemNumber System
Number System
 
Number system
Number systemNumber system
Number system
 
BCD.
BCD.BCD.
BCD.
 
Introduction to the Binary Number System
Introduction to the Binary Number SystemIntroduction to the Binary Number System
Introduction to the Binary Number System
 
K - Map
  K - Map    K - Map
K - Map
 
Binary Arithmetic
Binary ArithmeticBinary Arithmetic
Binary Arithmetic
 
BINARY NUMBER SYSTEM
BINARY NUMBER SYSTEMBINARY NUMBER SYSTEM
BINARY NUMBER SYSTEM
 
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
 
Instruction Set Architecture
Instruction Set ArchitectureInstruction Set Architecture
Instruction Set Architecture
 
Binary Arithmetic
Binary ArithmeticBinary Arithmetic
Binary Arithmetic
 
Number system
Number systemNumber system
Number system
 

Similar to Number system and its conversions

ADE UNIT-III (Digital Fundamentals).pptx
ADE UNIT-III (Digital Fundamentals).pptxADE UNIT-III (Digital Fundamentals).pptx
ADE UNIT-III (Digital Fundamentals).pptxKUMARS641064
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxMamataAnilgod
 
2.1 data represent on cpu
2.1 data represent on cpu2.1 data represent on cpu
2.1 data represent on cpuWan Afirah
 
Number system
Number systemNumber system
Number systemkashee99
 
21EC201– Digital Principles and system design.pptx
21EC201– Digital Principles and system design.pptx21EC201– Digital Principles and system design.pptx
21EC201– Digital Principles and system design.pptxGobinathAECEJRF1101
 
Introduction to Information Technology Lecture 2
Introduction to Information Technology Lecture 2Introduction to Information Technology Lecture 2
Introduction to Information Technology Lecture 2MikeCrea
 
Unit 1 PDF.pptx
Unit 1 PDF.pptxUnit 1 PDF.pptx
Unit 1 PDF.pptxChandraV13
 
1. NUMBER SYSTEM.pptx Computer Applications in Pharmacy
1. NUMBER SYSTEM.pptx Computer Applications in Pharmacy1. NUMBER SYSTEM.pptx Computer Applications in Pharmacy
1. NUMBER SYSTEM.pptx Computer Applications in PharmacyVedika Narvekar
 
COmputer Number system.pptx
COmputer Number system.pptxCOmputer Number system.pptx
COmputer Number system.pptxTanveerAbbas92
 
Module 1 number systems and code1
Module 1  number systems and code1Module 1  number systems and code1
Module 1 number systems and code1Deepak John
 
number system.pptx
number system.pptxnumber system.pptx
number system.pptxPooja Dixit
 

Similar to Number system and its conversions (20)

ADE UNIT-III (Digital Fundamentals).pptx
ADE UNIT-III (Digital Fundamentals).pptxADE UNIT-III (Digital Fundamentals).pptx
ADE UNIT-III (Digital Fundamentals).pptx
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptx
 
2.1 data represent on cpu
2.1 data represent on cpu2.1 data represent on cpu
2.1 data represent on cpu
 
Number system
Number systemNumber system
Number system
 
21EC201– Digital Principles and system design.pptx
21EC201– Digital Principles and system design.pptx21EC201– Digital Principles and system design.pptx
21EC201– Digital Principles and system design.pptx
 
Introduction to Information Technology Lecture 2
Introduction to Information Technology Lecture 2Introduction to Information Technology Lecture 2
Introduction to Information Technology Lecture 2
 
NUMBER BASE SYSTEM.pptx
NUMBER BASE SYSTEM.pptxNUMBER BASE SYSTEM.pptx
NUMBER BASE SYSTEM.pptx
 
Cse115 lecture01numbersystems
Cse115 lecture01numbersystemsCse115 lecture01numbersystems
Cse115 lecture01numbersystems
 
Unit 1 PDF.pptx
Unit 1 PDF.pptxUnit 1 PDF.pptx
Unit 1 PDF.pptx
 
Digital Electronics Notes.pdf
Digital Electronics Notes.pdfDigital Electronics Notes.pdf
Digital Electronics Notes.pdf
 
2013 1
2013 1 2013 1
2013 1
 
1. NUMBER SYSTEM.pptx Computer Applications in Pharmacy
1. NUMBER SYSTEM.pptx Computer Applications in Pharmacy1. NUMBER SYSTEM.pptx Computer Applications in Pharmacy
1. NUMBER SYSTEM.pptx Computer Applications in Pharmacy
 
Number_Systems (2).ppt
Number_Systems (2).pptNumber_Systems (2).ppt
Number_Systems (2).ppt
 
Number systems
Number systemsNumber systems
Number systems
 
DLD-Introduction.pptx
DLD-Introduction.pptxDLD-Introduction.pptx
DLD-Introduction.pptx
 
COmputer Number system.pptx
COmputer Number system.pptxCOmputer Number system.pptx
COmputer Number system.pptx
 
LEC 1.pptx
LEC 1.pptxLEC 1.pptx
LEC 1.pptx
 
Number system
Number systemNumber system
Number system
 
Module 1 number systems and code1
Module 1  number systems and code1Module 1  number systems and code1
Module 1 number systems and code1
 
number system.pptx
number system.pptxnumber system.pptx
number system.pptx
 

More from ShilpaKrishna6

WBAN(Wireless Body Area Network)
WBAN(Wireless Body Area Network)WBAN(Wireless Body Area Network)
WBAN(Wireless Body Area Network)ShilpaKrishna6
 
Big data business analytics | Introduction to Business Analytics
Big data business analytics | Introduction to Business AnalyticsBig data business analytics | Introduction to Business Analytics
Big data business analytics | Introduction to Business AnalyticsShilpaKrishna6
 
What is big data ? | Big Data Applications
What is big data ? | Big Data ApplicationsWhat is big data ? | Big Data Applications
What is big data ? | Big Data ApplicationsShilpaKrishna6
 
Data science | What is Data science
Data science | What is Data scienceData science | What is Data science
Data science | What is Data scienceShilpaKrishna6
 
Introduction to nosql | NoSQL databases
Introduction to nosql | NoSQL databasesIntroduction to nosql | NoSQL databases
Introduction to nosql | NoSQL databasesShilpaKrishna6
 
Internet of Things(IoT) Applications
Internet of Things(IoT) ApplicationsInternet of Things(IoT) Applications
Internet of Things(IoT) ApplicationsShilpaKrishna6
 
Iot enabled technologies
Iot enabled technologiesIot enabled technologies
Iot enabled technologiesShilpaKrishna6
 
Physical design of io t
Physical design of io tPhysical design of io t
Physical design of io tShilpaKrishna6
 
Introduction to iot(internet of things)
Introduction to iot(internet of things)Introduction to iot(internet of things)
Introduction to iot(internet of things)ShilpaKrishna6
 

More from ShilpaKrishna6 (13)

WBAN(Wireless Body Area Network)
WBAN(Wireless Body Area Network)WBAN(Wireless Body Area Network)
WBAN(Wireless Body Area Network)
 
Evolution of big data
Evolution of big dataEvolution of big data
Evolution of big data
 
Big data business analytics | Introduction to Business Analytics
Big data business analytics | Introduction to Business AnalyticsBig data business analytics | Introduction to Business Analytics
Big data business analytics | Introduction to Business Analytics
 
What is big data ? | Big Data Applications
What is big data ? | Big Data ApplicationsWhat is big data ? | Big Data Applications
What is big data ? | Big Data Applications
 
Data science | What is Data science
Data science | What is Data scienceData science | What is Data science
Data science | What is Data science
 
What is MapReduce ?
What is MapReduce ?What is MapReduce ?
What is MapReduce ?
 
Introduction to nosql | NoSQL databases
Introduction to nosql | NoSQL databasesIntroduction to nosql | NoSQL databases
Introduction to nosql | NoSQL databases
 
Internet of Things(IoT) Applications
Internet of Things(IoT) ApplicationsInternet of Things(IoT) Applications
Internet of Things(IoT) Applications
 
4 pillers of iot
4 pillers of iot4 pillers of iot
4 pillers of iot
 
Iot enabled technologies
Iot enabled technologiesIot enabled technologies
Iot enabled technologies
 
Iot logical design
Iot logical designIot logical design
Iot logical design
 
Physical design of io t
Physical design of io tPhysical design of io t
Physical design of io t
 
Introduction to iot(internet of things)
Introduction to iot(internet of things)Introduction to iot(internet of things)
Introduction to iot(internet of things)
 

Recently uploaded

Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptxSherlyMaeNeri
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 

Recently uploaded (20)

Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptx
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 

Number system and its conversions

  • 2. NUMBER SYSTEM DECIMAL BINARY OCTAL HEXADECIMAL
  • 3. DECIMALNUMBER SYSTEM • The number system that we use in our day-to-life • In this number the base is 10.ie,total number of digits or symbols is ten. • Example: The value of the decimal number 4137 is calculated as - 4*1000 + 1*100 + 3*10 + 7*1 7000 100 30 7 Thousands Hundreds Tens Units Position position position position
  • 4. BINARY NUMBER SYSTEM • Number system has two symbols 0(zero) and 1(one) called Binary Digits or bits. Its base is 2. • The weights assigned to bits in this system are powers of 2, namely 20 , 21 , 22 …… 1 0 1 0 1 Most Significant Bit Least Significant Bit
  • 5. OCTALNUMBER SYSTEM • In this system there are only 8 digits ie. 0,1,2,3,4,5,6,7 • Its base is 8. Each position in an octal number represents a power of 8 ie, 80 , 81 , 82 …….
  • 6. HEXADECIMALNUMBER SYSTEM • Number system has 16 digits. Base is 16 • In this system the first 10 digits are the digits of a decimal system 0,1,2,3,4,5,6,7,8,9 • The remaining six digits are denoted by A,B,C,D,E,F representing the decimal values 10,11,12,13,14,15 respectively
  • 7. CONVERSION OF DECIMAL NUMBER TO BINARY • Find the binary equivalent of (23)10 2 23 2 11 1 LSB 2 5 1 2 2 1 2 1 0 0 1 MSB (23)10 = (10111)2
  • 8. CONVERSION OF DECIMAL NUMBER TO OCTAL (3451)10 = ()8 ? 8 3451 8 438 3 LSB 8 54 6 8 6 6 0 6 MSB (3451)10 = (6663)8
  • 9. CONVERSION OF DECIMAL NUMBER TO HEXADECIMAL (710)10 = ()16 ? 16 710 16 44 6 16 2 12 0 2 (710)10 = (2C6)16
  • 10. CONVERSION OF BINARY NUMBER TO DECIMAL (1110101)2 = ()10 ? (1*26) + (1*25) + (1*24) + (0*23) + (1*22) + (0*21) + (1*20) 64 32 16 0 4 0 1 = 117 (1110101)2 = (117)10
  • 11. CONVERSION OF BINARY NUMBER TO OCTAL SHORTCUT METHOD Example: (1101010)2 = ()8? 001 101 010 1 5 2 (1101010)2 = (152)8 OCTAL NUMBER BINARY EQUIVALENT 0 000 1 001 2 010 3 011 4 100 5 101 6 110 7 111
  • 12. CONVERSION OF BINARY NUMBER TO HEXADECIMAL SHORTCUT METHOD Example: (11010011)2 = 1101 0011 D 3 = (D3)16 DECIMAL HEXA DECIMAL BINARY 0 0 0000 1 1 0001 2 2 0010 3 3 0011 4 4 0100 5 5 0101 6 6 0110 7 7 0111 8 8 1000 9 9 1001 DECIMAL HEXA DECIMAL BINARY 10 A 1010 11 B 1011 12 C 1100 13 D 1101 14 E 1110 15 F 1111
  • 13. CONVERSION OF OCTAL NUMBER TO DECIMAL Example: (325)8 = ()10 ? (3*82) + (2*81) + (5*80) 3*64 + 2*8 + 5*1 192 + 16 + 5 = 213 (325)8 = (213)10
  • 14. CONVERSION OF OCTAL NUMBER TO BINARY SHORTCUT METHOD (6751)8 = ( )2 ? 68 = 110 78 = 111 58 = 101 18 = 001 Hence (6751)8 = (110111101001)2
  • 15. CONVERSION OF OCTAL NUMBER TO HEXADECIMAL (125)8 =( )16 ? Step 1 : convert octal number to decimal (1*82) + (2*81) + (5*80) 64 + 16 + 5 = 85 Step 2 : convert decimal number to hexadecimal 16 85 16 5 5 0 5 (125)8 = (55)16
  • 16. CONVERSION OF HEXADECIMAL NUMBER TO DECIMAL (34F)16 = ( )10 ? (3*162) + (4*161) + (F*160) (3*256) + (4*16) + (15*1) 768 + 64 + 15 = 847 (34F)16 = (847)10
  • 17. CONVERSION OF HEXADECIMAL NUMBER TO BINARY (ABC)16 = ( )2 ? A B C 1010 1011 1100 (ABC)16 = (101010111100)2
  • 18. CONVERSION OF HEXADECIMAL NUMBER TO OCTAL (C1)16 = ( )8 ? (C*161) + (1*160) (12*16) + (1*1) 192 + 1 = 193 (decimal form) 8 193 8 24 1 8 3 0 0 3 (C1)16 = (301)8
  • 19. THANK YOU FOR WATCHING