SlideShare ist ein Scribd-Unternehmen logo
1 von 34
By: 
Iqra Sundip Yasin 
1450-213001 
NUMBER SYSTEM 
& 
DEFINATIONS
Digital Number System 
 Many number system are in use in digital technology. The 
most common are the decimal, binary, octal, hexadecimal 
system.
OTHER NUMBER SYSTEM 
 Base-2 binary system 
 Base3 tritary system Base-11 undecimal system 
 Base-4 quaternary system Base-12 duodecimal system 
 Base-5 quinary system Base-13 tridecimal system 
 Base-6 senary system Base-14 tetradecimal system 
 Base-7 septenary system Base-15 pentadecimal system 
 Base-8 octal system Base-16 hexadecimal system 
 Base-9 nonary system 
 Base-10 decimal system Base-20 The vigesimal system 
Base-36 hexatridecimal system
The decimal system is composed of 
10 symbols. These 10 symbols are 
0,1,2,3,4,5,6,7,8,9; using these 
symbols as digits of a number of a 
number. The decimal system also 
called base 10 system because it has 
10 digits, has evolved naturally as a 
result of the fact that people have 10 
finger . 
In fact, the word “digit” is derived 
from the Latin word for “finger.”
Positional Notation 
 The decimal system is a positional –value system in which the 
value of a digit depends on its position…. 
 642 in base 10 positional notation is: 
6 x 102 = 6 x 100 = 600 
+ 4 x 101 = 4 x 10 = 40 
+ 2 x 10º = 2 x 1 = 2 = 642 in base 10 
The power 
indicates 
the position of 
the number
MSD & LSD 
Stands for Most significant digit and least significant digit 
respectively e.g. 2735.214. 
2 carries the most weight or value so 2 is MSD and 4 carries the 
least weight or value so 4 is LSD .
CONVERSION 
Decimal to binary , octal and hexadecimal 
 Conversion from decimal system into other system. It involves using 
successive division by the radix until the dividend reaches 0. At each division, the remainder 
provides a digit of the converted number, starting with the least significant digit. 
 For example: convert 3710 to binary 
37 / 2 = 18 remainder 1 (least significant Bit) 
18 / 2 = 9 remainder 0 
9 / 2 = 4 remainder 1 
4 / 2 = 2 remainder 0 
2 / 2 = 1 remainder 0 
1 / 2 = 0 remainder 1 (most significant Bit) 
The resulting binary number is: 100101 THAT WE START FROM MSB TO LSB
EXAMPLE: CONVERT (177)10 TO OCTAL 
Conversion of decimal fraction to octal fraction is carried out in the same 
manner as decimal to binary except that now the multiplication is carried 
out by 8. 
SOLUTION: 
177 / 8 = 22 remainder is 1 
22 / 8 = 2 remainder is 6 
2 / 8 = 0 remainder is 2 
The resulting binary number is: (261)8
Example: convert (4768)10 to hex. 
Solution: 
= 4768 / 16 = 298 remainder 0 
= 298 / 16 = 18 remainder 10 (A) 
= 18 / 16 = 1 remainder 2 
= 1 / 16 = 0 remainder 1 
The resulting binary number is: (12A0)16
What if 642 has the base of 13? 
6 x 132 = 6 x 169 = 1014 
+ 4 x 131 = 4 x 13 = 52 
+ 2 x 13º = 2 x 1 = 2 
2+52+1014 = 1068 in base 10 
642 in base 13 is equivalent to 1068 
in base 10
Binary Number System 
 Base = 2 
 2 digits { 0, 1 }, called binary digits or “bits” 
 Weights 
 Weight = (Base) Position 
 Formal Notation 
Groups of bits 4 bits = Nibble 
8 bits = Byte
Converting Binary to Decimal 
 What is the decimal equivalent of the binary number 1101110? 
1 x 26 = 1 x 64 = 64 
+ 1 x 25 = 1 x 32 = 32 
+ 0 x 24 = 0 x 16 = 0 
+ 1 x 23 = 1 x 8 = 8 
+ 1 x 22 = 1 x 4 = 4 
+ 1 x 21 = 1 x 2 = 2 
+ 0 x 2º = 0 x 1 = 0 
= 110 in base 10
Conversion of binary to octal and hex Conversion 
 Conversion of binary numbers to octal and hex simply requires 
grouping bits in the binary numbers into groups of three bits for 
conversion to octal and into groups of four bits for conversion to 
hex. 
 Groups are formed beginning with the LSB and progressing to the 
MSB. 
 10101011 10 101 011 
2 5 3 
 10101011 1010 1011 
A(10) B(11)
Conversion of binary to octal
Conversion of binary to hexadecimal 
 Convert the binary number 0110101110001100 to hexadecimal 
 Divide into groups of 4 digits 0110 1011 1000 1100 
Convert each group to hex digit 6 B(11) 8 C(12) 
6B8C in hex
Calculator Hint 
 If you use a calculator to perform the divisions by 2, you 
can tell whether the remainder is 0 or 1 by whether or not 
the result has a fractional part. For instance, 25/2 would 
produce 12.5. Since there is a fractional part (.5 ), the 
remainder is a 1. If there were no fractional part, such as 
12/2=6 then the remainder would be 0.
Octal refers to a numbering system that has a base 
of eight. This means it only uses the eight numerals 
0,1,2,3,4,5,6,7 for each digit of a number.
Conversion: 
Converting Octal to Decimal: 
What is the decimal equivalent of the octal number 642? 
6 x 82 = 6 x 64 = 384 
+ 4 x 81 = 4 x 8 = 32 
+ 2 x 8º = 2 x 1 = 2 
= 418 in base 10 
 Example: convert (632)8 to decimal 
= (6 x 82) + (3 x 81) + (2 x 80) 
= (6 x 64) + (3 x 8) + (2 x 1) 
= 384 + 24 + 2 
= (410)10
1) Convert (634)8 to binary equivalent? 
Sol. 
6 3 4 
110 011 100 . 
Binary number = (110011100)2 
2) Convert (615)8 to hexadecimal equivalent? 
Sol. 
Step1 octal to binary 
6 1 5 
110 001 101 
Binary number = 110001101 
Step2 binary to hexadecimal 
0001 1000 1101 
1 8 D 
.: Hexadecimal number = (18D)16
Calculator Hint 
 If a calculator is used to perform the division , the result will 
include a decimal fraction instead of a remainder. The 
remainder can be obtained, However, by multiplying the 
decimal fraction by 8, for example 266/8 produces 33.25.The 
remainder becomes 0.25 * 8 =2. 
 We need this hint when we convert decimal system into octal 
system..
Hexadecimal number system
Convert (BEEF)16 into ( )10
CONVERT (9F2)16 INTO ( )2 ? 
Shorthand method to representing binary numbers…(8421) 
(9F2)16 = 9 F 2 
1001 1111 0010 
SO binary number is= 100111110010 
Convert (25B)16 to octal equivalent? 
Sol. 
Step1 hexadecimal to binary 
2 5 B 
0010 0101 1011 
Binary number = 001001011011 
Step2 binary to octal 
001 001 011 011 
1 1 3 3 
Octal number = (1133)8
link: 
http://www.translatorscafe.com/cafe/EN/units-converter/numbers/2-1/octal-binary/
DEFINATIONS: 
 Digital Signal: A digital 
signal is a physical 
signal that is a representation 
of a sequence of discrete values. 
 Analog Signal: Analog signal 
is a continuous signal w.r.t 
time. An Analog signal have 
its changing value at every 
instant of time
Active high and low: 
Active high: It can call as positive 
logic. The high voltage +5v 
represent logic high that is 1 and 
lower 0v represent the logic low 
that is 0. 
Active low: it can call as negative 
logic . The higher voltage 
represent as logic low that is o 
and lower voltage represent as 
logic high that is 1..
Duty Cycle 
A duty cycle is the percentage of 
one period in which a signal is active. A 
period is the time it takes for a signal to 
complete an on-and-off cycle. As a 
formula, a duty cycle may be expressed as: 
D=T/P *100 
where is the duty cycle, is the time the 
signal is active, and is the total period of 
the signal. Thus, a 50 % duty cycle means 
the signal is on 50 % of the time but off 
50% of the time.
Flip Flop 
Memory device capable of storing a 
logic level. 
Types of FF: 
i. S-R FF 
ii. J-K FF 
iii. D FF 
iv. T FF
Fan in and out 
 Fan-in is a term that defines the maximum number of digital 
inputs that a single logic gate can accept. A typical logic gate 
has a fan-in of 1 or 2. 
 Fan-out is a term that defines the maximum number of digital 
inputs that the output of a single logic gate can feed. 
OR 
 The maximum number of logic inputs that an output can drive 
reliably called fan out.
THANK YOU

Weitere ähnliche Inhalte

Was ist angesagt?

Lec 02 data representation part 1
Lec 02 data representation part 1Lec 02 data representation part 1
Lec 02 data representation part 1
Abdul Khan
 
Decimal to binary number
Decimal to binary numberDecimal to binary number
Decimal to binary number
guestd8696a
 

Was ist angesagt? (20)

Lec 02 data representation part 1
Lec 02 data representation part 1Lec 02 data representation part 1
Lec 02 data representation part 1
 
number system
number systemnumber system
number system
 
Introduction to number system
Introduction to number systemIntroduction to number system
Introduction to number system
 
Number system
Number systemNumber system
Number system
 
Digital Electronics and Computer Language
Digital Electronics and Computer Language Digital Electronics and Computer Language
Digital Electronics and Computer Language
 
data representation
 data representation data representation
data representation
 
Data Representation
Data RepresentationData Representation
Data Representation
 
Introduction of number system
Introduction of number systemIntroduction of number system
Introduction of number system
 
Chapter 01 Basic Principles of Digital Systems
Chapter 01 Basic Principles of Digital SystemsChapter 01 Basic Principles of Digital Systems
Chapter 01 Basic Principles of Digital Systems
 
Data representation moris mano ch 03
Data representation   moris mano ch  03Data representation   moris mano ch  03
Data representation moris mano ch 03
 
Data representation
 Data representation Data representation
Data representation
 
10 hexadecimal number system student
10   hexadecimal number system student10   hexadecimal number system student
10 hexadecimal number system student
 
number system
number systemnumber system
number system
 
Number Systems Basic Concepts
Number Systems Basic ConceptsNumber Systems Basic Concepts
Number Systems Basic Concepts
 
Understand data representation on CPU 1
Understand data representation on CPU 1Understand data representation on CPU 1
Understand data representation on CPU 1
 
Decimal to binary number
Decimal to binary numberDecimal to binary number
Decimal to binary number
 
Data representation
Data representationData representation
Data representation
 
Number system and codes
Number system and codesNumber system and codes
Number system and codes
 
Data representation
Data representationData representation
Data representation
 
Number systems ppt
Number systems pptNumber systems ppt
Number systems ppt
 

Ähnlich wie Number system

Ähnlich wie Number system (20)

Number system by ammar nawab
Number system by ammar nawabNumber system by ammar nawab
Number system by ammar nawab
 
Cit 1101 lec 02
Cit 1101 lec 02Cit 1101 lec 02
Cit 1101 lec 02
 
Number system in Digital Electronics
Number system in Digital ElectronicsNumber system in Digital Electronics
Number system in Digital Electronics
 
uyuyuy.pdf
uyuyuy.pdfuyuyuy.pdf
uyuyuy.pdf
 
Digital Electronics Notes.pdf
Digital Electronics Notes.pdfDigital Electronics Notes.pdf
Digital Electronics Notes.pdf
 
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 Systems
Number SystemsNumber Systems
Number Systems
 
Number systems and conversions
Number systems and conversionsNumber systems and conversions
Number systems and conversions
 
005618132.pdf
005618132.pdf005618132.pdf
005618132.pdf
 
Chapter 3.pptx
Chapter 3.pptxChapter 3.pptx
Chapter 3.pptx
 
DCF QNA edited
DCF QNA editedDCF QNA edited
DCF QNA edited
 
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
 
dtei-180910104911-converted.pptx
dtei-180910104911-converted.pptxdtei-180910104911-converted.pptx
dtei-180910104911-converted.pptx
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptx
 
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
 
Number system
Number systemNumber system
Number system
 
Number System
Number SystemNumber System
Number System
 
Digital Logic
Digital LogicDigital Logic
Digital Logic
 
Chapter 1 digital design.pptx
Chapter 1 digital design.pptxChapter 1 digital design.pptx
Chapter 1 digital design.pptx
 

Kürzlich hochgeladen

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
Epec Engineered Technologies
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Kandungan 087776558899
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Kürzlich hochgeladen (20)

22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf
 
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 Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
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
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdf
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
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
 

Number system

  • 1.
  • 2. By: Iqra Sundip Yasin 1450-213001 NUMBER SYSTEM & DEFINATIONS
  • 3. Digital Number System  Many number system are in use in digital technology. The most common are the decimal, binary, octal, hexadecimal system.
  • 4. OTHER NUMBER SYSTEM  Base-2 binary system  Base3 tritary system Base-11 undecimal system  Base-4 quaternary system Base-12 duodecimal system  Base-5 quinary system Base-13 tridecimal system  Base-6 senary system Base-14 tetradecimal system  Base-7 septenary system Base-15 pentadecimal system  Base-8 octal system Base-16 hexadecimal system  Base-9 nonary system  Base-10 decimal system Base-20 The vigesimal system Base-36 hexatridecimal system
  • 5. The decimal system is composed of 10 symbols. These 10 symbols are 0,1,2,3,4,5,6,7,8,9; using these symbols as digits of a number of a number. The decimal system also called base 10 system because it has 10 digits, has evolved naturally as a result of the fact that people have 10 finger . In fact, the word “digit” is derived from the Latin word for “finger.”
  • 6. Positional Notation  The decimal system is a positional –value system in which the value of a digit depends on its position….  642 in base 10 positional notation is: 6 x 102 = 6 x 100 = 600 + 4 x 101 = 4 x 10 = 40 + 2 x 10º = 2 x 1 = 2 = 642 in base 10 The power indicates the position of the number
  • 7. MSD & LSD Stands for Most significant digit and least significant digit respectively e.g. 2735.214. 2 carries the most weight or value so 2 is MSD and 4 carries the least weight or value so 4 is LSD .
  • 8. CONVERSION Decimal to binary , octal and hexadecimal  Conversion from decimal system into other system. It involves using successive division by the radix until the dividend reaches 0. At each division, the remainder provides a digit of the converted number, starting with the least significant digit.  For example: convert 3710 to binary 37 / 2 = 18 remainder 1 (least significant Bit) 18 / 2 = 9 remainder 0 9 / 2 = 4 remainder 1 4 / 2 = 2 remainder 0 2 / 2 = 1 remainder 0 1 / 2 = 0 remainder 1 (most significant Bit) The resulting binary number is: 100101 THAT WE START FROM MSB TO LSB
  • 9. EXAMPLE: CONVERT (177)10 TO OCTAL Conversion of decimal fraction to octal fraction is carried out in the same manner as decimal to binary except that now the multiplication is carried out by 8. SOLUTION: 177 / 8 = 22 remainder is 1 22 / 8 = 2 remainder is 6 2 / 8 = 0 remainder is 2 The resulting binary number is: (261)8
  • 10. Example: convert (4768)10 to hex. Solution: = 4768 / 16 = 298 remainder 0 = 298 / 16 = 18 remainder 10 (A) = 18 / 16 = 1 remainder 2 = 1 / 16 = 0 remainder 1 The resulting binary number is: (12A0)16
  • 11. What if 642 has the base of 13? 6 x 132 = 6 x 169 = 1014 + 4 x 131 = 4 x 13 = 52 + 2 x 13º = 2 x 1 = 2 2+52+1014 = 1068 in base 10 642 in base 13 is equivalent to 1068 in base 10
  • 12. Binary Number System  Base = 2  2 digits { 0, 1 }, called binary digits or “bits”  Weights  Weight = (Base) Position  Formal Notation Groups of bits 4 bits = Nibble 8 bits = Byte
  • 13. Converting Binary to Decimal  What is the decimal equivalent of the binary number 1101110? 1 x 26 = 1 x 64 = 64 + 1 x 25 = 1 x 32 = 32 + 0 x 24 = 0 x 16 = 0 + 1 x 23 = 1 x 8 = 8 + 1 x 22 = 1 x 4 = 4 + 1 x 21 = 1 x 2 = 2 + 0 x 2º = 0 x 1 = 0 = 110 in base 10
  • 14. Conversion of binary to octal and hex Conversion  Conversion of binary numbers to octal and hex simply requires grouping bits in the binary numbers into groups of three bits for conversion to octal and into groups of four bits for conversion to hex.  Groups are formed beginning with the LSB and progressing to the MSB.  10101011 10 101 011 2 5 3  10101011 1010 1011 A(10) B(11)
  • 16. Conversion of binary to hexadecimal  Convert the binary number 0110101110001100 to hexadecimal  Divide into groups of 4 digits 0110 1011 1000 1100 Convert each group to hex digit 6 B(11) 8 C(12) 6B8C in hex
  • 17. Calculator Hint  If you use a calculator to perform the divisions by 2, you can tell whether the remainder is 0 or 1 by whether or not the result has a fractional part. For instance, 25/2 would produce 12.5. Since there is a fractional part (.5 ), the remainder is a 1. If there were no fractional part, such as 12/2=6 then the remainder would be 0.
  • 18. Octal refers to a numbering system that has a base of eight. This means it only uses the eight numerals 0,1,2,3,4,5,6,7 for each digit of a number.
  • 19. Conversion: Converting Octal to Decimal: What is the decimal equivalent of the octal number 642? 6 x 82 = 6 x 64 = 384 + 4 x 81 = 4 x 8 = 32 + 2 x 8º = 2 x 1 = 2 = 418 in base 10  Example: convert (632)8 to decimal = (6 x 82) + (3 x 81) + (2 x 80) = (6 x 64) + (3 x 8) + (2 x 1) = 384 + 24 + 2 = (410)10
  • 20. 1) Convert (634)8 to binary equivalent? Sol. 6 3 4 110 011 100 . Binary number = (110011100)2 2) Convert (615)8 to hexadecimal equivalent? Sol. Step1 octal to binary 6 1 5 110 001 101 Binary number = 110001101 Step2 binary to hexadecimal 0001 1000 1101 1 8 D .: Hexadecimal number = (18D)16
  • 21. Calculator Hint  If a calculator is used to perform the division , the result will include a decimal fraction instead of a remainder. The remainder can be obtained, However, by multiplying the decimal fraction by 8, for example 266/8 produces 33.25.The remainder becomes 0.25 * 8 =2.  We need this hint when we convert decimal system into octal system..
  • 24. CONVERT (9F2)16 INTO ( )2 ? Shorthand method to representing binary numbers…(8421) (9F2)16 = 9 F 2 1001 1111 0010 SO binary number is= 100111110010 Convert (25B)16 to octal equivalent? Sol. Step1 hexadecimal to binary 2 5 B 0010 0101 1011 Binary number = 001001011011 Step2 binary to octal 001 001 011 011 1 1 3 3 Octal number = (1133)8
  • 26. DEFINATIONS:  Digital Signal: A digital signal is a physical signal that is a representation of a sequence of discrete values.  Analog Signal: Analog signal is a continuous signal w.r.t time. An Analog signal have its changing value at every instant of time
  • 27. Active high and low: Active high: It can call as positive logic. The high voltage +5v represent logic high that is 1 and lower 0v represent the logic low that is 0. Active low: it can call as negative logic . The higher voltage represent as logic low that is o and lower voltage represent as logic high that is 1..
  • 28.
  • 29. Duty Cycle A duty cycle is the percentage of one period in which a signal is active. A period is the time it takes for a signal to complete an on-and-off cycle. As a formula, a duty cycle may be expressed as: D=T/P *100 where is the duty cycle, is the time the signal is active, and is the total period of the signal. Thus, a 50 % duty cycle means the signal is on 50 % of the time but off 50% of the time.
  • 30. Flip Flop Memory device capable of storing a logic level. Types of FF: i. S-R FF ii. J-K FF iii. D FF iv. T FF
  • 31. Fan in and out  Fan-in is a term that defines the maximum number of digital inputs that a single logic gate can accept. A typical logic gate has a fan-in of 1 or 2.  Fan-out is a term that defines the maximum number of digital inputs that the output of a single logic gate can feed. OR  The maximum number of logic inputs that an output can drive reliably called fan out.
  • 32.
  • 33.