SlideShare a Scribd company logo
1 of 53
Download to read offline
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
1.
NUMBER
SYSTEM
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Contents:-
❑ Definition
❑ Types of Number System
❑ Conversion among Bases
❑ Decimal To Binary Conversion
❑ Binary To Decimal Conversion
❑ Computer Arithmetic or
Binary Arithmetic
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Before moving forward let me
share something…
Have you ever
wonder students
how man in pre
historic time’s use
numbers for
counting.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Let me tell there
were animals they
killed, days and
night. But that not
important, what
important is that in
those time man used
his finger to
counting or made
marking on the
bones.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
But he could only
go up to 10 on his
hands or up to a
certain limit
using the bones.
For larger numbers
there were no
enough fingers to
use.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
So man devised
figures or symbols
representing
numbers and create
a group of symbols
when there was lot to
count.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
So here we go to learn
about-
“Number System”
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Number system
is a well defined
set of symbols or
digits used to
represent
quantity.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Definition:-
Which number System do we use in
our day to day life?
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Ans. Decimal Number System
Types of Number System
On the basis of the symbols/digits
used in a number system, the
Number System divided into 4 Types.
They are…
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Number
System
Decimal
Base is 10
(0 - 9)
Binary
Base is 2
(0 - 1)
Octal
Base is 8
(0 - 7)
Hexadecimal
Base is 16
(0 - 9 and A – F)
Note- The BASE or RADIX of a number system is the number of symbols/digits used in it.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Aryabhat was Indian’s
greatest mathematician and astronomer.
He introduced the concept of Zero(0).
Which number System has ‘8’ as its
base?
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Ans. Octal Number System
Decimal number system is a well defined set
of 10 symbols or digits used to represent
quantity.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Decimal number system consist of 10 digits,
i.e. 0 to 9 with the base 10.
Digits are -
Binary number system is a well defined set of
2 symbols or digits used to represent
quantity.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Binary number system consist of 2 digits,
i.e. 0 and 1 with the base 2.
Digits are -
Octal number system is a well defined set of 8
symbols or digits used to represent quantity.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Octal number system consist of 8 digits,
i.e. 0 to 7 with the base 8.
Digits are -
Hexadecimal number system is a well defined
set of 16 symbols or digits used to represent
quantity.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Hexadecimal number system consist of 16 digits,
i.e. 0 to 9 and A to F with the base 16.
Digits are -
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Conversion among Bases
The possibilities are:-
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Binary
Octal
Decimal
Hexadecimal
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
There are two method:-
Repeated “Division by 2”
Repeated “Find and Subtract”
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Conversion Of Decimal into Binary Number System
 Write down the decimal number and divide it by 2 (Base of
Binary Number).
 Write the remainder on the right hand side.
 Divide the result (quotient) of the division by 2 and again
write down the remainder.
 Repeat the dividing process and writing down remainders
until the quotient is 0(zero).
 Write the series of remainder from bottom(Most
Significant Digit) to up (Least Significant Digit). This is the
binary equivalent of the decimal number.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Method 1:- Conversion Of Decimal into Binary
Number System
 Multiply each binary number with its positional value,
which is in terms of power of 2, starting from the
extreme right digit.
 Increase the power one by one, starting from 0(zero),
keeping the base fixed as 2.
 Calculate the sum of all the products to get the
decimal number.
 Write the answer along with its base subscript.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Conversion Of Binary into Decimal Number System
Activity Section
 Convert the following Decimal numbers into Binary
numbers-
A) 68
B) 51
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
1 1 0 0 1 1
1 0 0 0 1 0 0
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
For Ex. (25)10 = (?)2
252
6
3
1
12
0
1
0
1
1
2
2
2
2
0
LSD
MSD
Therefore, (25)10 = (11001)2
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
For Ex. (11001)2 = (?)10
1 1 0 0 1
1 x 20 =
0 x 21 =
0 x 22 =
1 x 23 =
1 x 24 =
1 x 1 =
1 x 8 =
1 x 16 =
0 x 4 =
0 x 2 =
1
16
8
0
0
25
Therefore, (11001)2 = (25)10
 Multiply each octal number with its positional value,
which is in terms of power of 8, starting from the
extreme right digit.
 Increase the power one by one, starting from 0(zero),
keeping the base fixed as 8.
 Calculate the sum of all the products to get the
decimal number.
 Write the answer along with its base subscript.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Conversion Of Octal into Decimal Number System
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
For Ex. (345)8 = (?)10
3 4 5
5 x 80 =
4 x 81 =
3 x 82 =
5 x 1 =
3 x 64 =
4 x 8 =
5
192
32
229
Therefore, (345)8 = (229)10
 Multiply each hexadecimal number with its positional
value, which is in terms of power of 16, starting from
the extreme right digit.
 Increase the power one by one, starting from 0(zero),
keeping the base fixed as 16.
 Calculate the sum of all the products to get the
decimal number.
 Write the answer along with its base subscript.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Conversion Of Hexadecimal into Decimal Number
System
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
For Ex. (345)16 = (?)10
3 4 5
5 x 160 =
4 x 161 =
3 x 162 =
5 x 1 =
3 x 256 =
4 x 16 =
5
768
64
837
Therefore, (345)16 = (837)10
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Decimal
To
Binary
Divide by 2
Octal
Divide by 8
Hexadecimal
Divide by 16
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Qus : How would you find whether
a number is represented in
Decimal /Binary /Octal or
Hexadecimal number system?
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Ans :- With the help of Base or Radix
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
As a computer understands only the binary code,
so the data entered into the computer by the user is
converted into binary code for processing.
This processing may involve various kinds of
arithmetic operations, such as addition, subtraction,
multiplication, division on the binary numbers.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Binary addition is same as we perform addition with decimal numbers.
Note- While adding 1 + 1, the output will be 10, where 0 is written under the same
column and carry over 1 is shifted to the next place.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Ex. -
11 0
1 1 0 + 1 1 = ?
11+
10
1
1 0
Carry
So, 1 1 0 + 1 1 = 1 0 0 1
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Note- The number is borrowed when 1 is subtracted from 0 (10-1=1).
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Ex. -
11 0
(1 1 0)2 – (1 1)2 = ?
11-
11
1
0
Borrow
So, (1 1 0)2 – (1 1)2 = (1 1)2
1
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Binary multiplication is same as that of the decimal numbers.
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Ex. - (1 1 0)2 – (1 1)2 = ?
1 1
1
0
1x
11
11 0
0
01001
So, (1 1 0)2 – (1 1)2 = 1 0 0 1 0
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Binary division is same as that of the decimal numbers.
1 1 01 0
Ex. Compute 1 1 0 ÷ 1 0
Divisor
Remainder
Quotient
Dividend
1
1 0
0
1 0
1
1 0
0 0
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
2
Decimal
8
10
Binary
Hexadecimal
0
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
F
F
F
F
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
Similar to ‘Binary to Decimal conversion. The only difference
is the change of base.
The number is borrowed when 1 is subtracted from 0
i.e. 1 0 – 1 = 1
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)

More Related Content

What's hot

A reminder on multiplying and dividing by powers of 10
A reminder on multiplying and dividing by powers of 10A reminder on multiplying and dividing by powers of 10
A reminder on multiplying and dividing by powers of 10Sara Shiel
 
Lesson 7 multiplying decimals by 10, 100, 1000, 10 000
Lesson 7   multiplying decimals by 10, 100, 1000, 10 000Lesson 7   multiplying decimals by 10, 100, 1000, 10 000
Lesson 7 multiplying decimals by 10, 100, 1000, 10 000chin1440
 
Multiply And Divide Decimals By Powers Of 10
Multiply And Divide Decimals By Powers Of 10Multiply And Divide Decimals By Powers Of 10
Multiply And Divide Decimals By Powers Of 10Brooke Young
 
3 the numbers 101 3,000,000
3 the numbers 101 3,000,0003 the numbers 101 3,000,000
3 the numbers 101 3,000,000Laura Riddle
 
Section 1.1 Real Numbers And Number Operations A
Section 1.1 Real Numbers And Number Operations ASection 1.1 Real Numbers And Number Operations A
Section 1.1 Real Numbers And Number Operations ACarol Dobson
 
Multiply by 10, 100, 1000, etc...
Multiply by 10, 100, 1000, etc...Multiply by 10, 100, 1000, etc...
Multiply by 10, 100, 1000, etc...Brooke Young
 

What's hot (7)

A reminder on multiplying and dividing by powers of 10
A reminder on multiplying and dividing by powers of 10A reminder on multiplying and dividing by powers of 10
A reminder on multiplying and dividing by powers of 10
 
Lesson 7 multiplying decimals by 10, 100, 1000, 10 000
Lesson 7   multiplying decimals by 10, 100, 1000, 10 000Lesson 7   multiplying decimals by 10, 100, 1000, 10 000
Lesson 7 multiplying decimals by 10, 100, 1000, 10 000
 
Multiply And Divide Decimals By Powers Of 10
Multiply And Divide Decimals By Powers Of 10Multiply And Divide Decimals By Powers Of 10
Multiply And Divide Decimals By Powers Of 10
 
3 the numbers 101 3,000,000
3 the numbers 101 3,000,0003 the numbers 101 3,000,000
3 the numbers 101 3,000,000
 
Section 1.1 Real Numbers And Number Operations A
Section 1.1 Real Numbers And Number Operations ASection 1.1 Real Numbers And Number Operations A
Section 1.1 Real Numbers And Number Operations A
 
Multiply by 10, 100, 1000, etc...
Multiply by 10, 100, 1000, etc...Multiply by 10, 100, 1000, etc...
Multiply by 10, 100, 1000, etc...
 
Chapter 1
Chapter 1Chapter 1
Chapter 1
 

Similar to Number system - Amresh Tiwari

November 5, 2015
November 5, 2015November 5, 2015
November 5, 2015khyps13
 
Data repersentation.
Data repersentation.Data repersentation.
Data repersentation.Ritesh Saini
 
silo.tips_-chapter-1-the-binary-number-system-11-why-binary.pdf
silo.tips_-chapter-1-the-binary-number-system-11-why-binary.pdfsilo.tips_-chapter-1-the-binary-number-system-11-why-binary.pdf
silo.tips_-chapter-1-the-binary-number-system-11-why-binary.pdfssuserf7cd2b
 
01 number systems-students
01 number systems-students01 number systems-students
01 number systems-studentsmeomeobsu
 
Algebra 101 real numbers and the real number line
Algebra 101 real numbers and the real number lineAlgebra 101 real numbers and the real number line
Algebra 101 real numbers and the real number lineChloeDaniel2
 
Number system.pdf
Number system.pdfNumber system.pdf
Number system.pdfDeepuGuna
 
Formulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariFormulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariAmresh Tiwari
 
Lesson 1 basic theory of information
Lesson 1   basic theory of informationLesson 1   basic theory of information
Lesson 1 basic theory of informationRoma Kimberly Erolin
 
Lesson 1 basic theory of information
Lesson 1   basic theory of informationLesson 1   basic theory of information
Lesson 1 basic theory of informationRoma Kimberly Erolin
 
fullhist6-23-05.pdf
fullhist6-23-05.pdffullhist6-23-05.pdf
fullhist6-23-05.pdfreginegraza
 

Similar to Number system - Amresh Tiwari (20)

Number+system (1)
Number+system (1)Number+system (1)
Number+system (1)
 
November 5, 2015
November 5, 2015November 5, 2015
November 5, 2015
 
Number system part 1
Number  system part 1Number  system part 1
Number system part 1
 
Data repersentation.
Data repersentation.Data repersentation.
Data repersentation.
 
Binary overview
Binary overviewBinary overview
Binary overview
 
silo.tips_-chapter-1-the-binary-number-system-11-why-binary.pdf
silo.tips_-chapter-1-the-binary-number-system-11-why-binary.pdfsilo.tips_-chapter-1-the-binary-number-system-11-why-binary.pdf
silo.tips_-chapter-1-the-binary-number-system-11-why-binary.pdf
 
01 number systems-students
01 number systems-students01 number systems-students
01 number systems-students
 
Algebra 101 real numbers and the real number line
Algebra 101 real numbers and the real number lineAlgebra 101 real numbers and the real number line
Algebra 101 real numbers and the real number line
 
Basic of number system
Basic of number systemBasic of number system
Basic of number system
 
numbers.pdf
numbers.pdfnumbers.pdf
numbers.pdf
 
Tens and Ones
Tens and OnesTens and Ones
Tens and Ones
 
Number system.pdf
Number system.pdfNumber system.pdf
Number system.pdf
 
Number System
Number SystemNumber System
Number System
 
Formulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariFormulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh Tiwari
 
Lesson 1 basic theory of information
Lesson 1   basic theory of informationLesson 1   basic theory of information
Lesson 1 basic theory of information
 
Lesson 1 basic theory of information
Lesson 1   basic theory of informationLesson 1   basic theory of information
Lesson 1 basic theory of information
 
Number system
Number systemNumber system
Number system
 
fullhist6-23-05.pdf
fullhist6-23-05.pdffullhist6-23-05.pdf
fullhist6-23-05.pdf
 
Number system
Number systemNumber system
Number system
 
Number systems
Number systemsNumber systems
Number systems
 

More from Amresh Tiwari

Internet and its Applications - By Amresh Tiwari (SGEI)
Internet and its Applications - By Amresh Tiwari (SGEI)Internet and its Applications - By Amresh Tiwari (SGEI)
Internet and its Applications - By Amresh Tiwari (SGEI)Amresh Tiwari
 
Basic computer operation (windows os) - Amresh Tiwari
Basic computer operation (windows os) - Amresh TiwariBasic computer operation (windows os) - Amresh Tiwari
Basic computer operation (windows os) - Amresh TiwariAmresh Tiwari
 
Review python - By Amresh Tiwari
Review python - By Amresh TiwariReview python - By Amresh Tiwari
Review python - By Amresh TiwariAmresh Tiwari
 
Digital de addiction - By Amresh Tiwari
Digital de addiction - By Amresh TiwariDigital de addiction - By Amresh Tiwari
Digital de addiction - By Amresh TiwariAmresh Tiwari
 
Networking concepts by Amresh Tiwari
Networking concepts   by Amresh TiwariNetworking concepts   by Amresh Tiwari
Networking concepts by Amresh TiwariAmresh Tiwari
 

More from Amresh Tiwari (6)

Digital documentation
Digital documentationDigital documentation
Digital documentation
 
Internet and its Applications - By Amresh Tiwari (SGEI)
Internet and its Applications - By Amresh Tiwari (SGEI)Internet and its Applications - By Amresh Tiwari (SGEI)
Internet and its Applications - By Amresh Tiwari (SGEI)
 
Basic computer operation (windows os) - Amresh Tiwari
Basic computer operation (windows os) - Amresh TiwariBasic computer operation (windows os) - Amresh Tiwari
Basic computer operation (windows os) - Amresh Tiwari
 
Review python - By Amresh Tiwari
Review python - By Amresh TiwariReview python - By Amresh Tiwari
Review python - By Amresh Tiwari
 
Digital de addiction - By Amresh Tiwari
Digital de addiction - By Amresh TiwariDigital de addiction - By Amresh Tiwari
Digital de addiction - By Amresh Tiwari
 
Networking concepts by Amresh Tiwari
Networking concepts   by Amresh TiwariNetworking concepts   by Amresh Tiwari
Networking concepts by Amresh Tiwari
 

Recently uploaded

Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 

Recently uploaded (20)

Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 

Number system - Amresh Tiwari

  • 1. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 2. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 3. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 4. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 5. 1. NUMBER SYSTEM By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 6. Contents:- ❑ Definition ❑ Types of Number System ❑ Conversion among Bases ❑ Decimal To Binary Conversion ❑ Binary To Decimal Conversion ❑ Computer Arithmetic or Binary Arithmetic By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 7. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Before moving forward let me share something…
  • 8. Have you ever wonder students how man in pre historic time’s use numbers for counting. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 9. Let me tell there were animals they killed, days and night. But that not important, what important is that in those time man used his finger to counting or made marking on the bones. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 10. But he could only go up to 10 on his hands or up to a certain limit using the bones. For larger numbers there were no enough fingers to use. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 11. So man devised figures or symbols representing numbers and create a group of symbols when there was lot to count. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 12. So here we go to learn about- “Number System” By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 13. Number system is a well defined set of symbols or digits used to represent quantity. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Definition:-
  • 14. Which number System do we use in our day to day life? By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Ans. Decimal Number System
  • 15. Types of Number System On the basis of the symbols/digits used in a number system, the Number System divided into 4 Types. They are… By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 16. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Number System Decimal Base is 10 (0 - 9) Binary Base is 2 (0 - 1) Octal Base is 8 (0 - 7) Hexadecimal Base is 16 (0 - 9 and A – F) Note- The BASE or RADIX of a number system is the number of symbols/digits used in it.
  • 17. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Aryabhat was Indian’s greatest mathematician and astronomer. He introduced the concept of Zero(0).
  • 18. Which number System has ‘8’ as its base? By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Ans. Octal Number System
  • 19. Decimal number system is a well defined set of 10 symbols or digits used to represent quantity. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Decimal number system consist of 10 digits, i.e. 0 to 9 with the base 10. Digits are -
  • 20. Binary number system is a well defined set of 2 symbols or digits used to represent quantity. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Binary number system consist of 2 digits, i.e. 0 and 1 with the base 2. Digits are -
  • 21. Octal number system is a well defined set of 8 symbols or digits used to represent quantity. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Octal number system consist of 8 digits, i.e. 0 to 7 with the base 8. Digits are -
  • 22. Hexadecimal number system is a well defined set of 16 symbols or digits used to represent quantity. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Hexadecimal number system consist of 16 digits, i.e. 0 to 9 and A to F with the base 16. Digits are -
  • 23. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 24. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 25. Conversion among Bases The possibilities are:- By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 27. There are two method:- Repeated “Division by 2” Repeated “Find and Subtract” By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Conversion Of Decimal into Binary Number System
  • 28.  Write down the decimal number and divide it by 2 (Base of Binary Number).  Write the remainder on the right hand side.  Divide the result (quotient) of the division by 2 and again write down the remainder.  Repeat the dividing process and writing down remainders until the quotient is 0(zero).  Write the series of remainder from bottom(Most Significant Digit) to up (Least Significant Digit). This is the binary equivalent of the decimal number. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Method 1:- Conversion Of Decimal into Binary Number System
  • 29.  Multiply each binary number with its positional value, which is in terms of power of 2, starting from the extreme right digit.  Increase the power one by one, starting from 0(zero), keeping the base fixed as 2.  Calculate the sum of all the products to get the decimal number.  Write the answer along with its base subscript. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Conversion Of Binary into Decimal Number System
  • 30. Activity Section  Convert the following Decimal numbers into Binary numbers- A) 68 B) 51 By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) 1 1 0 0 1 1 1 0 0 0 1 0 0
  • 31. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) For Ex. (25)10 = (?)2 252 6 3 1 12 0 1 0 1 1 2 2 2 2 0 LSD MSD Therefore, (25)10 = (11001)2
  • 32. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) For Ex. (11001)2 = (?)10 1 1 0 0 1 1 x 20 = 0 x 21 = 0 x 22 = 1 x 23 = 1 x 24 = 1 x 1 = 1 x 8 = 1 x 16 = 0 x 4 = 0 x 2 = 1 16 8 0 0 25 Therefore, (11001)2 = (25)10
  • 33.  Multiply each octal number with its positional value, which is in terms of power of 8, starting from the extreme right digit.  Increase the power one by one, starting from 0(zero), keeping the base fixed as 8.  Calculate the sum of all the products to get the decimal number.  Write the answer along with its base subscript. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Conversion Of Octal into Decimal Number System
  • 34. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) For Ex. (345)8 = (?)10 3 4 5 5 x 80 = 4 x 81 = 3 x 82 = 5 x 1 = 3 x 64 = 4 x 8 = 5 192 32 229 Therefore, (345)8 = (229)10
  • 35.  Multiply each hexadecimal number with its positional value, which is in terms of power of 16, starting from the extreme right digit.  Increase the power one by one, starting from 0(zero), keeping the base fixed as 16.  Calculate the sum of all the products to get the decimal number.  Write the answer along with its base subscript. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Conversion Of Hexadecimal into Decimal Number System
  • 36. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) For Ex. (345)16 = (?)10 3 4 5 5 x 160 = 4 x 161 = 3 x 162 = 5 x 1 = 3 x 256 = 4 x 16 = 5 768 64 837 Therefore, (345)16 = (837)10
  • 37. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 38. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Decimal To Binary Divide by 2 Octal Divide by 8 Hexadecimal Divide by 16
  • 39. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 40. Qus : How would you find whether a number is represented in Decimal /Binary /Octal or Hexadecimal number system? By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Ans :- With the help of Base or Radix
  • 41. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) As a computer understands only the binary code, so the data entered into the computer by the user is converted into binary code for processing. This processing may involve various kinds of arithmetic operations, such as addition, subtraction, multiplication, division on the binary numbers.
  • 42. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Binary addition is same as we perform addition with decimal numbers. Note- While adding 1 + 1, the output will be 10, where 0 is written under the same column and carry over 1 is shifted to the next place.
  • 43. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Ex. - 11 0 1 1 0 + 1 1 = ? 11+ 10 1 1 0 Carry So, 1 1 0 + 1 1 = 1 0 0 1
  • 44. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Note- The number is borrowed when 1 is subtracted from 0 (10-1=1).
  • 45. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Ex. - 11 0 (1 1 0)2 – (1 1)2 = ? 11- 11 1 0 Borrow So, (1 1 0)2 – (1 1)2 = (1 1)2 1
  • 46. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Binary multiplication is same as that of the decimal numbers.
  • 47. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Ex. - (1 1 0)2 – (1 1)2 = ? 1 1 1 0 1x 11 11 0 0 01001 So, (1 1 0)2 – (1 1)2 = 1 0 0 1 0
  • 48. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Binary division is same as that of the decimal numbers. 1 1 01 0 Ex. Compute 1 1 0 ÷ 1 0 Divisor Remainder Quotient Dividend 1 1 0 0 1 0 1 1 0 0 0
  • 49. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) 2 Decimal 8 10 Binary Hexadecimal 0
  • 50. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) F F F F
  • 51. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel) Similar to ‘Binary to Decimal conversion. The only difference is the change of base. The number is borrowed when 1 is subtracted from 0 i.e. 1 0 – 1 = 1
  • 52. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)
  • 53. By-Amresh Tiwari, Sunbeam Suncity (School & Hostel)