SlideShare une entreprise Scribd logo
1  sur  14
Télécharger pour lire hors ligne
Introduction
Computer System
Digital System: The physical quantities (signal) can assume
only discrete value.
Analog System: The physical quantities (signal) may vary
continuously over a special range.
Ex: o/p of digital system (0 or 5) voltage
Ex: o/p of analog system (-10,-9,..,0,9,10) voltage
Digital data
CD drive
10110011101
Analog
reproduction
of music audio
signal
Speaker
Sound
waves
Digital-to-analog
converter
Linear amplifier
Analog and Digital Systems
Many systems use a mix of analog and digital electronics to take
advantage of each technology. A typical CD player accepts digital
data from the CD drive and converts it to an analog signal for
amplification.
Signal
 An information variable represented by physical
quantity (e.g., voltages and currents).
 For digital systems, the variable takes on discrete
values.
 Binary values are represented abstractly by:
1. digits 0 and 1
2. words (symbols) False (F) and True (T)
3. words (symbols) Low (L) and High (H)
4. and words On and Off.
Selected Key Terms
Analog
Digital
Binary
Bit
Being continuous or having continuous values.
Related to digits or discrete quantities; having a set
of discrete values.
Having two values or states; describes a number
system that has a base of two and utilizes 1 and 0
as its digits.
A binary digit, which can be a 1 or a 0.
bit , byte , word
bit (binary digit): the basic unit of memory
byte: 8 bits (e.g. 1010 1010 or 1000 0001)
word: 1, 2, 4 or 8 bytes (usually 4 or 8)
data and machine instructions are stored and accessed in
words (in memory)
1 Kilobyte (KB) = 1024 bytes = 210
bytes 103
bytes
1 Megabyte (MB) = 1024 KB = 220
bytes 106
bytes
1 Gigabyte (GB) = 1024 MB = 230
bytes 109
bytes
Examples:
CD-ROMs store around 650 Megabytes (MB)
DVDs store around 4.7 Gigabytes (GB), up to 17 GB
7
Number Systems and
Conversion Between Bases
Number Systems
 1- Decimal Numbers.
 2- Binary Numbers.
 3- Octal Numbers.
 4- Hexadecimal Numbers.
 1- Decimal Numbers: In the decimal number system
each of the ten digits (10digits), 0 through 9 (0, 1, 2, 3, 4,
5, 6, 7, 8, and 9).
Decimal weight … …104 103 102 101 100. 10-1 10-2 10-3 .
Example: Express the decimal number as a sum of the
values of each digits:
(47)10=(4*101) + (7*100)
(4*10) + (7*1) =47
(92.53)10 =
(9 x 101) + (2 x 100) + (5 x 10-1 ) + (3 x 10-2 ) =
(9 x 10) + (2 x 1) + (5 x 0.1 ) + (3 x 0.01 ) =
90 + 2 + 0.5 + 0.03 = 92.53
……102 101 100 • 10-1 10-2 10-3 ........
(Decimal Point)
0 0 0 0 0
1 0 0 0 1
2 0 0 1 0
3 0 0 1 1
4 0 1 0 0
5 0 1 0 1
6 0 1 1 0
7 0 1 1 1
8 1 0 0 0
9 1 0 0 1
10 1 0 1 0
11 1 0 1 1
12 1 1 0 0
13 1 1 0 1
14 1 1 1 0
15 1 1 1 1
Decimal
Number
Binary
Number
2-Binary Numbers: the binary number
system its two digits a base two system.
The two binary digits (bits) are 1 or 0
…22 21 20. 2-1 2-2 2-3 2-4 …
Binary point
A- Binary - to - Decimal conversion
25 24 23 22 21 20. 2-1 2-2
32 16 8 4 2 1 . ½ ¼
1 0 0 1 0 1 . 0 1
32 +4 +1 +¼ = 37¼
Convert the binary number 100101.01 to decimal.
(101.011)2 =
(1 x 22) +(0 x 21) + (1 x 20) + (0 x 2-1 ) + (1 x 2-2 ) + (1 x 2-3) =
(1 x 4) + (0 x 2) + (1 x 1) + (0 x 0.5 ) + (1 x 0.25 ) + (1 x 0.125) =
4 + 0 + 1 + 0 + 0.25 + 0.125 = 5.375
Convert from (205.188)10 to Binary Number Base Remainder
205 2 1
102 2 0
51 2 1
25 2 1
12 2 0
6 2 0
3 2 1
1 2 1
0(205.188)10=(11001101.00110 )2
0.188 x 2 = 0.376 carry = 0
0.376 x 2 = 0.752 carry = 0
0.752 x 2 = 1.504 carry = 1
0.504 x 2 = 1.008 carry = 1
0.008 x 2 = 0.016 carry = 0
Answer = .00110 (for five significant digits)
B- Decimal - to - Binary conversion
3- Octal Numbers: The octal number system is composed of eight
digits, which are 0, 1, 2, 3, 4, 5, 6, and 7.
To count above 7, begin another column and start over:
10, 11, 12, 13, 14, 15, 16, and 17.
20, 21, 22, 23, 24, 25, 26, and 27…
Ex: (607.17)8
A- Octal – to – Decimal conversion:
Weight … … 83 82 81 80.8-1 8-2 8-3….
Example: Convert Octal number (2374)8 to decimal number
(2374)8 = 2*83 + 3*82 + 7*81 + 4*80
= 2*512 + 3*64 + 7*8 + 4*1
= 1024+192+56+4
= (1276)10
B- Decimal – to – Octal Conversion:
Express (150)10 in Octal.
150 ÷ 8 = 18 6 (LSD)
18 ÷ 8 = 2 2
2 ÷ 8 = 0 2 (MSD)
(150)10 = (226)8
Express (0.265)10 in Octal.
0.265 × 8 = 2.12 2 (MSD)
0.12 × 8 = 0.96 0
0.96 × 8 = 7.68 7
0.68 × 8 = 5.44 5
(0. 265)10 = (0.2075)8
B- Binary– to – Octal Conversion:
Ex: Convert from (1001101.010111)2 to Octal base
001 001 101 . 010 111
1 1 5 . 2 7
=(115.27)8

Contenu connexe

Tendances (20)

ALL ABOUT NUMBER SYSTEMS
ALL ABOUT NUMBER SYSTEMSALL ABOUT NUMBER SYSTEMS
ALL ABOUT NUMBER SYSTEMS
 
Binary numbersystem
Binary numbersystemBinary numbersystem
Binary numbersystem
 
Number System Conversion | BCA
Number System Conversion | BCANumber System Conversion | BCA
Number System Conversion | BCA
 
numbers system
numbers systemnumbers system
numbers system
 
01.Number Systems
01.Number Systems01.Number Systems
01.Number Systems
 
Number System
Number SystemNumber System
Number System
 
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
 
Number system
Number systemNumber system
Number system
 
Basic of number system
Basic of number systemBasic of number system
Basic of number system
 
Number System & Data Representation
Number System & Data RepresentationNumber System & Data Representation
Number System & Data Representation
 
Numbersystemcont
NumbersystemcontNumbersystemcont
Numbersystemcont
 
Ncp computer appls num sys2 pramod
Ncp computer appls  num sys2 pramodNcp computer appls  num sys2 pramod
Ncp computer appls num sys2 pramod
 
1.1.1 BINARY SYSTEM
1.1.1 BINARY SYSTEM1.1.1 BINARY SYSTEM
1.1.1 BINARY SYSTEM
 
Ch1.number systems
Ch1.number systemsCh1.number systems
Ch1.number systems
 
Pertemuan 2 - Sistem Bilangan
Pertemuan 2 - Sistem BilanganPertemuan 2 - Sistem Bilangan
Pertemuan 2 - Sistem Bilangan
 
01.number systems
01.number systems01.number systems
01.number systems
 
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
 
PPT ON NUMBER SYSTEM
PPT ON NUMBER SYSTEMPPT ON NUMBER SYSTEM
PPT ON NUMBER SYSTEM
 
Number system
Number systemNumber system
Number system
 

En vedette

fundamentos laboratorio
fundamentos laboratorio fundamentos laboratorio
fundamentos laboratorio John B
 
Digital Logic & Design (DLD) presentation
Digital Logic & Design (DLD) presentationDigital Logic & Design (DLD) presentation
Digital Logic & Design (DLD) presentationfoyez ahammad
 
Analog and digital signal system : digital logic
Analog and digital signal system : digital logicAnalog and digital signal system : digital logic
Analog and digital signal system : digital logicSatya P. Joshi
 
Binary Codes and Number System
Binary Codes and Number SystemBinary Codes and Number System
Binary Codes and Number SystemDebarati Das
 

En vedette (7)

fundamentos laboratorio
fundamentos laboratorio fundamentos laboratorio
fundamentos laboratorio
 
Logic Gates
Logic GatesLogic Gates
Logic Gates
 
Binary Codes
Binary CodesBinary Codes
Binary Codes
 
Digital e chap 4
Digital e   chap 4Digital e   chap 4
Digital e chap 4
 
Digital Logic & Design (DLD) presentation
Digital Logic & Design (DLD) presentationDigital Logic & Design (DLD) presentation
Digital Logic & Design (DLD) presentation
 
Analog and digital signal system : digital logic
Analog and digital signal system : digital logicAnalog and digital signal system : digital logic
Analog and digital signal system : digital logic
 
Binary Codes and Number System
Binary Codes and Number SystemBinary Codes and Number System
Binary Codes and Number System
 

Similaire à 2013 1 (20)

ADE UNIT-III (Digital Fundamentals).pptx
ADE UNIT-III (Digital Fundamentals).pptxADE UNIT-III (Digital Fundamentals).pptx
ADE UNIT-III (Digital Fundamentals).pptx
 
Chapter 1
Chapter   1Chapter   1
Chapter 1
 
DLD-Introduction.pptx
DLD-Introduction.pptxDLD-Introduction.pptx
DLD-Introduction.pptx
 
digi.elec.number%20system.pptx
digi.elec.number%20system.pptxdigi.elec.number%20system.pptx
digi.elec.number%20system.pptx
 
Chapter 1 digital design.pptx
Chapter 1 digital design.pptxChapter 1 digital design.pptx
Chapter 1 digital design.pptx
 
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
 
Chapter 1 Digital Systems and Binary Numbers.ppt
Chapter 1 Digital Systems and Binary Numbers.pptChapter 1 Digital Systems and Binary Numbers.ppt
Chapter 1 Digital Systems and Binary Numbers.ppt
 
Computer Number System
Computer Number SystemComputer Number System
Computer Number System
 
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
 
Module 1 number systems and code1
Module 1  number systems and code1Module 1  number systems and code1
Module 1 number systems and code1
 
Number_Systems (2).ppt
Number_Systems (2).pptNumber_Systems (2).ppt
Number_Systems (2).ppt
 
Number Systems
Number  SystemsNumber  Systems
Number Systems
 
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.pdf
Number System.pdfNumber System.pdf
Number System.pdf
 
Video lectures
Video lecturesVideo lectures
Video lectures
 
Mba ebooks
Mba ebooksMba ebooks
Mba ebooks
 
Okkkkk
OkkkkkOkkkkk
Okkkkk
 
Chapter 3.pptx
Chapter 3.pptxChapter 3.pptx
Chapter 3.pptx
 

Dernier

Network to Success - Using Social Media in Job Search
Network to Success - Using Social Media in Job SearchNetwork to Success - Using Social Media in Job Search
Network to Success - Using Social Media in Job SearchBruce Bennett
 
401799841-Increasing-Crimes-and-Suicides-Among-Youth.pptx
401799841-Increasing-Crimes-and-Suicides-Among-Youth.pptx401799841-Increasing-Crimes-and-Suicides-Among-Youth.pptx
401799841-Increasing-Crimes-and-Suicides-Among-Youth.pptxwaghmare9860lavin
 
FACILITATING LEARNER-CENTERED TEACHING pptx
FACILITATING LEARNER-CENTERED TEACHING pptxFACILITATING LEARNER-CENTERED TEACHING pptx
FACILITATING LEARNER-CENTERED TEACHING pptxJAMESPARAQUINAN
 
Thomas Calculus 12th Edition Textbook and helping material
Thomas Calculus 12th Edition Textbook and helping materialThomas Calculus 12th Edition Textbook and helping material
Thomas Calculus 12th Edition Textbook and helping materialsafdarhussainbhutta4
 
Senior IT Professional with Master’s Degree with 21+ years of experience is...
Senior IT Professional with Master’s Degree with 21+ years of experience   is...Senior IT Professional with Master’s Degree with 21+ years of experience   is...
Senior IT Professional with Master’s Degree with 21+ years of experience is...Anas Acharath Parakat
 
What is the career path of a VFX artist?
What is the career path of a VFX artist?What is the career path of a VFX artist?
What is the career path of a VFX artist?santoshjadhav126
 
The Next Things To Immediately Do About Mating Press
The Next Things To Immediately Do About Mating PressThe Next Things To Immediately Do About Mating Press
The Next Things To Immediately Do About Mating Pressmatingpress170
 
John Steven McRae Resume Generated April 2024
John Steven McRae Resume Generated April 2024John Steven McRae Resume Generated April 2024
John Steven McRae Resume Generated April 2024jsmcrae2016
 
Get to know about Raquel Thompson Barbados.pdf
Get to know about Raquel Thompson Barbados.pdfGet to know about Raquel Thompson Barbados.pdf
Get to know about Raquel Thompson Barbados.pdfRaquel Thompson Barbados
 
How To Land Your Next PM Dream Job - PMISSC Meeting - April 2024
How To Land Your Next PM Dream Job - PMISSC Meeting - April 2024How To Land Your Next PM Dream Job - PMISSC Meeting - April 2024
How To Land Your Next PM Dream Job - PMISSC Meeting - April 2024Hector Del Castillo, CPM, CPMM
 
Kelly Wang 王薇盈_數位轉型、生成式AI、設計思考、客戶體驗優化、敏捷管理、SEO
Kelly Wang 王薇盈_數位轉型、生成式AI、設計思考、客戶體驗優化、敏捷管理、SEOKelly Wang 王薇盈_數位轉型、生成式AI、設計思考、客戶體驗優化、敏捷管理、SEO
Kelly Wang 王薇盈_數位轉型、生成式AI、設計思考、客戶體驗優化、敏捷管理、SEOKelly Wang
 
Bobby singh - Digital Marketing Service
Bobby singh -  Digital Marketing ServiceBobby singh -  Digital Marketing Service
Bobby singh - Digital Marketing ServiceBobby singh
 
Complete Benefits of career counseling in India
Complete Benefits of career counseling in IndiaComplete Benefits of career counseling in India
Complete Benefits of career counseling in IndiaMere Mentor
 
About Kelly Wang: Generative AI, SEO, PR
About Kelly Wang: Generative AI, SEO, PRAbout Kelly Wang: Generative AI, SEO, PR
About Kelly Wang: Generative AI, SEO, PRKelly Wang
 
Abanoub Ghobrial, Planning Team Leader.pdf
Abanoub Ghobrial, Planning Team Leader.pdfAbanoub Ghobrial, Planning Team Leader.pdf
Abanoub Ghobrial, Planning Team Leader.pdfAbanoubGhobrial1
 
How to make career in advance 3d animation
How to make career in advance 3d animationHow to make career in advance 3d animation
How to make career in advance 3d animationsantoshjadhav126
 
Banged Dubai Call Girls O525547819 Call Girls Dubai
Banged Dubai Call Girls O525547819 Call Girls DubaiBanged Dubai Call Girls O525547819 Call Girls Dubai
Banged Dubai Call Girls O525547819 Call Girls Dubaikojalkojal131
 
Training for Deaconess, biblical qualifications.ppt
Training for Deaconess, biblical qualifications.pptTraining for Deaconess, biblical qualifications.ppt
Training for Deaconess, biblical qualifications.pptVidalMendoza5
 
APSC Motor Vechile Inspector 18 Posts.pdf
APSC Motor Vechile Inspector 18 Posts.pdfAPSC Motor Vechile Inspector 18 Posts.pdf
APSC Motor Vechile Inspector 18 Posts.pdfsoumita869
 
Design, Desire and Demand Presentation.pptx
Design, Desire and Demand Presentation.pptxDesign, Desire and Demand Presentation.pptx
Design, Desire and Demand Presentation.pptxaaronbasko1
 

Dernier (20)

Network to Success - Using Social Media in Job Search
Network to Success - Using Social Media in Job SearchNetwork to Success - Using Social Media in Job Search
Network to Success - Using Social Media in Job Search
 
401799841-Increasing-Crimes-and-Suicides-Among-Youth.pptx
401799841-Increasing-Crimes-and-Suicides-Among-Youth.pptx401799841-Increasing-Crimes-and-Suicides-Among-Youth.pptx
401799841-Increasing-Crimes-and-Suicides-Among-Youth.pptx
 
FACILITATING LEARNER-CENTERED TEACHING pptx
FACILITATING LEARNER-CENTERED TEACHING pptxFACILITATING LEARNER-CENTERED TEACHING pptx
FACILITATING LEARNER-CENTERED TEACHING pptx
 
Thomas Calculus 12th Edition Textbook and helping material
Thomas Calculus 12th Edition Textbook and helping materialThomas Calculus 12th Edition Textbook and helping material
Thomas Calculus 12th Edition Textbook and helping material
 
Senior IT Professional with Master’s Degree with 21+ years of experience is...
Senior IT Professional with Master’s Degree with 21+ years of experience   is...Senior IT Professional with Master’s Degree with 21+ years of experience   is...
Senior IT Professional with Master’s Degree with 21+ years of experience is...
 
What is the career path of a VFX artist?
What is the career path of a VFX artist?What is the career path of a VFX artist?
What is the career path of a VFX artist?
 
The Next Things To Immediately Do About Mating Press
The Next Things To Immediately Do About Mating PressThe Next Things To Immediately Do About Mating Press
The Next Things To Immediately Do About Mating Press
 
John Steven McRae Resume Generated April 2024
John Steven McRae Resume Generated April 2024John Steven McRae Resume Generated April 2024
John Steven McRae Resume Generated April 2024
 
Get to know about Raquel Thompson Barbados.pdf
Get to know about Raquel Thompson Barbados.pdfGet to know about Raquel Thompson Barbados.pdf
Get to know about Raquel Thompson Barbados.pdf
 
How To Land Your Next PM Dream Job - PMISSC Meeting - April 2024
How To Land Your Next PM Dream Job - PMISSC Meeting - April 2024How To Land Your Next PM Dream Job - PMISSC Meeting - April 2024
How To Land Your Next PM Dream Job - PMISSC Meeting - April 2024
 
Kelly Wang 王薇盈_數位轉型、生成式AI、設計思考、客戶體驗優化、敏捷管理、SEO
Kelly Wang 王薇盈_數位轉型、生成式AI、設計思考、客戶體驗優化、敏捷管理、SEOKelly Wang 王薇盈_數位轉型、生成式AI、設計思考、客戶體驗優化、敏捷管理、SEO
Kelly Wang 王薇盈_數位轉型、生成式AI、設計思考、客戶體驗優化、敏捷管理、SEO
 
Bobby singh - Digital Marketing Service
Bobby singh -  Digital Marketing ServiceBobby singh -  Digital Marketing Service
Bobby singh - Digital Marketing Service
 
Complete Benefits of career counseling in India
Complete Benefits of career counseling in IndiaComplete Benefits of career counseling in India
Complete Benefits of career counseling in India
 
About Kelly Wang: Generative AI, SEO, PR
About Kelly Wang: Generative AI, SEO, PRAbout Kelly Wang: Generative AI, SEO, PR
About Kelly Wang: Generative AI, SEO, PR
 
Abanoub Ghobrial, Planning Team Leader.pdf
Abanoub Ghobrial, Planning Team Leader.pdfAbanoub Ghobrial, Planning Team Leader.pdf
Abanoub Ghobrial, Planning Team Leader.pdf
 
How to make career in advance 3d animation
How to make career in advance 3d animationHow to make career in advance 3d animation
How to make career in advance 3d animation
 
Banged Dubai Call Girls O525547819 Call Girls Dubai
Banged Dubai Call Girls O525547819 Call Girls DubaiBanged Dubai Call Girls O525547819 Call Girls Dubai
Banged Dubai Call Girls O525547819 Call Girls Dubai
 
Training for Deaconess, biblical qualifications.ppt
Training for Deaconess, biblical qualifications.pptTraining for Deaconess, biblical qualifications.ppt
Training for Deaconess, biblical qualifications.ppt
 
APSC Motor Vechile Inspector 18 Posts.pdf
APSC Motor Vechile Inspector 18 Posts.pdfAPSC Motor Vechile Inspector 18 Posts.pdf
APSC Motor Vechile Inspector 18 Posts.pdf
 
Design, Desire and Demand Presentation.pptx
Design, Desire and Demand Presentation.pptxDesign, Desire and Demand Presentation.pptx
Design, Desire and Demand Presentation.pptx
 

2013 1

  • 3. Digital System: The physical quantities (signal) can assume only discrete value. Analog System: The physical quantities (signal) may vary continuously over a special range. Ex: o/p of digital system (0 or 5) voltage Ex: o/p of analog system (-10,-9,..,0,9,10) voltage
  • 4. Digital data CD drive 10110011101 Analog reproduction of music audio signal Speaker Sound waves Digital-to-analog converter Linear amplifier Analog and Digital Systems Many systems use a mix of analog and digital electronics to take advantage of each technology. A typical CD player accepts digital data from the CD drive and converts it to an analog signal for amplification.
  • 5. Signal  An information variable represented by physical quantity (e.g., voltages and currents).  For digital systems, the variable takes on discrete values.  Binary values are represented abstractly by: 1. digits 0 and 1 2. words (symbols) False (F) and True (T) 3. words (symbols) Low (L) and High (H) 4. and words On and Off.
  • 6. Selected Key Terms Analog Digital Binary Bit Being continuous or having continuous values. Related to digits or discrete quantities; having a set of discrete values. Having two values or states; describes a number system that has a base of two and utilizes 1 and 0 as its digits. A binary digit, which can be a 1 or a 0.
  • 7. bit , byte , word bit (binary digit): the basic unit of memory byte: 8 bits (e.g. 1010 1010 or 1000 0001) word: 1, 2, 4 or 8 bytes (usually 4 or 8) data and machine instructions are stored and accessed in words (in memory) 1 Kilobyte (KB) = 1024 bytes = 210 bytes 103 bytes 1 Megabyte (MB) = 1024 KB = 220 bytes 106 bytes 1 Gigabyte (GB) = 1024 MB = 230 bytes 109 bytes Examples: CD-ROMs store around 650 Megabytes (MB) DVDs store around 4.7 Gigabytes (GB), up to 17 GB 7
  • 9. Number Systems  1- Decimal Numbers.  2- Binary Numbers.  3- Octal Numbers.  4- Hexadecimal Numbers.  1- Decimal Numbers: In the decimal number system each of the ten digits (10digits), 0 through 9 (0, 1, 2, 3, 4, 5, 6, 7, 8, and 9). Decimal weight … …104 103 102 101 100. 10-1 10-2 10-3 .
  • 10. Example: Express the decimal number as a sum of the values of each digits: (47)10=(4*101) + (7*100) (4*10) + (7*1) =47 (92.53)10 = (9 x 101) + (2 x 100) + (5 x 10-1 ) + (3 x 10-2 ) = (9 x 10) + (2 x 1) + (5 x 0.1 ) + (3 x 0.01 ) = 90 + 2 + 0.5 + 0.03 = 92.53 ……102 101 100 • 10-1 10-2 10-3 ........ (Decimal Point)
  • 11. 0 0 0 0 0 1 0 0 0 1 2 0 0 1 0 3 0 0 1 1 4 0 1 0 0 5 0 1 0 1 6 0 1 1 0 7 0 1 1 1 8 1 0 0 0 9 1 0 0 1 10 1 0 1 0 11 1 0 1 1 12 1 1 0 0 13 1 1 0 1 14 1 1 1 0 15 1 1 1 1 Decimal Number Binary Number 2-Binary Numbers: the binary number system its two digits a base two system. The two binary digits (bits) are 1 or 0 …22 21 20. 2-1 2-2 2-3 2-4 … Binary point A- Binary - to - Decimal conversion 25 24 23 22 21 20. 2-1 2-2 32 16 8 4 2 1 . ½ ¼ 1 0 0 1 0 1 . 0 1 32 +4 +1 +¼ = 37¼ Convert the binary number 100101.01 to decimal.
  • 12. (101.011)2 = (1 x 22) +(0 x 21) + (1 x 20) + (0 x 2-1 ) + (1 x 2-2 ) + (1 x 2-3) = (1 x 4) + (0 x 2) + (1 x 1) + (0 x 0.5 ) + (1 x 0.25 ) + (1 x 0.125) = 4 + 0 + 1 + 0 + 0.25 + 0.125 = 5.375 Convert from (205.188)10 to Binary Number Base Remainder 205 2 1 102 2 0 51 2 1 25 2 1 12 2 0 6 2 0 3 2 1 1 2 1 0(205.188)10=(11001101.00110 )2 0.188 x 2 = 0.376 carry = 0 0.376 x 2 = 0.752 carry = 0 0.752 x 2 = 1.504 carry = 1 0.504 x 2 = 1.008 carry = 1 0.008 x 2 = 0.016 carry = 0 Answer = .00110 (for five significant digits) B- Decimal - to - Binary conversion
  • 13. 3- Octal Numbers: The octal number system is composed of eight digits, which are 0, 1, 2, 3, 4, 5, 6, and 7. To count above 7, begin another column and start over: 10, 11, 12, 13, 14, 15, 16, and 17. 20, 21, 22, 23, 24, 25, 26, and 27… Ex: (607.17)8 A- Octal – to – Decimal conversion: Weight … … 83 82 81 80.8-1 8-2 8-3…. Example: Convert Octal number (2374)8 to decimal number (2374)8 = 2*83 + 3*82 + 7*81 + 4*80 = 2*512 + 3*64 + 7*8 + 4*1 = 1024+192+56+4 = (1276)10
  • 14. B- Decimal – to – Octal Conversion: Express (150)10 in Octal. 150 ÷ 8 = 18 6 (LSD) 18 ÷ 8 = 2 2 2 ÷ 8 = 0 2 (MSD) (150)10 = (226)8 Express (0.265)10 in Octal. 0.265 × 8 = 2.12 2 (MSD) 0.12 × 8 = 0.96 0 0.96 × 8 = 7.68 7 0.68 × 8 = 5.44 5 (0. 265)10 = (0.2075)8 B- Binary– to – Octal Conversion: Ex: Convert from (1001101.010111)2 to Octal base 001 001 101 . 010 111 1 1 5 . 2 7 =(115.27)8