SlideShare a Scribd company logo
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

More Related Content

What's hot

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
 
number system
number systemnumber system
number system
Pawan Mishra
 
Introduction to number system
Introduction to number systemIntroduction to number system
Introduction to number system
AswiniT3
 
Number system
Number systemNumber system
Number system
Chauhan Dharmendra
 
Digital Electronics and Computer Language
Digital Electronics and Computer Language Digital Electronics and Computer Language
Digital Electronics and Computer Language
Manthan Chavda
 
data representation
 data representation data representation
data representation
Haroon_007
 
Data Representation
Data RepresentationData Representation
Data Representation
Education Front
 
Introduction of number system
Introduction of number systemIntroduction of number system
Introduction of number system
AswiniT3
 
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
SSE_AndyLi
 
Data representation moris mano ch 03
Data representation   moris mano ch  03Data representation   moris mano ch  03
Data representation moris mano ch 03
thearticlenow
 
Data representation
 Data representation Data representation
Data representation
Ashraf Miraz
 
10 hexadecimal number system student
10   hexadecimal number system student10   hexadecimal number system student
10 hexadecimal number system student
Lee Chadwick
 
number system
number systemnumber system
number system
Unsa Shakir
 
Number Systems Basic Concepts
Number Systems Basic ConceptsNumber Systems Basic Concepts
Number Systems Basic Concepts
Laguna State Polytechnic University
 
Understand data representation on CPU 1
Understand data representation on CPU 1Understand data representation on CPU 1
Understand data representation on CPU 1
Brenda Debra
 
Decimal to binary number
Decimal to binary numberDecimal to binary number
Decimal to binary number
guestd8696a
 
Data representation
Data representationData representation
Data representation
MAGADH UNIVERSITY,BOADH GAYA
 
Number system and codes
Number system and codesNumber system and codes
Number system and codes
Abhiraj Bohra
 
Data representation
Data representationData representation
Data representation
shashikant pabari
 
Number systems ppt
Number systems pptNumber systems ppt
Number systems ppt
sudarmani rajagopal
 

What's hot (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
 

Similar to Number system

Number system by ammar nawab
Number system by ammar nawabNumber system by ammar nawab
Number system by ammar nawab
Ammar_n
 
Cit 1101 lec 02
Cit 1101 lec 02Cit 1101 lec 02
Cit 1101 lec 02
sohag sikder
 
Number system in Digital Electronics
Number system in Digital ElectronicsNumber system in Digital Electronics
Number system in Digital Electronics
Janki Shah
 
uyuyuy.pdf
uyuyuy.pdfuyuyuy.pdf
uyuyuy.pdf
MariaJoseph591921
 
Digital Electronics Notes.pdf
Digital Electronics Notes.pdfDigital Electronics Notes.pdf
Digital Electronics Notes.pdf
4NM21IS132SAISHARATH
 
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...
Arti Parab Academics
 
Number Systems
Number SystemsNumber Systems
Number Systems
Infinity Tech Solutions
 
Number systems and conversions
Number systems and conversionsNumber systems and conversions
Number systems and conversions
Susantha Herath
 
005618132.pdf
005618132.pdf005618132.pdf
005618132.pdf
BhagwansinghBairwa1
 
Chapter 3.pptx
Chapter 3.pptxChapter 3.pptx
Chapter 3.pptx
Wollo UNiversity
 
DCF QNA edited
DCF QNA editedDCF QNA edited
DCF QNA edited
Emmanuel Eniola Falade
 
W 9 numbering system
W 9 numbering systemW 9 numbering system
W 9 numbering system
W 9 numbering systemW 9 numbering system
1. Digital Electronics - Number System PART 1.pptx
1. Digital Electronics - Number System PART 1.pptx1. Digital Electronics - Number System PART 1.pptx
1. Digital Electronics - Number System PART 1.pptx
vsigncontents
 
dtei-180910104911-converted.pptx
dtei-180910104911-converted.pptxdtei-180910104911-converted.pptx
dtei-180910104911-converted.pptx
deepaMS4
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptx
MamataAnilgod
 
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
John Todora
 
Number system
Number systemNumber system
Number system
Bikash Kumar
 
Number System
Number SystemNumber System
Number System
Meenakshi Paul
 
Digital Logic
Digital LogicDigital Logic
Digital Logic
NabeelaNousheen
 

Similar to 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
 
1. Digital Electronics - Number System PART 1.pptx
1. Digital Electronics - Number System PART 1.pptx1. Digital Electronics - Number System PART 1.pptx
1. Digital Electronics - Number System PART 1.pptx
 
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
 

Recently uploaded

官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
171ticu
 
Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...
bijceesjournal
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
kandramariana6
 
cnn.pptx Convolutional neural network used for image classication
cnn.pptx Convolutional neural network used for image classicationcnn.pptx Convolutional neural network used for image classication
cnn.pptx Convolutional neural network used for image classication
SakkaravarthiShanmug
 
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
Yasser Mahgoub
 
People as resource Grade IX.pdf minimala
People as resource Grade IX.pdf minimalaPeople as resource Grade IX.pdf minimala
People as resource Grade IX.pdf minimala
riddhimaagrawal986
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
insn4465
 
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
ecqow
 
AI assisted telemedicine KIOSK for Rural India.pptx
AI assisted telemedicine KIOSK for Rural India.pptxAI assisted telemedicine KIOSK for Rural India.pptx
AI assisted telemedicine KIOSK for Rural India.pptx
architagupta876
 
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
171ticu
 
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
shadow0702a
 
Data Driven Maintenance | UReason Webinar
Data Driven Maintenance | UReason WebinarData Driven Maintenance | UReason Webinar
Data Driven Maintenance | UReason Webinar
UReason
 
Engineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdfEngineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdf
abbyasa1014
 
Manufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptxManufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptx
Madan Karki
 
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student MemberIEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
VICTOR MAESTRE RAMIREZ
 
Data Control Language.pptx Data Control Language.pptx
Data Control Language.pptx Data Control Language.pptxData Control Language.pptx Data Control Language.pptx
Data Control Language.pptx Data Control Language.pptx
ramrag33
 
CEC 352 - SATELLITE COMMUNICATION UNIT 1
CEC 352 - SATELLITE COMMUNICATION UNIT 1CEC 352 - SATELLITE COMMUNICATION UNIT 1
CEC 352 - SATELLITE COMMUNICATION UNIT 1
PKavitha10
 
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Sinan KOZAK
 
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by AnantLLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
Anant Corporation
 
Curve Fitting in Numerical Methods Regression
Curve Fitting in Numerical Methods RegressionCurve Fitting in Numerical Methods Regression
Curve Fitting in Numerical Methods Regression
Nada Hikmah
 

Recently uploaded (20)

官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
 
Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
 
cnn.pptx Convolutional neural network used for image classication
cnn.pptx Convolutional neural network used for image classicationcnn.pptx Convolutional neural network used for image classication
cnn.pptx Convolutional neural network used for image classication
 
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
 
People as resource Grade IX.pdf minimala
People as resource Grade IX.pdf minimalaPeople as resource Grade IX.pdf minimala
People as resource Grade IX.pdf minimala
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
 
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
一比一原版(CalArts毕业证)加利福尼亚艺术学院毕业证如何办理
 
AI assisted telemedicine KIOSK for Rural India.pptx
AI assisted telemedicine KIOSK for Rural India.pptxAI assisted telemedicine KIOSK for Rural India.pptx
AI assisted telemedicine KIOSK for Rural India.pptx
 
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
 
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
 
Data Driven Maintenance | UReason Webinar
Data Driven Maintenance | UReason WebinarData Driven Maintenance | UReason Webinar
Data Driven Maintenance | UReason Webinar
 
Engineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdfEngineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdf
 
Manufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptxManufacturing Process of molasses based distillery ppt.pptx
Manufacturing Process of molasses based distillery ppt.pptx
 
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student MemberIEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
 
Data Control Language.pptx Data Control Language.pptx
Data Control Language.pptx Data Control Language.pptxData Control Language.pptx Data Control Language.pptx
Data Control Language.pptx Data Control Language.pptx
 
CEC 352 - SATELLITE COMMUNICATION UNIT 1
CEC 352 - SATELLITE COMMUNICATION UNIT 1CEC 352 - SATELLITE COMMUNICATION UNIT 1
CEC 352 - SATELLITE COMMUNICATION UNIT 1
 
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
 
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by AnantLLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
 
Curve Fitting in Numerical Methods Regression
Curve Fitting in Numerical Methods RegressionCurve Fitting in Numerical Methods Regression
Curve Fitting in Numerical Methods Regression
 

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.