SlideShare a Scribd company logo
1 of 20
A set of values used to 
represent different quantities. 
Examples: 
Number of students in a Class or number of 
viewers watching a certain TV program. 
It includes audio, graphics, video, text, and 
numbers. 
Base or Radix are the total number of digits 
used in a number system.
Some important number systems 
are as follows: 
 DECIMAL number system 
 BINARY number system 
 OCTAL number system 
 HEXADECIMAL number system 
The decimal number system is used in general. 
However, the computers use binary number , octal, and 
hexadecimal number systems.
BINARY NUMBER SYSTEM
DECIMAL NUMBER SYSTEM 
 It is the most widely used number system. 
 It consists of ten numbers from 0 to 9. 
 It’s base is 10. 
Examples: 
1. 145010 
2. 24210 
3. 1000002410
OCTAL NUMBER SYSTEM 
 It is the shorthand representation of binary numbers. 
 Any digit in this system is always less than 8. 
 It consists of eight digits from 0 to 7. 
 It’s base is 8. 
Examples: 
1. 56568 
2. 1248 
3. 3788
HEXADECIMAL NUMBER 
SYSTEM 
 It consists of 16 digits from 0 to 9 and A to F. 
 The alphabets A to F represent decimal numbers 10 to 
15. 
 It’s base is 16. 
Examples: 
1. 29716 
2. BA5916 
3. BACA16
CONVERSION FOR HEXADECIMAL 
DECIMAL HEXADECIMAL 
1 0001 
2 0010 
3 0011 
4 0100 
5 0101 
6 0110 
7 0111 
8 1000 
9 1001 
10-A 1001 
11-B 1011 
12-C 1100 
13-D 1101 
14-E 1110 
15-F 1111
STEP BINARY NUMBER DECIMAL NUMBER 
Step 1 111012 ((1x24)+(1x23)+(1x22)+ 
(0x21)+(1x20)) 10 
Step 2 111012 (16+8+4+0+1) 10 
Step 3 111012 2910 
1.Determine the column (positional) value of each digit (this depends 
on the position of the digit and the base of the number system.) 
2.Multiply the obtained column values (in step 1) by the digits in the 
corresponding columns. 
3.Sum the products calculated in step 2. The total is the equivalent 
value in decimal.
BINARY TO OCTAL 
STEPS: 
1.Divide the binary digits into groups of three (starting left to 
right). 
2.Convert each group of three binary digits to one octal digit. 
Add a (0) Zero digit to complete 
the 3 digits group. 
STEP BINARY NUMBER OCTAL NUMBER 
Step 1 101012 010 101 
Step 2 101012 28 58 
Step 3 101012 258
BINARY TO HEXADECIMAL 
STEPS: 
1.Divide the binary digits into groups of four (starting from the 
right). 
2.Convert each group of four binary digits to one hexadecimal 
symbol. 
Add two(2) Zero(0) digits to complete the four 
(4) digits group. 
STEP BINARY NUMBER 
H10101EXADECIMAL 
NUMBER 
Step 1 101012 0001 0101 
Step 2 101012 110 510 
Step 3 101012 1516
DECIMAL TO BINARY 
STEP OPERATION RESULT REMAINDER 
Step 1 29/2 14 1 
Step 2 14/2 7 0 
Step 3 7/2 3 1 
Step 4 3/2 1 1 
Step 5 1/2 0 1 
1.Divide the decimal number to be converted by the value of the new base. 
2.Get the remainder from step 1 as the rightmost digit (least significant digit) of 
new base number. 
3.Divide the quotient of the previous divide by the new base. 
4.Record the remainder from step 3 as the next digit (to the left) of the new 
base number.
DECIMAL TO OCTAL 
Steps: 
1.Divide decimal number by 8. Treat the division as an integer division. 
2.Write down the remainder (in octal). To get the remainder, multiply the 
result by 8 and subtract it to the decimal number/result. 
3.Repeat step 1-3 until the result is zero. 
4.The octal value is the digit sequence of the remainders from the last 
to first. 
DIVISION RESULT REMAINDER 
250/8 31 2 
31/8 3 7 
3/8 0 3 
 25010 = 3728
DECIMAL TO HEXADECIMAL 
Steps: 
1.Divide decimal number by 16. Treat the division as an integer division. 
2.Write down the remainder (in hexadecimal). 
3.Repeat step 1-3 until the result is zero. 
4.The hex value is the digit sequence of the remainders from the last to first. 
DIVISION RESULT REMAINDER (in HEX) 
256/16 16 0 
16/16 1 0 
1/16 0 1 
 25610 =10016
OCTAL TO BINARY 
Steps: 
1.Convert each octal digit to a 3 digit binary number (the octal digits 
may be treated as decimal for this conversion). 
2.Combine all the resulting binary groups (of 3 digits each) into a 
single binary number. 
STEP OCTAL NUMBER BINARY NUMBER 
Step 1 258 210 510 
Step 2 258 0102 1012 
Step 3 258 0101012 
 258 = 0101012
OCTAL TO DECIMAL 
Steps: 
1.Start the decimal result at 0. 
2.Remove the most significant octal digit (leftmost) and add it to the 
result. 
3.If all octal digits have been removed, you’re done. Stop. 
4.Otherwise, multiply the result by 8. 
5.Go to step 2. 
Octal Digits Operation 
Decimal 
Result 
Operation 
Decimal 
Result 
345 +3 3 x8 24 
45 +4 28 x8 224 
5 +5 229 done 
3458= (3*82)+(4*81)+(5*80) = (3*64)+(4*8)+(5*1) = 22910
HEXADECIMAL TO BINARY 
Steps: 
1.Convert each hexadecimal digit to a 4 digit binary number (the 
hexadecimal digits may be treated as decimal for this conversion). 
2.Combine all the resulting binary groups (of 4 digits each) into a 
single binary number. 
STEP 
HEXADECIMAL 
NUMBER 
BINARY NUMBER 
Step 1 15 12 52 
Step 2 15 00012 01012 
Step 3 15 000101012 
 1516 = 000101012
HEXADECIMAL TO DECIMAL 
Steps: 
1.Get the last digit of the hex number, call this digit the Current Digit. 
2.Make a variable, let’s call it power. Set the value to Zero. 
3.Multiply the current digit with (16^power). Store the result. 
4.Increment power by one. 
5.Set the current digit to the previous digit of the Hex Number. 
6.Repeat from step 3 until all digits have been multiplied. 
7.Sum the result of step 3 to get the answer Number. 
MULTIPLICATION RESULT 
9x(16^0) 9 
8x(16^1) 128 
5x(16^2) 1280 
Answer 1417 
 58916 = 141710
WORKING COMMITTEE 
CHERRY MARIE GALAUS 
ROSEANN FORONDA 
CRISTINA FABROS 
CRISTINA FABROS 
MICAH HADASSAH GUILLERMO 
DANILO PALTENG 
JANUEL ANTONIO 
MICAH HADASSAH GUILLERMO 
DANILO PALTENG 
JANUEL ANTONIO 
BS ACCOUNTANCY 1-2

More Related Content

What's hot

Floating point representation
Floating point representationFloating point representation
Floating point representationmissstevenson01
 
Introduction number systems and conversion
 Introduction number systems and conversion Introduction number systems and conversion
Introduction number systems and conversionkanyuma jitjumnong
 
Number system....
Number system....Number system....
Number system....mshoaib15
 
Binary number system
Binary number systemBinary number system
Binary number systemNadeem Uddin
 
Introduction to the Binary Number System
Introduction to the Binary Number SystemIntroduction to the Binary Number System
Introduction to the Binary Number SystemJames Hamilton
 
digital logic design number system
digital logic design number systemdigital logic design number system
digital logic design number systemNallapati Anindra
 
Binary computing
Binary computingBinary computing
Binary computingsamina khan
 
01.number systems
01.number systems01.number systems
01.number systemsrasha3
 
Number System in CoMpUtEr
Number System in CoMpUtErNumber System in CoMpUtEr
Number System in CoMpUtErvishal bansal
 
Decimal number system
Decimal number systemDecimal number system
Decimal number systemNisarg Amin
 
Binary addition and subtraction
Binary addition and subtractionBinary addition and subtraction
Binary addition and subtractionbabuece
 
Multiplication algorithm
Multiplication algorithmMultiplication algorithm
Multiplication algorithmGaurav Subham
 
Number system.pdf
Number system.pdfNumber system.pdf
Number system.pdfDeepuGuna
 
Number system in Digital Electronics
Number system in Digital ElectronicsNumber system in Digital Electronics
Number system in Digital ElectronicsJanki Shah
 
Fixed point and floating-point numbers
Fixed point and  floating-point numbersFixed point and  floating-point numbers
Fixed point and floating-point numbersMOHAN MOHAN
 

What's hot (20)

Number System
Number SystemNumber System
Number System
 
Floating point representation
Floating point representationFloating point representation
Floating point representation
 
Introduction number systems and conversion
 Introduction number systems and conversion Introduction number systems and conversion
Introduction number systems and conversion
 
Number system....
Number system....Number system....
Number system....
 
Binary number system
Binary number systemBinary number system
Binary number system
 
Introduction to the Binary Number System
Introduction to the Binary Number SystemIntroduction to the Binary Number System
Introduction to the Binary Number System
 
digital logic design number system
digital logic design number systemdigital logic design number system
digital logic design number system
 
Binary computing
Binary computingBinary computing
Binary computing
 
01.number systems
01.number systems01.number systems
01.number systems
 
Number System
Number SystemNumber System
Number System
 
Number System in CoMpUtEr
Number System in CoMpUtErNumber System in CoMpUtEr
Number System in CoMpUtEr
 
Decimal number system
Decimal number systemDecimal number system
Decimal number system
 
Number system
Number systemNumber system
Number system
 
Binary addition and subtraction
Binary addition and subtractionBinary addition and subtraction
Binary addition and subtraction
 
Multiplication algorithm
Multiplication algorithmMultiplication algorithm
Multiplication algorithm
 
Number system.pdf
Number system.pdfNumber system.pdf
Number system.pdf
 
Number system in Digital Electronics
Number system in Digital ElectronicsNumber system in Digital Electronics
Number system in Digital Electronics
 
Bcd
BcdBcd
Bcd
 
Number systems
Number systemsNumber systems
Number systems
 
Fixed point and floating-point numbers
Fixed point and  floating-point numbersFixed point and  floating-point numbers
Fixed point and floating-point numbers
 

Similar to Chapter iii: Number System

Number system and their conversion
Number system and their conversionNumber system and their conversion
Number system and their conversionRam Pratap Singh
 
numbersystem-211022083557.pdf
numbersystem-211022083557.pdfnumbersystem-211022083557.pdf
numbersystem-211022083557.pdfAsthaChaurasia4
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxMamataAnilgod
 
Number system computer fundamental
 Number  system computer fundamental  Number  system computer fundamental
Number system computer fundamental Aman anand kumar
 
1663694151.pdf
1663694151.pdf1663694151.pdf
1663694151.pdfnostavimle
 
lecture02-numbersystem-191002152647.pdf
lecture02-numbersystem-191002152647.pdflecture02-numbersystem-191002152647.pdf
lecture02-numbersystem-191002152647.pdfAsthaChaurasia4
 
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...Arti Parab Academics
 
Chapter 03-Number System-Computer Application.pptx
Chapter 03-Number System-Computer Application.pptxChapter 03-Number System-Computer Application.pptx
Chapter 03-Number System-Computer Application.pptxgadisaAdamu
 
Chapter two FHI.pptx
Chapter two FHI.pptxChapter two FHI.pptx
Chapter two FHI.pptxODAATUBE1
 
Chapter 2.1 introduction to number system
Chapter 2.1 introduction to number systemChapter 2.1 introduction to number system
Chapter 2.1 introduction to number systemISMT College
 
dtei-180910104911-converted.pptx
dtei-180910104911-converted.pptxdtei-180910104911-converted.pptx
dtei-180910104911-converted.pptxdeepaMS4
 
Data representation
Data representationData representation
Data representationManish Kumar
 

Similar to Chapter iii: Number System (20)

Number system and their conversion
Number system and their conversionNumber system and their conversion
Number system and their conversion
 
numbersystem-211022083557.pdf
numbersystem-211022083557.pdfnumbersystem-211022083557.pdf
numbersystem-211022083557.pdf
 
DCF QNA edited
DCF QNA editedDCF QNA edited
DCF QNA edited
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptx
 
Number system computer fundamental
 Number  system computer fundamental  Number  system computer fundamental
Number system computer fundamental
 
Number system
Number systemNumber system
Number system
 
1663694151.pdf
1663694151.pdf1663694151.pdf
1663694151.pdf
 
Number Systems
Number SystemsNumber Systems
Number Systems
 
lecture02-numbersystem-191002152647.pdf
lecture02-numbersystem-191002152647.pdflecture02-numbersystem-191002152647.pdf
lecture02-numbersystem-191002152647.pdf
 
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
 
Number System.pptx
Number System.pptxNumber System.pptx
Number System.pptx
 
Number System.pptx
Number System.pptxNumber System.pptx
Number System.pptx
 
Ch 4
Ch 4Ch 4
Ch 4
 
Chapter 03-Number System-Computer Application.pptx
Chapter 03-Number System-Computer Application.pptxChapter 03-Number System-Computer Application.pptx
Chapter 03-Number System-Computer Application.pptx
 
Chapter two FHI.pptx
Chapter two FHI.pptxChapter two FHI.pptx
Chapter two FHI.pptx
 
Number Systems - AK.pptx
Number Systems - AK.pptxNumber Systems - AK.pptx
Number Systems - AK.pptx
 
Chapter 2.1 introduction to number system
Chapter 2.1 introduction to number systemChapter 2.1 introduction to number system
Chapter 2.1 introduction to number system
 
dtei-180910104911-converted.pptx
dtei-180910104911-converted.pptxdtei-180910104911-converted.pptx
dtei-180910104911-converted.pptx
 
Number system
Number systemNumber system
Number system
 
Data representation
Data representationData representation
Data representation
 

Recently uploaded

ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomnelietumpap1
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptxSherlyMaeNeri
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxChelloAnnAsuncion2
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxMaryGraceBautista27
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
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
 

Recently uploaded (20)

ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choom
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptx
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptx
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptx
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
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
 

Chapter iii: Number System

  • 1. A set of values used to represent different quantities. Examples: Number of students in a Class or number of viewers watching a certain TV program. It includes audio, graphics, video, text, and numbers. Base or Radix are the total number of digits used in a number system.
  • 2. Some important number systems are as follows:  DECIMAL number system  BINARY number system  OCTAL number system  HEXADECIMAL number system The decimal number system is used in general. However, the computers use binary number , octal, and hexadecimal number systems.
  • 4. DECIMAL NUMBER SYSTEM  It is the most widely used number system.  It consists of ten numbers from 0 to 9.  It’s base is 10. Examples: 1. 145010 2. 24210 3. 1000002410
  • 5. OCTAL NUMBER SYSTEM  It is the shorthand representation of binary numbers.  Any digit in this system is always less than 8.  It consists of eight digits from 0 to 7.  It’s base is 8. Examples: 1. 56568 2. 1248 3. 3788
  • 6. HEXADECIMAL NUMBER SYSTEM  It consists of 16 digits from 0 to 9 and A to F.  The alphabets A to F represent decimal numbers 10 to 15.  It’s base is 16. Examples: 1. 29716 2. BA5916 3. BACA16
  • 7. CONVERSION FOR HEXADECIMAL DECIMAL HEXADECIMAL 1 0001 2 0010 3 0011 4 0100 5 0101 6 0110 7 0111 8 1000 9 1001 10-A 1001 11-B 1011 12-C 1100 13-D 1101 14-E 1110 15-F 1111
  • 8.
  • 9. STEP BINARY NUMBER DECIMAL NUMBER Step 1 111012 ((1x24)+(1x23)+(1x22)+ (0x21)+(1x20)) 10 Step 2 111012 (16+8+4+0+1) 10 Step 3 111012 2910 1.Determine the column (positional) value of each digit (this depends on the position of the digit and the base of the number system.) 2.Multiply the obtained column values (in step 1) by the digits in the corresponding columns. 3.Sum the products calculated in step 2. The total is the equivalent value in decimal.
  • 10. BINARY TO OCTAL STEPS: 1.Divide the binary digits into groups of three (starting left to right). 2.Convert each group of three binary digits to one octal digit. Add a (0) Zero digit to complete the 3 digits group. STEP BINARY NUMBER OCTAL NUMBER Step 1 101012 010 101 Step 2 101012 28 58 Step 3 101012 258
  • 11. BINARY TO HEXADECIMAL STEPS: 1.Divide the binary digits into groups of four (starting from the right). 2.Convert each group of four binary digits to one hexadecimal symbol. Add two(2) Zero(0) digits to complete the four (4) digits group. STEP BINARY NUMBER H10101EXADECIMAL NUMBER Step 1 101012 0001 0101 Step 2 101012 110 510 Step 3 101012 1516
  • 12. DECIMAL TO BINARY STEP OPERATION RESULT REMAINDER Step 1 29/2 14 1 Step 2 14/2 7 0 Step 3 7/2 3 1 Step 4 3/2 1 1 Step 5 1/2 0 1 1.Divide the decimal number to be converted by the value of the new base. 2.Get the remainder from step 1 as the rightmost digit (least significant digit) of new base number. 3.Divide the quotient of the previous divide by the new base. 4.Record the remainder from step 3 as the next digit (to the left) of the new base number.
  • 13. DECIMAL TO OCTAL Steps: 1.Divide decimal number by 8. Treat the division as an integer division. 2.Write down the remainder (in octal). To get the remainder, multiply the result by 8 and subtract it to the decimal number/result. 3.Repeat step 1-3 until the result is zero. 4.The octal value is the digit sequence of the remainders from the last to first. DIVISION RESULT REMAINDER 250/8 31 2 31/8 3 7 3/8 0 3  25010 = 3728
  • 14. DECIMAL TO HEXADECIMAL Steps: 1.Divide decimal number by 16. Treat the division as an integer division. 2.Write down the remainder (in hexadecimal). 3.Repeat step 1-3 until the result is zero. 4.The hex value is the digit sequence of the remainders from the last to first. DIVISION RESULT REMAINDER (in HEX) 256/16 16 0 16/16 1 0 1/16 0 1  25610 =10016
  • 15. OCTAL TO BINARY Steps: 1.Convert each octal digit to a 3 digit binary number (the octal digits may be treated as decimal for this conversion). 2.Combine all the resulting binary groups (of 3 digits each) into a single binary number. STEP OCTAL NUMBER BINARY NUMBER Step 1 258 210 510 Step 2 258 0102 1012 Step 3 258 0101012  258 = 0101012
  • 16. OCTAL TO DECIMAL Steps: 1.Start the decimal result at 0. 2.Remove the most significant octal digit (leftmost) and add it to the result. 3.If all octal digits have been removed, you’re done. Stop. 4.Otherwise, multiply the result by 8. 5.Go to step 2. Octal Digits Operation Decimal Result Operation Decimal Result 345 +3 3 x8 24 45 +4 28 x8 224 5 +5 229 done 3458= (3*82)+(4*81)+(5*80) = (3*64)+(4*8)+(5*1) = 22910
  • 17. HEXADECIMAL TO BINARY Steps: 1.Convert each hexadecimal digit to a 4 digit binary number (the hexadecimal digits may be treated as decimal for this conversion). 2.Combine all the resulting binary groups (of 4 digits each) into a single binary number. STEP HEXADECIMAL NUMBER BINARY NUMBER Step 1 15 12 52 Step 2 15 00012 01012 Step 3 15 000101012  1516 = 000101012
  • 18. HEXADECIMAL TO DECIMAL Steps: 1.Get the last digit of the hex number, call this digit the Current Digit. 2.Make a variable, let’s call it power. Set the value to Zero. 3.Multiply the current digit with (16^power). Store the result. 4.Increment power by one. 5.Set the current digit to the previous digit of the Hex Number. 6.Repeat from step 3 until all digits have been multiplied. 7.Sum the result of step 3 to get the answer Number. MULTIPLICATION RESULT 9x(16^0) 9 8x(16^1) 128 5x(16^2) 1280 Answer 1417  58916 = 141710
  • 19.
  • 20. WORKING COMMITTEE CHERRY MARIE GALAUS ROSEANN FORONDA CRISTINA FABROS CRISTINA FABROS MICAH HADASSAH GUILLERMO DANILO PALTENG JANUEL ANTONIO MICAH HADASSAH GUILLERMO DANILO PALTENG JANUEL ANTONIO BS ACCOUNTANCY 1-2