SlideShare a Scribd company logo
1 of 9
Download to read offline
BY: ASSOCIATE PROFESSOR NADEEM UDDIN
Miscellaneous
EXAMPLES OF Binary ,Quinary and Octonary numbers
Example-36:
Convert ( 324 )5 into binary number.
SOLUTION:
First step is to convert ( 324 )5 into decimal number
3 2 4 = 3 x 52
+ 2 x 51
+ 4 x 50
3 2 4 = 3 x 25 + 2 x 5 + 4 x 1
3 2 4 = 75 + 10 + 4
(32 4)5 = ( 89 )10
Now convert ( 89 )10 into binary number
(324 )5 = (1011001 )2
2 89
2 44 1
2 22 0
2 11 0
2 5 1
2 2 1
1 0
Example-37:
Convert ( 345 )8 into binary number.
SOLUTION:
First step is to convert ( 345 )8 into decimal number
( 345 )8 = 3 x 82
+ 4 x 81
+ 5 x 80
( 345 )8 = 3 x 64 + 4 x 8 + 5 x 1
( 345 )8 = 192 + 32 + 5
( 345 )8 = ( 229 )10
Now convert ( 229 )10 into binary number
( 345 )8 = (11100101 )2
Example-38:
Convert (1011001 )2 into Quinary number.
SOLUTION:
First step is to convert (1011001 )2 into decimal number
(1011001 )2 =1 x 26
+ 0 x 25
+ 1 x 24
+ 1 x 23
+ 0 x 22
+ 0 x 21
+ 1x20
(1011001 )2 =1 x 64 + 0 x 32 + 1 x 16 + 1 x 8 + 0 x 4 + 0 x 2 + 1 x 1
(1011001 )2 = 64 + 0 + 16 + 8 + 0 + 0 + 1
(1011001 )2 = (89)10
2 229
2 114 1
2 57 0
2 28 1
2 14 0
2 7 0
2 3 1
1 1
Now convert ( 89 )10 into Quinary number
(1011001 )2 = (324 )5
Example-39:
Convert (11100101 )2 into Octal number.
SOLUTION:
First step is to convert (11100101 )2 into decimal number
(11100101 )2 = 1 x 27
+1 x 26
+ 1 x 25
+ 0 x 24
+ 0 x 23
+ 1 x 22
+ 0 x 21
+ 1x20
(11100101 )2 =1 x 128 + 1x 64 + 1 x 32 + 0 x 16 + 0 x 8 + 1 x 4 + 0 x 2 + 1 x 1
(11100101 )2 = 128 + 64 + 32 + 0 + 0 + 4 + 0 + 1
(11100101 )2 = (229)10
Now convert ( 229 )10 into Octal number
(11100101 )2 = ( 345 )8
5 89
5 17 4
3 2
8 229
8 28 5
3 4
Example-40:
Convert (313 )8 into Quinary number.
SOLUTION:
First step is to convert (313 )8 into decimal number
(313 )8 = 3 x 82
+ 1 x 81
+ 3 x 80
(313 )8 =3 x 64 + 1 x 8 + 3 x 1
(313 )8 = 192 + 8 + 3
(313 )8 = (203)10
Now convert ( 203 )10 into Quinary number
(313 )8 = (1303 )5
Example-41:
Convert (432 )5 into Octal number.
SOLUTION:
First step is to convert (432 )5 into decimal number
(432 )5 = 4 x 52
+ 3 x 51
+2 x50
(432 )5 = 4 x 25 + 3 x 5 + 2 x 1
(432 )5 = 100 + 15 + 2
(432 )5 = (117 )10
5 203
5 40 3
5 8 0
1 3
Now convert (117 )10 into Octal number
(432)5 = (165 )8
TABLE TRICK-1
Octal
Number
Binary Number
I II III IV
0 0 0 0
1 0 0 1
2 0 1 0
3 0 1 1
4 1 O 0
5 1 O 1
6 1 1 0
7 1 1 1
Step.1 Put all octal numbers (0 to 7) in the I column.
Step.2 Put 4 zeros and 4 ones in the II column.
Step.3 Keep on putting 2 zeros and 2 ones in the III column.
Step.4 Keep on putting zero and one in the IV column.
DIRECT METHOD
Example-42:
Convert (345 )8 into binary number by using TABLE TRICK-1.
SOLUTION:
From Table
3 = 011
4 = 100
5 = 101
In raw one write the octal number right to left.
In raw two write the binary number right to left.
3 4 5
011 100 101
Therefore
(345 )8 = (11100101 )2
8 117
8 14 5
1 6
Example-43:
Convert (11100101 )2 into Octal number by using TABLE TRICK-1.
SOLUTION:
From Table
Break binary numbers into 3 digits from the right to left
Binary number 011 100 101
Octal number 3 4 5
Therefore
(11100101 )2 = (345 )8
Example-44:
Convert (123 )10 into binary number.
SOLUTION:
(123)10 = (1111011)2
Example-45:
Convert (123 )10 into binary number by Trick method.
SOLUTION:
Step.1In this method divide the number by 2 and ignore the remainder.
Step.2Write the divided number from right to left.
Step.3write 1 for odd number and 0 for even number.
1 3 7 15 30 61 123
1 1 1 1 0 1 1
Hence the answer is (123)10 = (1111011)2
2 123
2 61 1
2 30 1
2 15 0
2 7 1
2 3 1
1 1
Example-46 (a):
Convert (1111011)2 into decimal number
SOLUTION:
Binary
Number
1 1 1 1 0 1 1
Place
value
64 32 16 8 4 2 1
Decimal
Number
64 32 16 8 0 2 1 (123)10
In raw one write the binary numbers right to left.
In raw two write the place value of binary numbers right to left.
In raw three multiply raw one and raw two you can get the deimal number by
adding all the values in raw three.
Example-46 (b):
Convert (432)5 into decimal number
SOLUTION:
Penta
Number
4 3 2
Place
value
25 5 1
Decimal
Number
100 15 2 (117)10
In raw one write the penta numbers right to left.
In raw two write the place value of penta numbers right to left.
In raw three multiply raw one and raw two you can get the deimal number by
adding all the values in raw three.
Example-46 (c):
Convert (313)8 into decimal number
SOLUTION:
Octal
Number
3 1 3
Place
value
64 8 1
Decimal
Number
192 8 3 (203)10
In raw one write the Octal numbers right to left.
In raw two write the place value of octal numbers right to left.
In raw three multiply raw one and raw two you can get the deimal number by
adding all the values in raw three.

More Related Content

What's hot

Math 7 lesson 11 properties of real numbers
Math 7   lesson 11 properties of real numbersMath 7   lesson 11 properties of real numbers
Math 7 lesson 11 properties of real numbersAriel Gilbuena
 
Decimales
DecimalesDecimales
DecimalesSusana
 
Múltiples i divisors
Múltiples i divisorsMúltiples i divisors
Múltiples i divisorsSILOCOS
 
Percent Change Day 1: Definition of percent change
Percent Change Day 1: Definition of percent changePercent Change Day 1: Definition of percent change
Percent Change Day 1: Definition of percent changeJim Olsen
 

What's hot (6)

Math 7 lesson 11 properties of real numbers
Math 7   lesson 11 properties of real numbersMath 7   lesson 11 properties of real numbers
Math 7 lesson 11 properties of real numbers
 
Decimales
DecimalesDecimales
Decimales
 
Múltiples i divisors
Múltiples i divisorsMúltiples i divisors
Múltiples i divisors
 
2 digit division
2 digit division2 digit division
2 digit division
 
Polígonos
PolígonosPolígonos
Polígonos
 
Percent Change Day 1: Definition of percent change
Percent Change Day 1: Definition of percent changePercent Change Day 1: Definition of percent change
Percent Change Day 1: Definition of percent change
 

Similar to Miscellaneous examples of binary , quinary and octonary numbers (2)

ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.pptssuser52a19e
 
Review on Number Systems: Decimal, Binary, and Hexadecimal
Review on Number Systems: Decimal, Binary, and HexadecimalReview on Number Systems: Decimal, Binary, and Hexadecimal
Review on Number Systems: Decimal, Binary, and HexadecimalUtkirjonUbaydullaev1
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.pptRAJKUMARP63
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.pptRabiaAsif31
 
PST SC015 Chapter 2 Computer System 2017/2018
PST SC015 Chapter 2 Computer System 2017/2018PST SC015 Chapter 2 Computer System 2017/2018
PST SC015 Chapter 2 Computer System 2017/2018Fizaril Amzari Omar
 
Digital Logic Design.pptx
Digital Logic Design.pptxDigital Logic Design.pptx
Digital Logic Design.pptxAminaZahid16
 
PDT DC015 Chapter 2 Computer System 2017/2018 (d)
PDT DC015 Chapter 2 Computer System 2017/2018 (d)PDT DC015 Chapter 2 Computer System 2017/2018 (d)
PDT DC015 Chapter 2 Computer System 2017/2018 (d)Fizaril Amzari Omar
 
Data representation
Data representationData representation
Data representationChew Hoong
 
Digital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdfDigital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdfrahul143341
 
digital-electronics.pptx
digital-electronics.pptxdigital-electronics.pptx
digital-electronics.pptxsulekhasaxena2
 
Digital and Logic Design Chapter 1 binary_systems
Digital and Logic Design Chapter 1 binary_systemsDigital and Logic Design Chapter 1 binary_systems
Digital and Logic Design Chapter 1 binary_systemsImran Waris
 
2.1 data represent on cpu
2.1 data represent on cpu2.1 data represent on cpu
2.1 data represent on cpuWan Afirah
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptxamudhak10
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptxamudhak10
 

Similar to Miscellaneous examples of binary , quinary and octonary numbers (2) (20)

ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
Review on Number Systems: Decimal, Binary, and Hexadecimal
Review on Number Systems: Decimal, Binary, and HexadecimalReview on Number Systems: Decimal, Binary, and Hexadecimal
Review on Number Systems: Decimal, Binary, and Hexadecimal
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
binary-numbers.ppt
binary-numbers.pptbinary-numbers.ppt
binary-numbers.ppt
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
PST SC015 Chapter 2 Computer System 2017/2018
PST SC015 Chapter 2 Computer System 2017/2018PST SC015 Chapter 2 Computer System 2017/2018
PST SC015 Chapter 2 Computer System 2017/2018
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
Digital Logic Design.pptx
Digital Logic Design.pptxDigital Logic Design.pptx
Digital Logic Design.pptx
 
PDT DC015 Chapter 2 Computer System 2017/2018 (d)
PDT DC015 Chapter 2 Computer System 2017/2018 (d)PDT DC015 Chapter 2 Computer System 2017/2018 (d)
PDT DC015 Chapter 2 Computer System 2017/2018 (d)
 
Data representation
Data representationData representation
Data representation
 
Digital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdfDigital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdf
 
ch2.pdf
ch2.pdfch2.pdf
ch2.pdf
 
digital-electronics.pptx
digital-electronics.pptxdigital-electronics.pptx
digital-electronics.pptx
 
Digital and Logic Design Chapter 1 binary_systems
Digital and Logic Design Chapter 1 binary_systemsDigital and Logic Design Chapter 1 binary_systems
Digital and Logic Design Chapter 1 binary_systems
 
2.1 data represent on cpu
2.1 data represent on cpu2.1 data represent on cpu
2.1 data represent on cpu
 
Chapter02.pdf
Chapter02.pdfChapter02.pdf
Chapter02.pdf
 
number system.ppt
number system.pptnumber system.ppt
number system.ppt
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptx
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptx
 

More from Nadeem Uddin

A corporation has 15 salesmen.pdf
A corporation has 15 salesmen.pdfA corporation has 15 salesmen.pdf
A corporation has 15 salesmen.pdfNadeem Uddin
 
A question paper is divided into three groups A.docx
A question paper is divided into three groups A.docxA question paper is divided into three groups A.docx
A question paper is divided into three groups A.docxNadeem Uddin
 
If on the average the rain falls on twelve days in every thirty day.docx
If on the average  the rain falls on twelve days in every thirty day.docxIf on the average  the rain falls on twelve days in every thirty day.docx
If on the average the rain falls on twelve days in every thirty day.docxNadeem Uddin
 
If on the average the rain falls on twelve days in every thirty days.docx
If on the average  the rain falls on twelve days in every thirty days.docxIf on the average  the rain falls on twelve days in every thirty days.docx
If on the average the rain falls on twelve days in every thirty days.docxNadeem Uddin
 
If A and B play a game in which the probability that A wins is (2).docx
If A and B play a game in which the probability that A wins is (2).docxIf A and B play a game in which the probability that A wins is (2).docx
If A and B play a game in which the probability that A wins is (2).docxNadeem Uddin
 
If A and B play a game in which the probability that A wins is.docx
If A and B play a game in which the probability that A wins is.docxIf A and B play a game in which the probability that A wins is.docx
If A and B play a game in which the probability that A wins is.docxNadeem Uddin
 
Suppose you are eating at cafeteria with two friends.docx
Suppose you are eating at cafeteria with two friends.docxSuppose you are eating at cafeteria with two friends.docx
Suppose you are eating at cafeteria with two friends.docxNadeem Uddin
 
Three men toss in succession for a prize to be given to the one.docx
Three men toss in succession for a prize to be given to the one.docxThree men toss in succession for a prize to be given to the one.docx
Three men toss in succession for a prize to be given to the one.docxNadeem Uddin
 
Two men A and B toss in succession for a prize to be given to the one.docx
Two men A and B toss in succession for a prize to be given to the one.docxTwo men A and B toss in succession for a prize to be given to the one.docx
Two men A and B toss in succession for a prize to be given to the one.docxNadeem Uddin
 
For the following venn diagram.docx
For the following venn diagram.docxFor the following venn diagram.docx
For the following venn diagram.docxNadeem Uddin
 
A group of 50 people was asked of three newspapers.docx
A group of 50 people was asked of three newspapers.docxA group of 50 people was asked of three newspapers.docx
A group of 50 people was asked of three newspapers.docxNadeem Uddin
 
In a survey of 100 participants.docx
In a survey of 100 participants.docxIn a survey of 100 participants.docx
In a survey of 100 participants.docxNadeem Uddin
 
Probability by venn diagram.docx
Probability by venn diagram.docxProbability by venn diagram.docx
Probability by venn diagram.docxNadeem Uddin
 
A bag contains 6 red and 4 black balls.docx
A bag contains 6 red and 4 black balls.docxA bag contains 6 red and 4 black balls.docx
A bag contains 6 red and 4 black balls.docxNadeem Uddin
 
Suppose that the probability is 0.8 that any given person will believe a tale...
Suppose that the probability is 0.8 that any given person will believe a tale...Suppose that the probability is 0.8 that any given person will believe a tale...
Suppose that the probability is 0.8 that any given person will believe a tale...Nadeem Uddin
 
A man draws 2 balls from a bag containing 3 white and 5 black balls.docx
A man draws 2 balls from a bag containing 3 white and 5 black balls.docxA man draws 2 balls from a bag containing 3 white and 5 black balls.docx
A man draws 2 balls from a bag containing 3 white and 5 black balls.docxNadeem Uddin
 
The probability that a candidate passes a certain professional examination is...
The probability that a candidate passes a certain professional examination is...The probability that a candidate passes a certain professional examination is...
The probability that a candidate passes a certain professional examination is...Nadeem Uddin
 
The probability that three men hit a target are respectively 1.docx
The probability that  three men hit a target are respectively 1.docxThe probability that  three men hit a target are respectively 1.docx
The probability that three men hit a target are respectively 1.docxNadeem Uddin
 
In a survey of a group of people the following results are obtained.docx
In a survey of a group of people the following results are obtained.docxIn a survey of a group of people the following results are obtained.docx
In a survey of a group of people the following results are obtained.docxNadeem Uddin
 
The probability that a student passes mathematics is 2.docx
The probability that a student passes mathematics is 2.docxThe probability that a student passes mathematics is 2.docx
The probability that a student passes mathematics is 2.docxNadeem Uddin
 

More from Nadeem Uddin (20)

A corporation has 15 salesmen.pdf
A corporation has 15 salesmen.pdfA corporation has 15 salesmen.pdf
A corporation has 15 salesmen.pdf
 
A question paper is divided into three groups A.docx
A question paper is divided into three groups A.docxA question paper is divided into three groups A.docx
A question paper is divided into three groups A.docx
 
If on the average the rain falls on twelve days in every thirty day.docx
If on the average  the rain falls on twelve days in every thirty day.docxIf on the average  the rain falls on twelve days in every thirty day.docx
If on the average the rain falls on twelve days in every thirty day.docx
 
If on the average the rain falls on twelve days in every thirty days.docx
If on the average  the rain falls on twelve days in every thirty days.docxIf on the average  the rain falls on twelve days in every thirty days.docx
If on the average the rain falls on twelve days in every thirty days.docx
 
If A and B play a game in which the probability that A wins is (2).docx
If A and B play a game in which the probability that A wins is (2).docxIf A and B play a game in which the probability that A wins is (2).docx
If A and B play a game in which the probability that A wins is (2).docx
 
If A and B play a game in which the probability that A wins is.docx
If A and B play a game in which the probability that A wins is.docxIf A and B play a game in which the probability that A wins is.docx
If A and B play a game in which the probability that A wins is.docx
 
Suppose you are eating at cafeteria with two friends.docx
Suppose you are eating at cafeteria with two friends.docxSuppose you are eating at cafeteria with two friends.docx
Suppose you are eating at cafeteria with two friends.docx
 
Three men toss in succession for a prize to be given to the one.docx
Three men toss in succession for a prize to be given to the one.docxThree men toss in succession for a prize to be given to the one.docx
Three men toss in succession for a prize to be given to the one.docx
 
Two men A and B toss in succession for a prize to be given to the one.docx
Two men A and B toss in succession for a prize to be given to the one.docxTwo men A and B toss in succession for a prize to be given to the one.docx
Two men A and B toss in succession for a prize to be given to the one.docx
 
For the following venn diagram.docx
For the following venn diagram.docxFor the following venn diagram.docx
For the following venn diagram.docx
 
A group of 50 people was asked of three newspapers.docx
A group of 50 people was asked of three newspapers.docxA group of 50 people was asked of three newspapers.docx
A group of 50 people was asked of three newspapers.docx
 
In a survey of 100 participants.docx
In a survey of 100 participants.docxIn a survey of 100 participants.docx
In a survey of 100 participants.docx
 
Probability by venn diagram.docx
Probability by venn diagram.docxProbability by venn diagram.docx
Probability by venn diagram.docx
 
A bag contains 6 red and 4 black balls.docx
A bag contains 6 red and 4 black balls.docxA bag contains 6 red and 4 black balls.docx
A bag contains 6 red and 4 black balls.docx
 
Suppose that the probability is 0.8 that any given person will believe a tale...
Suppose that the probability is 0.8 that any given person will believe a tale...Suppose that the probability is 0.8 that any given person will believe a tale...
Suppose that the probability is 0.8 that any given person will believe a tale...
 
A man draws 2 balls from a bag containing 3 white and 5 black balls.docx
A man draws 2 balls from a bag containing 3 white and 5 black balls.docxA man draws 2 balls from a bag containing 3 white and 5 black balls.docx
A man draws 2 balls from a bag containing 3 white and 5 black balls.docx
 
The probability that a candidate passes a certain professional examination is...
The probability that a candidate passes a certain professional examination is...The probability that a candidate passes a certain professional examination is...
The probability that a candidate passes a certain professional examination is...
 
The probability that three men hit a target are respectively 1.docx
The probability that  three men hit a target are respectively 1.docxThe probability that  three men hit a target are respectively 1.docx
The probability that three men hit a target are respectively 1.docx
 
In a survey of a group of people the following results are obtained.docx
In a survey of a group of people the following results are obtained.docxIn a survey of a group of people the following results are obtained.docx
In a survey of a group of people the following results are obtained.docx
 
The probability that a student passes mathematics is 2.docx
The probability that a student passes mathematics is 2.docxThe probability that a student passes mathematics is 2.docx
The probability that a student passes mathematics is 2.docx
 

Recently uploaded

Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerunnathinaik
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentInMediaRes1
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...jaredbarbolino94
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 

Recently uploaded (20)

Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developer
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media Component
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 

Miscellaneous examples of binary , quinary and octonary numbers (2)

  • 1.
  • 2. BY: ASSOCIATE PROFESSOR NADEEM UDDIN Miscellaneous EXAMPLES OF Binary ,Quinary and Octonary numbers Example-36: Convert ( 324 )5 into binary number. SOLUTION: First step is to convert ( 324 )5 into decimal number 3 2 4 = 3 x 52 + 2 x 51 + 4 x 50 3 2 4 = 3 x 25 + 2 x 5 + 4 x 1 3 2 4 = 75 + 10 + 4 (32 4)5 = ( 89 )10 Now convert ( 89 )10 into binary number (324 )5 = (1011001 )2 2 89 2 44 1 2 22 0 2 11 0 2 5 1 2 2 1 1 0
  • 3. Example-37: Convert ( 345 )8 into binary number. SOLUTION: First step is to convert ( 345 )8 into decimal number ( 345 )8 = 3 x 82 + 4 x 81 + 5 x 80 ( 345 )8 = 3 x 64 + 4 x 8 + 5 x 1 ( 345 )8 = 192 + 32 + 5 ( 345 )8 = ( 229 )10 Now convert ( 229 )10 into binary number ( 345 )8 = (11100101 )2 Example-38: Convert (1011001 )2 into Quinary number. SOLUTION: First step is to convert (1011001 )2 into decimal number (1011001 )2 =1 x 26 + 0 x 25 + 1 x 24 + 1 x 23 + 0 x 22 + 0 x 21 + 1x20 (1011001 )2 =1 x 64 + 0 x 32 + 1 x 16 + 1 x 8 + 0 x 4 + 0 x 2 + 1 x 1 (1011001 )2 = 64 + 0 + 16 + 8 + 0 + 0 + 1 (1011001 )2 = (89)10 2 229 2 114 1 2 57 0 2 28 1 2 14 0 2 7 0 2 3 1 1 1
  • 4. Now convert ( 89 )10 into Quinary number (1011001 )2 = (324 )5 Example-39: Convert (11100101 )2 into Octal number. SOLUTION: First step is to convert (11100101 )2 into decimal number (11100101 )2 = 1 x 27 +1 x 26 + 1 x 25 + 0 x 24 + 0 x 23 + 1 x 22 + 0 x 21 + 1x20 (11100101 )2 =1 x 128 + 1x 64 + 1 x 32 + 0 x 16 + 0 x 8 + 1 x 4 + 0 x 2 + 1 x 1 (11100101 )2 = 128 + 64 + 32 + 0 + 0 + 4 + 0 + 1 (11100101 )2 = (229)10 Now convert ( 229 )10 into Octal number (11100101 )2 = ( 345 )8 5 89 5 17 4 3 2 8 229 8 28 5 3 4
  • 5. Example-40: Convert (313 )8 into Quinary number. SOLUTION: First step is to convert (313 )8 into decimal number (313 )8 = 3 x 82 + 1 x 81 + 3 x 80 (313 )8 =3 x 64 + 1 x 8 + 3 x 1 (313 )8 = 192 + 8 + 3 (313 )8 = (203)10 Now convert ( 203 )10 into Quinary number (313 )8 = (1303 )5 Example-41: Convert (432 )5 into Octal number. SOLUTION: First step is to convert (432 )5 into decimal number (432 )5 = 4 x 52 + 3 x 51 +2 x50 (432 )5 = 4 x 25 + 3 x 5 + 2 x 1 (432 )5 = 100 + 15 + 2 (432 )5 = (117 )10 5 203 5 40 3 5 8 0 1 3
  • 6. Now convert (117 )10 into Octal number (432)5 = (165 )8 TABLE TRICK-1 Octal Number Binary Number I II III IV 0 0 0 0 1 0 0 1 2 0 1 0 3 0 1 1 4 1 O 0 5 1 O 1 6 1 1 0 7 1 1 1 Step.1 Put all octal numbers (0 to 7) in the I column. Step.2 Put 4 zeros and 4 ones in the II column. Step.3 Keep on putting 2 zeros and 2 ones in the III column. Step.4 Keep on putting zero and one in the IV column. DIRECT METHOD Example-42: Convert (345 )8 into binary number by using TABLE TRICK-1. SOLUTION: From Table 3 = 011 4 = 100 5 = 101 In raw one write the octal number right to left. In raw two write the binary number right to left. 3 4 5 011 100 101 Therefore (345 )8 = (11100101 )2 8 117 8 14 5 1 6
  • 7. Example-43: Convert (11100101 )2 into Octal number by using TABLE TRICK-1. SOLUTION: From Table Break binary numbers into 3 digits from the right to left Binary number 011 100 101 Octal number 3 4 5 Therefore (11100101 )2 = (345 )8 Example-44: Convert (123 )10 into binary number. SOLUTION: (123)10 = (1111011)2 Example-45: Convert (123 )10 into binary number by Trick method. SOLUTION: Step.1In this method divide the number by 2 and ignore the remainder. Step.2Write the divided number from right to left. Step.3write 1 for odd number and 0 for even number. 1 3 7 15 30 61 123 1 1 1 1 0 1 1 Hence the answer is (123)10 = (1111011)2 2 123 2 61 1 2 30 1 2 15 0 2 7 1 2 3 1 1 1
  • 8. Example-46 (a): Convert (1111011)2 into decimal number SOLUTION: Binary Number 1 1 1 1 0 1 1 Place value 64 32 16 8 4 2 1 Decimal Number 64 32 16 8 0 2 1 (123)10 In raw one write the binary numbers right to left. In raw two write the place value of binary numbers right to left. In raw three multiply raw one and raw two you can get the deimal number by adding all the values in raw three. Example-46 (b): Convert (432)5 into decimal number SOLUTION: Penta Number 4 3 2 Place value 25 5 1 Decimal Number 100 15 2 (117)10 In raw one write the penta numbers right to left. In raw two write the place value of penta numbers right to left. In raw three multiply raw one and raw two you can get the deimal number by adding all the values in raw three.
  • 9. Example-46 (c): Convert (313)8 into decimal number SOLUTION: Octal Number 3 1 3 Place value 64 8 1 Decimal Number 192 8 3 (203)10 In raw one write the Octal numbers right to left. In raw two write the place value of octal numbers right to left. In raw three multiply raw one and raw two you can get the deimal number by adding all the values in raw three.