Binary Values and Number Systems

Slides:



Advertisements
Similar presentations
Numbers Treasure Hunt Following each question, click on the answer. If correct, the next page will load with a graphic first – these can be used to check.
Advertisements

1 A B C
AP STUDY SESSION 2.
1
& dding ubtracting ractions.
Copyright © 2003 Pearson Education, Inc. Slide 1 Computer Systems Organization & Architecture Chapters 8-12 John D. Carpinelli.
Chapter 2 Fractions.
Copyright © 2011, Elsevier Inc. All rights reserved. Chapter 6 Author: Julia Richards and R. Scott Hawley.
Properties Use, share, or modify this drill on mathematic properties. There is too much material for a single class, so you’ll have to select for your.
Objectives: Generate and describe sequences. Vocabulary:
We need a common denominator to add these fractions.
Properties of Real Numbers CommutativeAssociativeDistributive Identity + × Inverse + ×
Custom Statutory Programs Chapter 3. Customary Statutory Programs and Titles 3-2 Objectives Add Local Statutory Programs Create Customer Application For.
CALENDAR.
1 Click here to End Presentation Software: Installation and Updates Internet Download CD release NACIS Updates.
Break Time Remaining 10:00.
Factoring Quadratics — ax² + bx + c Topic
Monika Gope Lecturer IICT, KUET
Turing Machines.
Table 12.1: Cash Flows to a Cash and Carry Trading Strategy.
PP Test Review Sections 6-1 to 6-6
EIS Bridge Tool and Staging Tables September 1, 2009 Instructor: Way Poteat Slide: 1.
LIAL HORNSBY SCHNEIDER
Bellwork Do the following problem on a ½ sheet of paper and turn in.
Exarte Bezoek aan de Mediacampus Bachelor in de grafische en digitale media April 2014.
Solving Quadratic Equations Solving Quadratic Equations
Copyright © 2013, 2009, 2006 Pearson Education, Inc. 1 Section 5.5 Dividing Polynomials Copyright © 2013, 2009, 2006 Pearson Education, Inc. 1.
Copyright © 2012, Elsevier Inc. All rights Reserved. 1 Chapter 7 Modeling Structure with Blocks.
1 RA III - Regional Training Seminar on CLIMAT&CLIMAT TEMP Reporting Buenos Aires, Argentina, 25 – 27 October 2006 Status of observing programmes in RA.
Basel-ICU-Journal Challenge18/20/ Basel-ICU-Journal Challenge8/20/2014.
Chapter 1: Expressions, Equations, & Inequalities
1..
Adding Up In Chunks.
MaK_Full ahead loaded 1 Alarm Page Directory (F11)
1 10 pt 15 pt 20 pt 25 pt 5 pt 10 pt 15 pt 20 pt 25 pt 5 pt 10 pt 15 pt 20 pt 25 pt 5 pt 10 pt 15 pt 20 pt 25 pt 5 pt 10 pt 15 pt 20 pt 25 pt 5 pt Synthetic.
Model and Relationships 6 M 1 M M M M M M M M M M M M M M M M
Subtraction: Adding UP
: 3 00.
1 hi at no doifpi me be go we of at be do go hi if me no of pi we Inorder Traversal Inorder traversal. n Visit the left subtree. n Visit the node. n Visit.
Essential Cell Biology
Converting a Fraction to %
Clock will move after 1 minute
PSSA Preparation.
Essential Cell Biology
Immunobiology: The Immune System in Health & Disease Sixth Edition
Physics for Scientists & Engineers, 3rd Edition
Energy Generation in Mitochondria and Chlorplasts
Select a time to count down from the clock above
1.step PMIT start + initial project data input Concept Concept.
Chapter 2 Binary Values and Number Systems Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in.
Chapter Chapter Goals Know the different types of numbers Describe positional notation.
Chapter 02 Binary Values and Number Systems Nell Dale & John Lewis.
CS105 INTRODUCTION TO COMPUTER CONCEPTS BINARY VALUES & NUMBER SYSTEMS Instructor: Cuong (Charlie) Pham.
How Computers Work Dr. John P. Abraham Professor UTPA.
Chapter 2 Binary Values and Number Systems Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in.
Chapter 2 Binary Values and Number Systems. 2 2 Natural Numbers Zero and any number obtained by repeatedly adding one to it. Examples: 100, 0, 45645,
Chapter 2 Binary Values and Number Systems Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in.
Binary Values and Number Systems Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in other bases.
Binary Values and Number Systems
Positional Notation 642 in base 10 positional notation is:
Chapter 2 Number Systems: Decimal, Binary, and Hex.
Chapter 2 Binary Values and Number Systems Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in.
Binary Values. Numbers Natural Numbers Zero and any number obtained by repeatedly adding one to it. Examples: 100, 0, 45645, 32 Negative Numbers.
Binary Values and Number Systems
Chapter 02 Nell Dale & John Lewis.
Binary Values and Number Systems
Binary Values and Number Systems
Binary Values and Number Systems
Presentation transcript:

Binary Values and Number Systems Chapter 2 Binary Values and Number Systems

Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in other bases to base 10 Convert base-10 numbers to numbers in other bases Describe the relationship between bases 2, 8, and 16 Explain the importance to computing of bases that are powers of 2 24 6

Numbers Natural Numbers Negative Numbers Zero and any number obtained by repeatedly adding one to it. 0, 1, 2 , 3, 4 Examples: 100, 0, 45645, 32 Negative Numbers A value less than 0, with a – sign Examples: -24, -1, -45645, -32 2

Numbers Integers Rational Numbers A natural number, a negative number, zero Examples: 249, 0, - 45645, - 32 Rational Numbers An integer or the quotient of two integers Examples: -249, -1, 0, 3/7, -2/5 3

Natural Numbers How many ones are there in 642? 600 + 40 + 2 ? Or is it 384 + 32 + 2 ? Or maybe… 1536 + 64 + 2 ? 4

Natural Numbers Aha! 642 is 600 + 40 + 2 in BASE 10 The base of a number determines the number of digits and the value of digit positions When we count by 10s we are using the Base 10 numbering system – that is the Decimal system 5

Different Counting Systems BASE – Specifies the number of digits used in the system Always begins with 0 When you add 1 more, then, you go to the next position 9 + 1 = 10 Base 2: Two digits, 0 and 1 Base 8: 8 digits; 0, 1, 2, 3, 4, 5, 6, 7 Base 10: 10 digits 0 - 9 Base 16: 16 digits 0 – 9, A-F

Counting Systems in Binary/Octal/Decimal These are not equivalent. They are just showing the counting upwards by 1 unit

Positional Notation 642 in base 10 positional notation is: Continuing with our example… 642 in base 10 positional notation is: 6 x 102 = 6 x 100 = 600 + 4 x 101 = 4 x 10 = 40 + 2 x 10º = 2 x 1 = 2 = 642 in base 10 0 is the first position The power indicates the position of the number This number is in base 10 6

Positional Notation dn * Rn-1 + dn-1 * Rn-2 + ... + d2 * R + d1 R is the base of the number As a formula:  dn * Rn-1 + dn-1 * Rn-2 + ... + d2 * R + d1 n is the number of digits in the number d is the digit in the ith position in the number 101 = 1 100 = 0 642 is  (63 * 102) +  (42 * 101) +  (21 * 100) 7

Positional Notation What if 642 has the base of 13? Convert backwards 642 in base 13 is equivalent to 1068 in base 10 They represent the same number of items or units. Numbers represent the items in various ways. + 6 x 132 = 6 x 169 = 1014 + 4 x 131 = 4 x 13 = 52 + 2 x 13º = 2 x 1 = 2 = 1068 in base 10 8 6

Binary Decimal is base 10 and has 10 digits: 0,1,2,3,4,5,6,7,8,9 Binary is base 2 and has 2 digits: 0,1 For a number to exist in a given base, it can only contain the digits in that base, which range from 0 up to (but not including) the base. 9

Bases Higher than 10 How are digits in bases higher than 10 represented? With distinct symbols for 10 and above. Base 16 has 16 digits - HEXADECIMAL: 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E, and F So you get numbers like 00FF22 Often used to represent colors in web programs Red – Green – Blue – 000, 000000 to FFFFFF 10

Bases What bases can these numbers be in? 122 198 178 G1A4 Always start at 0, end at base – 1 So, 0-9 means base 10 (10-1=9) Identify the number of possible units in the first position, to give you the base number!

OCTAL SYSTEM – Base 8

Octal Octal is base 8 Numeric representation can be from 0-7 Then, go to the next position

Converting Octal to Decimal What is the decimal equivalent of the octal number 642? Remember this is Base 8! 6 x 82 = 6 x 64 = 384 + 4 x 81 = 4 x 8 = 32 + 2 x 8º = 2 x 1 = 2 1st position = 418 in base 10 11

Converting Decimal to Other Bases Algorithm for converting number in base 10 to other bases While (the quotient is not zero – so there is a remainder) Divide the decimal number by the new base Make the remainder the next digit to the left in the answer Replace the original decimal number with the quotient 19

Converting Decimal to Octal What is 1988 (base 10) in base 8? 248 31 3 0 8 1988 8 248 8 31 8 3 16 24 24 0 38 08 7 3 32 8 68 0 64 4 Answer is : 3 7 0 4 Backwards 80

Converting Decimal to Octal Try some! http://fclass.vaniercollege.qc.ca/ web/mathematics/real/Calculators/ BaseConv_calc_1.htm Still a challenge? Try a calculator!

Check it out You can use the calculator to convert

Using Calculator for Converting Put the number in Dec first

Using Calculator for Converting Click the new format, Oct

Apple Programmer Mode You can see the conversion for binary live Press 10 Enter 1988 You can see the conversion for binary live

BINARY SYSTEM – Base 2

Binary Numbers and Computers Computers have storage units called binary digits or bits Low Voltage = 0 High Voltage = 1 all bits have 0 or 1 22

Binary and Computers Byte 8 bits are in 1 byte The number of bits in a word determines the word length of the computer, but it is usually a multiple of 8. WHY? Store & process information better/faster. 32-bit machines 64-bit machines etc. 23

Binary Values are 0 or 1 When you get both, then go to the next position

Converting Binary to Decimal What is the decimal equivalent of the binary number 11111111? (8 digits) 1 x 27 = 1 x 128= 128 + 1 x 26 = 1 x 64 = 64 + 1 x 25 = 1 x 32 = 32 + 1 x 24 = 1 x 16 = 16 + 1 x 23 = 1 x 8 = 8 + 1 x 22 = 1 x 4 = 4 + 1 x 21 = 1 x 2 = 2 + 1 x 2º = 1 x 1 = 1 = 256 in base 10 13

Converting Binary to Decimal What is the decimal equivalent of the binary number 01101110? (I added the 0 in the first digit as a placeholder) 0 x 27 = 0 x 64 = 0 1 x 26 = 1 x 64 = 64 + 1 x 25 = 1 x 32 = 32 + 0 x 24 = 0 x 16 = 0 + 1 x 23 = 1 x 8 = 8 + 1 x 22 = 1 x 4 = 4 + 1 x 21 = 1 x 2 = 2 + 0 x 2º = 0 x 1 = 0 = 110 in base 10 13

Arithmetic in Binary Remember that there are only 2 digits in binary, 0 and 1 – There are ONLY 3 options 0 + 0 = 0 1 + 0 = 0 1 + 1 = 0 with a carry (there is no 2) Carry Values 1 1 1 1 1 1 1 0 1 0 1 1 1 +1 0 0 1 0 1 1 1 0 1 0 0 0 1 0 14

Subtracting Binary Numbers Remember borrowing? Apply that concept here. 1 2 2 0 2 1 0 1 0 1 1 1 - 1 1 1 0 1 1 0 0 1 1 1 0 0 0-0=0 1-0=1 1-1=0 0-1= borrow 2 15

Converting Binary to Decimal What is the decimal equivalent of the binary number 11111111? 1 x 27 = 1 x 128= 128 + 1 x 26 = 1 x 64 = 64 + 1 x 25 = 1 x 32 = 32 + 1 x 24 = 1 x 16 = 16 + 1 x 23 = 1 x 8 = 8 + 1 x 22 = 1 x 4 = 4 + 1 x 21 = 1 x 2 = 2 + 1 x 2º = 1 x 1 = 1 = 256 in base 10 13

Subtracting Binary Numbers

Special Binary Numbers Often you will see numbers expressed in 8 digits for many computer and network applications – 11110000, 10101010 The lowest is 00000000 The highest would be 11111111 What are the decimal equivalents? 00000000 = 0 11111111 = 255 = 128 + 64 + 32 + 16 + 8 + 4 + 2 + 1 = 27 + 26 + 25 + 24 + 23 + 22 + 21 + 20

Converting Binary to Octal Mark groups of 3 (from right) 10101011 = 010-101-011 Convert each group to base 9 10101011 10 101 011 2 5 3 10101011 is 253 in base 8 + 1 x 22 = 1 x 4 = 4 + 0 x 21 = 0 x 2 = 0 + 1 x 2º = 1 x 1 = 1 17

Converting Binary to Decimal What is the decimal equivalent of the binary number 1101110? 1 x 26 = 1 x 64 = 64 + 1 x 25 = 1 x 32 = 32 + 0 x 24 = 0 x 16 = 0 + 1 x 23 = 1 x 8 = 8 + 1 x 22 = 1 x 4 = 4 + 1 x 21 = 1 x 2 = 2 + 0 x 2º = 0 x 1 = 0 = 110 in base 10 13

HEXADECIMAL SYSTEM

Converting Hexadecimal to Decimal What is the decimal equivalent of the hexadecimal number DEF? D x 162 = 13 x 256 = 3328 + E x 161 = 14 x 16 = 224 + F x 16º = 15 x 1 = 15 = 3567 in base 10 Remember, the digits in base 16 are 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F A=10, B=11, C=12, D=13, E=14, F=15

Converting Decimal to Hexadecimal What is 3567 (base 10) in base 16? 222 13 0 16 3567 16 222 16 13 32 16 0 36 62 13 32 48 47 14 32 15 Backwards D E F 21

Converting Binary to Hexadecimal Mark groups of 4 (from right) 10101011 = 1010-1011 Convert each group 10101011 1010 1011 A B 10101011 is AB in base 16 18

Converting Binary to Hexadecimal Convert to decimal first, then to hexadec 1010 = 8 + 0 + 2 + 0 = 10 = A 1011 = 8 + 0 + 2 + 1 = 11 = B 1010 1011 A B 10101011 is AB in base 16 18

CONVERTING SYSTEMS

On the exam, you will have to manually convert between: Review On the exam, you will have to manually convert between: Decimal Binary Octal Hexadecimal

Ethical Issues – Tenth Strand What is Iron Man CC2013? What is a Knowledge Unit? What is Curricula 2001? Who put together the standards? Why are these standards important?