chapter 2 binary values and number systems. 2 624 chapter goals distinguish among categories of...

46
Chapter 2 Binary Values and Number Systems

Upload: agustin-simm

Post on 31-Mar-2015

229 views

Category:

Documents


3 download

TRANSCRIPT

Page 1: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Chapter 2

Binary Values and Number Systems

Page 2: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

2 624

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

Page 3: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

3 2

Natural NumbersZero and any number obtained by repeatedly adding one to it. 0, 1, 2 , 3, 4

Examples: 100, 0, 45645, 32

Negative NumbersA value less than 0, with a – sign

Examples: -24, -1, -45645, -32

Numbers

Page 4: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

4 3

IntegersA natural number, a negative number, zero

Examples: 249, 0, - 45645, - 32

Rational NumbersAn integer or the quotient of two integers

Examples: -249, -1, 0, 3/7, -2/5

Numbers

Page 5: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

5 4

How many ones are there in 642?

600 + 40 + 2 ?

Or is it

384 + 32 + 2 ?

Or maybe…

1536 + 64 + 2 ?

Natural Numbers

Page 6: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Natural Numbers

65

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

Page 7: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

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

7

Page 8: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Counting Systems in Binary/Octal/Decimal

• These are not equivalent.

• They are just showing the counting upwards by 1 unit

8

Page 9: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Positional Notation

9

6

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

This number is in base 10

The power indicates the position of

the number

0 is the first position

Page 10: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Positional Notation

107

 dn * Rn-1 + dn-1 * R

n-2 + ... + d2 * R + d1

As a formula:

642 is  (63 * 102) +  (42 * 101) +  (21 * 100)

R is the base of the number

n is the number of digits in the number

d is the digit in the ith position

in the number101 = 1100 = 0

Page 11: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Positional Notation

1168

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

Page 12: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

12 9

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.

Binary

Page 13: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Bases Higher than 10

1310

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 programsRed – Green – Blue – 000, 000000 to FFFFFF

Page 14: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

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!14

Page 15: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

OCTAL SYSTEM – Base 8

15

Page 16: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Octal

• Octal is base 8

• Numeric representation can be from 0-7

• Then, go to the next position

16

Page 17: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

17

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 Octal to Decimal

Page 18: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Converting Decimal to Other Bases

18

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

Algorithm for converting number in base 10 to other bases

19

Page 19: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Converting Decimal to Octal

19

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

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

What is 1988 (base 10) in base 8?

Backwards80

Page 20: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Converting Decimal to Octal

20

Try some!

http://fclass.vaniercollege.qc.ca/web/mathematics/real/Calculators/BaseConv_calc_1.htm

Still a challenge? Try a calculator!

Page 21: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Check it out

• You can use the calculator to convert

21

Page 22: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Using Calculator for Converting

• Put the number in Dec first

22

Page 23: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Using Calculator for Converting

• Click the new format, Oct

23

Page 24: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Apple

• Programmer Mode– Press 10– Enter 1988– Press 10

• You can see the conversion for binary live

24

Page 25: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

BINARY SYSTEM – Base 2

25

Page 26: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

26

Computers have storage units called binary digits or bits

Low Voltage = 0High Voltage = 1 all bits have 0 or 1

22

Binary Numbers and Computers

Page 27: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Binary and Computers

27

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

Page 28: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

28

Page 29: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Binary

• Values are 0 or 1

• When you get both, then go to the next position

29

Page 30: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Converting Binary to Decimal

30

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

Page 31: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Converting Binary to Decimal

31

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

Page 32: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Arithmetic in Binary

32

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)

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

Carry Values

Page 33: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Subtracting Binary Numbers

3315

0-0=01-0=11-1=00-1= borrow 2

Page 34: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Converting Binary to Decimal

34

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

Page 35: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Subtracting Binary Numbers

35

Page 36: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

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

36

Page 37: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Converting Binary to Octal

37

• Mark groups of 3 (from right)• 10101011 = 010-101-011• Convert each group to base 9

10101011 10 101 011 2 5 3

17

+ 1 x 22 = 1 x 4 = 4+ 0 x 21 = 0 x 2 = 0

+ 1 x 2º = 1 x 1 = 1

10101011 is 253 in base 8

Page 38: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

38

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

Converting Binary to Decimal

Page 39: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

HEXADECIMAL SYSTEM

39

Page 40: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Converting Hexadecimal to Decimal

40

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

Page 41: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Converting Decimal to Hexadecimal

41

222 13 0 16 3567 16 222 16 13

32 16 0 36 62 13 32 48 47 14 32 15

D E F

21

What is 3567 (base 10) in base 16?

Backwards

Page 42: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Converting Binary to Hexadecimal

42

• Mark groups of 4 (from right)• 10101011 = 1010-1011• Convert each group

10101011 1010 1011 A B

10101011 is AB in base 16

18

Page 43: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Converting Binary to Hexadecimal

43

Convert to decimal first, then to hexadec1010 = 8 + 0 + 2 + 0 = 10 = A1011 = 8 + 0 + 2 + 1 = 11 = B

1010 1011 A B

10101011 is AB in base 16

18

Page 44: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

CONVERTING SYSTEMS

44

Page 45: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

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

45

Review

Page 46: Chapter 2 Binary Values and Number Systems. 2 624 Chapter Goals Distinguish among categories of numbers Describe positional notation Convert numbers in

Ethical Issues – Tenth Strand

46

What is Iron Man CC2013?

What is a Knowledge Unit?

What is Curricula 2001?

Who put together the standards?

Why are these standards important?