SlideShare uma empresa Scribd logo
1 de 28
Baixar para ler offline
Number System
CONTENTS
Number System
Representation of Numbers of Different
Radix
Conversion of Numbers from one Radix to
Another Radix
Complement of Number
Binary Arithmetic
What is Number System ?
•A system for representing number of certain type.
• Example:
–There are several systems for representing the
–counting numbers.
– These include the usual base “10” or decimal system : 1,2,3
,…..10,11,12,..99,100,…
System Base Symbols
Used by
humans?
Used in
computers?
Decimal 10 0, 1, … 9 Yes No
Binary 2 0, 1 No Yes
Octal 8 0, 1, … 7 No No
Hexa-
decimal
16 0, 1, … 9,
A, B, … F
No No
Common Number System
Decimal Binary Octal
Hexa-
decimal
0 0 0 0
1 1 1 1
2 10 2 2
3 11 3 3
4 100 4 4
5 101 5 5
6 110 6 6
7 111 7 7
Counting
Counting
Decimal Binary Octal
Hexa-
decimal
8 1000 10 8
9 1001 11 9
10 1010 12 A
11 1011 13 B
12 1100 14 C
13 1101 15 D
14 1110 16 E
15 1111 17 F
Conversion Among Bases
Hexadecimal
Decimal Octal
Binary
•Group into 3's starting at least significant symbol (if the
number of bits is not evenly divisible by 3, then add 0's at
the most significant end)
• write 1 octal digit for each group
e.g.: (1010101)2 to ( )8
001 010 101
1 2 5
Answer = 1258
Binary to Octal
•For each of the Octal digit write its binary equivalent
e.g.: (257)8 to ( )2
Answer = (010101111)2
Octal to Binary
2 5 7
010
101
111
Binary to Hexadecimal
• Group into 4's starting at least significant symbol (if the
number of bits is not evenly divisible by 4, then add
0's at the most significant end)
• write 1 hex digit for each group.
e.g.: (1010111011)2 to ( )16
10 1011 1011
2 B
B
Answer = (2BB)16
Hexadecimal to Binary
• For each of the Hex digit write its binary equivalent (use 4 bits to
represent).
e.g.: (25A0)16 to ( )2
2 5 A 0
0010
0101 1010
0000
Answer = (0010010110100000)2
• Steps:
1.Convert octal number to its binary equivalent
2.Convert binary number to its hexadecimal equivalent
e.g.: (635.27)8 to ( )16
1
6 3 5 . 2 7
110 011 101 . 010 111
000 00
1 9 D . 5 C
Octal to Hexadecimal
• Steps:
1.Convert hexadecimal number to its binary equivalent
2.Convert binary number to its octal equivalent
e.g.:
1
Hexadecimal to Octal
A 3 B . 7
1010 0011 1011 . 0111 00
5 0 7 3 . 3 4
Any Base to Decimal
Converting from any base to decimal is done by multiplying
each digit by its weight and summing.
e.g.:
Binary to Decimal
1011.112 = (1x23 ) + (0x22 ) + (1x21 ) + (1x20) + (1x2-1) + (1x2-2)
= 8 + 0 + 2 + 1 + 0.5 + 0.25
= 11.7510
Decimal to Any Base
Steps:
1. Convert integer part
( Successive Division Method )
2. Convert fractional part
( Successive Multiplication Method )
Steps in Successive Division Method
1. Divide the integer part of decimal number by desired
base number, store quotient (Q) and remainder (R)
2. Consider quotient as a new decimal number and
repeat step1 until quotient becomes 0
3. List the remainders in the reverse order
Steps in Successive Multiplication Method
1. Multiply the fractional part of decimal number by
desired base number
2. Record the integer part of product as carry and
fractional part as new fractional part
3. Repeat steps 1 and 2 until fractional part of product
becomes 0 or until you have many digits as necessary
for your application
4. Read carries downwards to get desired base number
e.g.: (125)10 to ( )2
Answer : (1111101)2
1’s Complement
The 1’s complement of a binary number is the number
that results when we change all 1’s to zeros and the zeros
to ones.
1 1 0 1 0 0 1 0
NOT OPEARATION
0 0 1 0 1 1 0 1
2’s Complement
The 2’s complement the binary number that results when
add 1 to the 1’s complement. It’s given as,
2’s complement = 1’s complement + 1
•The 2’s complement form is used to represent negative
numbers.
Example: Express 35 in 8-bit 2’s complement form.
Solution:
35 in 8-bit form is 00100011
0 0 1 0 0 0 1 1
1 1 0 1 1 1 0 0
+ 1
--------------------
1 1 0 1 1 1 0 1
9’s Complement
The nines' complement of a decimal digit is the number
that must be added to it to produce 9. The complement of
3 is 6, the complement of 7 is 2.
Example: Obtain 9’s complement of 7493
Solution:
9 9 9 9
- 7 4 9 3
--------
2 5 0 6 9’s complement
10’s Complement
The 10’s complement of the given number is obtained by
adding 1 to the 9’s complement. It is given as,
10’s complement = 9’s complement + 1
Example: Obtain 10’s complement of 7493
Solution:
9 9 9 9 2 5 0 6
- 7 4 9 3 + 1
-------- ----------
2 5 0 6 2 5 0 7 10’s complement
Binary Addition
The addition consists of four possible elementary
operations:
Sr no. Operations
0. 0+0=0
1. 0+1=1
2. 1+0=1
3. 1+1=10 (0 with carry of 1)
In the last case, sum is of two digits: Higher Significant bit
is called Carry and lower significant bit is called Sum.
Binary Addition
e.g.:
1 1 0 0
+ 0 1 1 0
1 0 0 1 0
Carry
The subtraction consists of four possible elementary
operations:
Binary Subtraction
In case of second operation the minuend bit is smaller
than the subtrahend bit, hence 1 is borrowed.
Sr no. Operations
0. 0-0=0
1. 0-1=1(borrow 1)
2. 1-0=1
3. 1-1=0
Binary Subtraction
e.g.:
0 1 0 1
- 0 1 1 0
1 1 1 1
Binary Multiplication
Rules for Binary Multiplication are:
Sr no. Operations
0. 0*0=0
1. 0*1=0
2. 1*0=0
3. 1*1=1
e.g.: Multiply 110 by 10
1 1 0
* 1 0
0 0 0
+ 1 1 0 0
1 1 0 0
Binary Division
Rules for Binary Division are:
Sr no. Operations
0. 0/0=0
1. 1/0=0
2. 0/1=0
3. 1/1=1
e.g.: Divide 110 by 10
1 1
1 0 1 1 0
1 0
0 1 0
1 0
0 0
REFERENCES
1. “Digital Electronics” By A.P.Godse and Dr.D.A.Godse
2. “Digital Electronics” By A.Anandkumar

Mais conteúdo relacionado

Semelhante a uyuyuy.pdf

Number System.pptx
Number System.pptxNumber System.pptx
Number System.pptx
Lovely Professional University
 
Alu1
Alu1Alu1

Semelhante a uyuyuy.pdf (20)

ch2.pdf
ch2.pdfch2.pdf
ch2.pdf
 
Chapter two FHI.pptx
Chapter two FHI.pptxChapter two FHI.pptx
Chapter two FHI.pptx
 
DCF QNA edited
DCF QNA editedDCF QNA edited
DCF QNA edited
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptx
 
Number system
Number systemNumber system
Number system
 
Number system by ammar nawab
Number system by ammar nawabNumber system by ammar nawab
Number system by ammar nawab
 
Digital Logic
Digital LogicDigital Logic
Digital Logic
 
Chapter 2 Data Representation on CPU (part 1)
Chapter 2 Data Representation on CPU (part 1)Chapter 2 Data Representation on CPU (part 1)
Chapter 2 Data Representation on CPU (part 1)
 
Number System.pptx
Number System.pptxNumber System.pptx
Number System.pptx
 
Digital Electronics Notes.pdf
Digital Electronics Notes.pdfDigital Electronics Notes.pdf
Digital Electronics Notes.pdf
 
Number System.pptx
Number System.pptxNumber System.pptx
Number System.pptx
 
Data representation
Data representationData representation
Data representation
 
data representation
 data representation data representation
data representation
 
Data Representation
Data RepresentationData Representation
Data Representation
 
LCDF3_Chap_01x.pptx
LCDF3_Chap_01x.pptxLCDF3_Chap_01x.pptx
LCDF3_Chap_01x.pptx
 
Alu1
Alu1Alu1
Alu1
 
Chapter 2_Number system (EEEg4302).pdf
Chapter 2_Number system (EEEg4302).pdfChapter 2_Number system (EEEg4302).pdf
Chapter 2_Number system (EEEg4302).pdf
 
Number system
Number systemNumber system
Number system
 
digital systems and information
digital systems and informationdigital systems and information
digital systems and information
 
Representation Of Numbers and Characters
Representation Of Numbers and CharactersRepresentation Of Numbers and Characters
Representation Of Numbers and Characters
 

Mais de MariaJoseph591921 (7)

The best Mland deep learning for beginners to understand more abot the conten...
The best Mland deep learning for beginners to understand more abot the conten...The best Mland deep learning for beginners to understand more abot the conten...
The best Mland deep learning for beginners to understand more abot the conten...
 
Machine_Learning_for_Data_Science_Projects_Badge20240105-29-8uz8sb.pdf
Machine_Learning_for_Data_Science_Projects_Badge20240105-29-8uz8sb.pdfMachine_Learning_for_Data_Science_Projects_Badge20240105-29-8uz8sb.pdf
Machine_Learning_for_Data_Science_Projects_Badge20240105-29-8uz8sb.pdf
 
FOURIER__ANALYSIS,[1].pptx
FOURIER__ANALYSIS,[1].pptxFOURIER__ANALYSIS,[1].pptx
FOURIER__ANALYSIS,[1].pptx
 
BLDC_868_v52.ppt
BLDC_868_v52.pptBLDC_868_v52.ppt
BLDC_868_v52.ppt
 
Code conversions.pptx415.pptx
Code conversions.pptx415.pptxCode conversions.pptx415.pptx
Code conversions.pptx415.pptx
 
numbersystem-171028183820.pptx
numbersystem-171028183820.pptxnumbersystem-171028183820.pptx
numbersystem-171028183820.pptx
 
Unit_4_part_1.pdf
Unit_4_part_1.pdfUnit_4_part_1.pdf
Unit_4_part_1.pdf
 

Último

Call Girls Hoodi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hoodi Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hoodi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hoodi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
amitlee9823
 
➥🔝 7737669865 🔝▻ Pallavaram Call-girls in Women Seeking Men 🔝Pallavaram🔝 E...
➥🔝 7737669865 🔝▻ Pallavaram Call-girls in Women Seeking Men  🔝Pallavaram🔝   E...➥🔝 7737669865 🔝▻ Pallavaram Call-girls in Women Seeking Men  🔝Pallavaram🔝   E...
➥🔝 7737669865 🔝▻ Pallavaram Call-girls in Women Seeking Men 🔝Pallavaram🔝 E...
amitlee9823
 
Chintamani Call Girls Service: ☎ 7737669865 ☎ High Profile Model Escorts | Ba...
Chintamani Call Girls Service: ☎ 7737669865 ☎ High Profile Model Escorts | Ba...Chintamani Call Girls Service: ☎ 7737669865 ☎ High Profile Model Escorts | Ba...
Chintamani Call Girls Service: ☎ 7737669865 ☎ High Profile Model Escorts | Ba...
amitlee9823
 
➥🔝 7737669865 🔝▻ Nandyal Call-girls in Women Seeking Men 🔝Nandyal🔝 Escorts...
➥🔝 7737669865 🔝▻ Nandyal Call-girls in Women Seeking Men  🔝Nandyal🔝   Escorts...➥🔝 7737669865 🔝▻ Nandyal Call-girls in Women Seeking Men  🔝Nandyal🔝   Escorts...
➥🔝 7737669865 🔝▻ Nandyal Call-girls in Women Seeking Men 🔝Nandyal🔝 Escorts...
amitlee9823
 
怎样办理哥伦比亚大学毕业证(Columbia毕业证书)成绩单学校原版复制
怎样办理哥伦比亚大学毕业证(Columbia毕业证书)成绩单学校原版复制怎样办理哥伦比亚大学毕业证(Columbia毕业证书)成绩单学校原版复制
怎样办理哥伦比亚大学毕业证(Columbia毕业证书)成绩单学校原版复制
yynod
 
Call Girls Hosur Road Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hosur Road Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hosur Road Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hosur Road Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
amitlee9823
 
➥🔝 7737669865 🔝▻ Tumkur Call-girls in Women Seeking Men 🔝Tumkur🔝 Escorts S...
➥🔝 7737669865 🔝▻ Tumkur Call-girls in Women Seeking Men  🔝Tumkur🔝   Escorts S...➥🔝 7737669865 🔝▻ Tumkur Call-girls in Women Seeking Men  🔝Tumkur🔝   Escorts S...
➥🔝 7737669865 🔝▻ Tumkur Call-girls in Women Seeking Men 🔝Tumkur🔝 Escorts S...
amitlee9823
 
Call Girls Bommanahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Bommanahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service ...Call Girls Bommanahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Bommanahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
amitlee9823
 
Call Girls In Sarjapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Sarjapur Road ☎ 7737669865 🥵 Book Your One night StandCall Girls In Sarjapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Sarjapur Road ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
reStartEvents 5:9 DC metro & Beyond V-Career Fair Employer Directory.pdf
reStartEvents 5:9 DC metro & Beyond V-Career Fair Employer Directory.pdfreStartEvents 5:9 DC metro & Beyond V-Career Fair Employer Directory.pdf
reStartEvents 5:9 DC metro & Beyond V-Career Fair Employer Directory.pdf
Ken Fuller
 
➥🔝 7737669865 🔝▻ bhavnagar Call-girls in Women Seeking Men 🔝bhavnagar🔝 Esc...
➥🔝 7737669865 🔝▻ bhavnagar Call-girls in Women Seeking Men  🔝bhavnagar🔝   Esc...➥🔝 7737669865 🔝▻ bhavnagar Call-girls in Women Seeking Men  🔝bhavnagar🔝   Esc...
➥🔝 7737669865 🔝▻ bhavnagar Call-girls in Women Seeking Men 🔝bhavnagar🔝 Esc...
amitlee9823
 
Jual obat aborsi Jakarta ( 085657271886 )Cytote pil telat bulan penggugur kan...
Jual obat aborsi Jakarta ( 085657271886 )Cytote pil telat bulan penggugur kan...Jual obat aborsi Jakarta ( 085657271886 )Cytote pil telat bulan penggugur kan...
Jual obat aborsi Jakarta ( 085657271886 )Cytote pil telat bulan penggugur kan...
ZurliaSoop
 
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
amitlee9823
 
Chikkabanavara Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Chikkabanavara Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Chikkabanavara Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Chikkabanavara Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
amitlee9823
 
Nandini Layout Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Nandini Layout Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Nandini Layout Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Nandini Layout Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
amitlee9823
 
➥🔝 7737669865 🔝▻ bharuch Call-girls in Women Seeking Men 🔝bharuch🔝 Escorts...
➥🔝 7737669865 🔝▻ bharuch Call-girls in Women Seeking Men  🔝bharuch🔝   Escorts...➥🔝 7737669865 🔝▻ bharuch Call-girls in Women Seeking Men  🔝bharuch🔝   Escorts...
➥🔝 7737669865 🔝▻ bharuch Call-girls in Women Seeking Men 🔝bharuch🔝 Escorts...
amitlee9823
 

Último (20)

Brand Analysis for reggaeton artist Jahzel.
Brand Analysis for reggaeton artist Jahzel.Brand Analysis for reggaeton artist Jahzel.
Brand Analysis for reggaeton artist Jahzel.
 
Call Girls Hoodi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hoodi Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hoodi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hoodi Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
➥🔝 7737669865 🔝▻ Pallavaram Call-girls in Women Seeking Men 🔝Pallavaram🔝 E...
➥🔝 7737669865 🔝▻ Pallavaram Call-girls in Women Seeking Men  🔝Pallavaram🔝   E...➥🔝 7737669865 🔝▻ Pallavaram Call-girls in Women Seeking Men  🔝Pallavaram🔝   E...
➥🔝 7737669865 🔝▻ Pallavaram Call-girls in Women Seeking Men 🔝Pallavaram🔝 E...
 
Chintamani Call Girls Service: ☎ 7737669865 ☎ High Profile Model Escorts | Ba...
Chintamani Call Girls Service: ☎ 7737669865 ☎ High Profile Model Escorts | Ba...Chintamani Call Girls Service: ☎ 7737669865 ☎ High Profile Model Escorts | Ba...
Chintamani Call Girls Service: ☎ 7737669865 ☎ High Profile Model Escorts | Ba...
 
Joshua Minker Brand Exploration Sports Broadcaster .pptx
Joshua Minker Brand Exploration Sports Broadcaster .pptxJoshua Minker Brand Exploration Sports Broadcaster .pptx
Joshua Minker Brand Exploration Sports Broadcaster .pptx
 
➥🔝 7737669865 🔝▻ Nandyal Call-girls in Women Seeking Men 🔝Nandyal🔝 Escorts...
➥🔝 7737669865 🔝▻ Nandyal Call-girls in Women Seeking Men  🔝Nandyal🔝   Escorts...➥🔝 7737669865 🔝▻ Nandyal Call-girls in Women Seeking Men  🔝Nandyal🔝   Escorts...
➥🔝 7737669865 🔝▻ Nandyal Call-girls in Women Seeking Men 🔝Nandyal🔝 Escorts...
 
怎样办理哥伦比亚大学毕业证(Columbia毕业证书)成绩单学校原版复制
怎样办理哥伦比亚大学毕业证(Columbia毕业证书)成绩单学校原版复制怎样办理哥伦比亚大学毕业证(Columbia毕业证书)成绩单学校原版复制
怎样办理哥伦比亚大学毕业证(Columbia毕业证书)成绩单学校原版复制
 
Call Girls Hosur Road Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hosur Road Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hosur Road Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hosur Road Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
 
➥🔝 7737669865 🔝▻ Tumkur Call-girls in Women Seeking Men 🔝Tumkur🔝 Escorts S...
➥🔝 7737669865 🔝▻ Tumkur Call-girls in Women Seeking Men  🔝Tumkur🔝   Escorts S...➥🔝 7737669865 🔝▻ Tumkur Call-girls in Women Seeking Men  🔝Tumkur🔝   Escorts S...
➥🔝 7737669865 🔝▻ Tumkur Call-girls in Women Seeking Men 🔝Tumkur🔝 Escorts S...
 
Resumes, Cover Letters, and Applying Online
Resumes, Cover Letters, and Applying OnlineResumes, Cover Letters, and Applying Online
Resumes, Cover Letters, and Applying Online
 
Call Girls Bommanahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Bommanahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service ...Call Girls Bommanahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Bommanahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
 
Call Girls In Sarjapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Sarjapur Road ☎ 7737669865 🥵 Book Your One night StandCall Girls In Sarjapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Sarjapur Road ☎ 7737669865 🥵 Book Your One night Stand
 
reStartEvents 5:9 DC metro & Beyond V-Career Fair Employer Directory.pdf
reStartEvents 5:9 DC metro & Beyond V-Career Fair Employer Directory.pdfreStartEvents 5:9 DC metro & Beyond V-Career Fair Employer Directory.pdf
reStartEvents 5:9 DC metro & Beyond V-Career Fair Employer Directory.pdf
 
Personal Brand Exploration - Fernando Negron
Personal Brand Exploration - Fernando NegronPersonal Brand Exploration - Fernando Negron
Personal Brand Exploration - Fernando Negron
 
➥🔝 7737669865 🔝▻ bhavnagar Call-girls in Women Seeking Men 🔝bhavnagar🔝 Esc...
➥🔝 7737669865 🔝▻ bhavnagar Call-girls in Women Seeking Men  🔝bhavnagar🔝   Esc...➥🔝 7737669865 🔝▻ bhavnagar Call-girls in Women Seeking Men  🔝bhavnagar🔝   Esc...
➥🔝 7737669865 🔝▻ bhavnagar Call-girls in Women Seeking Men 🔝bhavnagar🔝 Esc...
 
Jual obat aborsi Jakarta ( 085657271886 )Cytote pil telat bulan penggugur kan...
Jual obat aborsi Jakarta ( 085657271886 )Cytote pil telat bulan penggugur kan...Jual obat aborsi Jakarta ( 085657271886 )Cytote pil telat bulan penggugur kan...
Jual obat aborsi Jakarta ( 085657271886 )Cytote pil telat bulan penggugur kan...
 
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
 
Chikkabanavara Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Chikkabanavara Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Chikkabanavara Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Chikkabanavara Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
 
Nandini Layout Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Nandini Layout Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Nandini Layout Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Nandini Layout Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
 
➥🔝 7737669865 🔝▻ bharuch Call-girls in Women Seeking Men 🔝bharuch🔝 Escorts...
➥🔝 7737669865 🔝▻ bharuch Call-girls in Women Seeking Men  🔝bharuch🔝   Escorts...➥🔝 7737669865 🔝▻ bharuch Call-girls in Women Seeking Men  🔝bharuch🔝   Escorts...
➥🔝 7737669865 🔝▻ bharuch Call-girls in Women Seeking Men 🔝bharuch🔝 Escorts...
 

uyuyuy.pdf

  • 2. CONTENTS Number System Representation of Numbers of Different Radix Conversion of Numbers from one Radix to Another Radix Complement of Number Binary Arithmetic
  • 3. What is Number System ? •A system for representing number of certain type. • Example: –There are several systems for representing the –counting numbers. – These include the usual base “10” or decimal system : 1,2,3 ,…..10,11,12,..99,100,…
  • 4. System Base Symbols Used by humans? Used in computers? Decimal 10 0, 1, … 9 Yes No Binary 2 0, 1 No Yes Octal 8 0, 1, … 7 No No Hexa- decimal 16 0, 1, … 9, A, B, … F No No Common Number System
  • 5. Decimal Binary Octal Hexa- decimal 0 0 0 0 1 1 1 1 2 10 2 2 3 11 3 3 4 100 4 4 5 101 5 5 6 110 6 6 7 111 7 7 Counting
  • 6. Counting Decimal Binary Octal Hexa- decimal 8 1000 10 8 9 1001 11 9 10 1010 12 A 11 1011 13 B 12 1100 14 C 13 1101 15 D 14 1110 16 E 15 1111 17 F
  • 8. •Group into 3's starting at least significant symbol (if the number of bits is not evenly divisible by 3, then add 0's at the most significant end) • write 1 octal digit for each group e.g.: (1010101)2 to ( )8 001 010 101 1 2 5 Answer = 1258 Binary to Octal
  • 9. •For each of the Octal digit write its binary equivalent e.g.: (257)8 to ( )2 Answer = (010101111)2 Octal to Binary 2 5 7 010 101 111
  • 10. Binary to Hexadecimal • Group into 4's starting at least significant symbol (if the number of bits is not evenly divisible by 4, then add 0's at the most significant end) • write 1 hex digit for each group. e.g.: (1010111011)2 to ( )16 10 1011 1011 2 B B Answer = (2BB)16
  • 11. Hexadecimal to Binary • For each of the Hex digit write its binary equivalent (use 4 bits to represent). e.g.: (25A0)16 to ( )2 2 5 A 0 0010 0101 1010 0000 Answer = (0010010110100000)2
  • 12. • Steps: 1.Convert octal number to its binary equivalent 2.Convert binary number to its hexadecimal equivalent e.g.: (635.27)8 to ( )16 1 6 3 5 . 2 7 110 011 101 . 010 111 000 00 1 9 D . 5 C Octal to Hexadecimal
  • 13. • Steps: 1.Convert hexadecimal number to its binary equivalent 2.Convert binary number to its octal equivalent e.g.: 1 Hexadecimal to Octal A 3 B . 7 1010 0011 1011 . 0111 00 5 0 7 3 . 3 4
  • 14. Any Base to Decimal Converting from any base to decimal is done by multiplying each digit by its weight and summing. e.g.: Binary to Decimal 1011.112 = (1x23 ) + (0x22 ) + (1x21 ) + (1x20) + (1x2-1) + (1x2-2) = 8 + 0 + 2 + 1 + 0.5 + 0.25 = 11.7510
  • 15. Decimal to Any Base Steps: 1. Convert integer part ( Successive Division Method ) 2. Convert fractional part ( Successive Multiplication Method )
  • 16. Steps in Successive Division Method 1. Divide the integer part of decimal number by desired base number, store quotient (Q) and remainder (R) 2. Consider quotient as a new decimal number and repeat step1 until quotient becomes 0 3. List the remainders in the reverse order Steps in Successive Multiplication Method 1. Multiply the fractional part of decimal number by desired base number 2. Record the integer part of product as carry and fractional part as new fractional part 3. Repeat steps 1 and 2 until fractional part of product becomes 0 or until you have many digits as necessary for your application 4. Read carries downwards to get desired base number
  • 17. e.g.: (125)10 to ( )2 Answer : (1111101)2
  • 18. 1’s Complement The 1’s complement of a binary number is the number that results when we change all 1’s to zeros and the zeros to ones. 1 1 0 1 0 0 1 0 NOT OPEARATION 0 0 1 0 1 1 0 1
  • 19. 2’s Complement The 2’s complement the binary number that results when add 1 to the 1’s complement. It’s given as, 2’s complement = 1’s complement + 1 •The 2’s complement form is used to represent negative numbers. Example: Express 35 in 8-bit 2’s complement form. Solution: 35 in 8-bit form is 00100011 0 0 1 0 0 0 1 1 1 1 0 1 1 1 0 0 + 1 -------------------- 1 1 0 1 1 1 0 1
  • 20. 9’s Complement The nines' complement of a decimal digit is the number that must be added to it to produce 9. The complement of 3 is 6, the complement of 7 is 2. Example: Obtain 9’s complement of 7493 Solution: 9 9 9 9 - 7 4 9 3 -------- 2 5 0 6 9’s complement
  • 21. 10’s Complement The 10’s complement of the given number is obtained by adding 1 to the 9’s complement. It is given as, 10’s complement = 9’s complement + 1 Example: Obtain 10’s complement of 7493 Solution: 9 9 9 9 2 5 0 6 - 7 4 9 3 + 1 -------- ---------- 2 5 0 6 2 5 0 7 10’s complement
  • 22. Binary Addition The addition consists of four possible elementary operations: Sr no. Operations 0. 0+0=0 1. 0+1=1 2. 1+0=1 3. 1+1=10 (0 with carry of 1) In the last case, sum is of two digits: Higher Significant bit is called Carry and lower significant bit is called Sum.
  • 23. Binary Addition e.g.: 1 1 0 0 + 0 1 1 0 1 0 0 1 0 Carry
  • 24. The subtraction consists of four possible elementary operations: Binary Subtraction In case of second operation the minuend bit is smaller than the subtrahend bit, hence 1 is borrowed. Sr no. Operations 0. 0-0=0 1. 0-1=1(borrow 1) 2. 1-0=1 3. 1-1=0
  • 25. Binary Subtraction e.g.: 0 1 0 1 - 0 1 1 0 1 1 1 1
  • 26. Binary Multiplication Rules for Binary Multiplication are: Sr no. Operations 0. 0*0=0 1. 0*1=0 2. 1*0=0 3. 1*1=1 e.g.: Multiply 110 by 10 1 1 0 * 1 0 0 0 0 + 1 1 0 0 1 1 0 0
  • 27. Binary Division Rules for Binary Division are: Sr no. Operations 0. 0/0=0 1. 1/0=0 2. 0/1=0 3. 1/1=1 e.g.: Divide 110 by 10 1 1 1 0 1 1 0 1 0 0 1 0 1 0 0 0
  • 28. REFERENCES 1. “Digital Electronics” By A.P.Godse and Dr.D.A.Godse 2. “Digital Electronics” By A.Anandkumar